diff --git a/.gitignore b/.gitignore index 01a5e93..ad15b4f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ node_modules build *.log +package-lock.json diff --git a/package.json b/package.json index 96affa8..9023b85 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "nan": "^2.4.0" }, "devDependencies": { - "tree-sitter-cli": "^0.10.1" + "tree-sitter-cli": "^0.11.0" }, "scripts": { "build": "tree-sitter generate && node-gyp build", diff --git a/src/parser.c b/src/parser.c index b168df1..f08645b 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,8 +5,8 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 6 -#define STATE_COUNT 4639 +#define LANGUAGE_VERSION 8 +#define STATE_COUNT 2928 #define SYMBOL_COUNT 136 #define ALIAS_COUNT 5 #define TOKEN_COUNT 86 @@ -955,40 +955,84 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(3); if (lookahead == '$') ADVANCE(4); - if (lookahead == '*') + if (lookahead == '%') ADVANCE(7); - if (lookahead == '-') + if (lookahead == '&') ADVANCE(8); - if (lookahead == '0') - ADVANCE(9); - if (lookahead == '?') - ADVANCE(11); - if (lookahead == '@') + if (lookahead == '\'') ADVANCE(12); - if (lookahead == '[') - ADVANCE(13); - if (lookahead == '\\') + if (lookahead == '(') + ADVANCE(14); + if (lookahead == ')') + ADVANCE(15); + if (lookahead == '*') ADVANCE(16); - if (lookahead == ']') - ADVANCE(13); - if (lookahead == '_') - ADVANCE(18); - if (lookahead == '`') + if (lookahead == '+') + ADVANCE(17); + if (lookahead == '-') ADVANCE(19); + if (lookahead == '/') + ADVANCE(20); + if (lookahead == '0') + ADVANCE(21); + if (lookahead == ':') + ADVANCE(23); + if (lookahead == ';') + ADVANCE(26); + if (lookahead == '<') + ADVANCE(28); + if (lookahead == '=') + ADVANCE(34); + if (lookahead == '>') + ADVANCE(37); + if (lookahead == '?') + ADVANCE(41); + if (lookahead == '@') + ADVANCE(42); + if (lookahead == '[') + ADVANCE(43); + if (lookahead == '\\') + SKIP(45); + if (lookahead == ']') + ADVANCE(46); + if (lookahead == '_') + ADVANCE(48); + if (lookahead == '`') + ADVANCE(49); + if (lookahead == 'c') + ADVANCE(50); + if (lookahead == 'd') + ADVANCE(54); + if (lookahead == 'e') + ADVANCE(64); + if (lookahead == 'f') + ADVANCE(78); + if (lookahead == 'i') + ADVANCE(89); + if (lookahead == 'l') + ADVANCE(92); + if (lookahead == 'r') + ADVANCE(97); + if (lookahead == 't') + ADVANCE(105); + if (lookahead == 'u') + ADVANCE(115); + if (lookahead == 'w') + ADVANCE(123); if (lookahead == '{') - ADVANCE(13); + ADVANCE(128); + if (lookahead == '|') + ADVANCE(129); if (lookahead == '}') - ADVANCE(13); + ADVANCE(132); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(17); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + SKIP(0); + if (('1' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(10); - ADVANCE(15); + ADVANCE(22); END_STATE(); case 1: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -1013,229 +1057,93 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); case 7: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 8: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') + ADVANCE(9); + if (lookahead == '>') + ADVANCE(10); END_STATE(); case 9: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 10: + ACCEPT_TOKEN(anon_sym_AMP_GT); + if (lookahead == '>') + ADVANCE(11); + END_STATE(); + case 11: + ACCEPT_TOKEN(anon_sym_AMP_GT_GT); + END_STATE(); + case 12: + if (lookahead == '\'') + ADVANCE(13); + if (lookahead != 0) + ADVANCE(12); + END_STATE(); + case 13: + ACCEPT_TOKEN(sym_raw_string); + END_STATE(); + case 14: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 15: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 16: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 17: + if (lookahead == '=') + ADVANCE(18); + END_STATE(); + case 18: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 19: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 20: + ACCEPT_TOKEN(aux_sym_SLASH); + END_STATE(); + case 21: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(10); + ADVANCE(22); END_STATE(); - case 10: + case 22: ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(10); - END_STATE(); - case 11: - ACCEPT_TOKEN(anon_sym_QMARK); - END_STATE(); - case 12: - ACCEPT_TOKEN(anon_sym_AT); - END_STATE(); - case 13: - ACCEPT_TOKEN(sym__special_characters); - if (lookahead == '[') - ADVANCE(13); - if (lookahead == '\\') - ADVANCE(14); - if (lookahead == ']') - ADVANCE(13); - if (lookahead == '{') - ADVANCE(13); - if (lookahead == '}') - ADVANCE(13); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '$' && - lookahead != '`') - ADVANCE(15); - END_STATE(); - case 14: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') - ADVANCE(15); - if (lookahead == '\\') - ADVANCE(14); - if (lookahead == '\"' || - lookahead == '$' || - lookahead == '`') - ADVANCE(15); - if (lookahead != 0) - ADVANCE(15); - END_STATE(); - case 15: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\\') - ADVANCE(14); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '$' && - lookahead != '`') - ADVANCE(15); - END_STATE(); - case 16: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') - ADVANCE(17); - if (lookahead == '\\') - ADVANCE(14); - if (lookahead == '\"' || - lookahead == '$' || - lookahead == '`') - ADVANCE(15); - if (lookahead != 0) - ADVANCE(15); - END_STATE(); - case 17: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '#') - ADVANCE(3); - if (lookahead == '*') - ADVANCE(7); - if (lookahead == '-') - ADVANCE(8); - if (lookahead == '0') - ADVANCE(9); - if (lookahead == '?') - ADVANCE(11); - if (lookahead == '@') - ADVANCE(12); - if (lookahead == '[') - ADVANCE(13); - if (lookahead == '\\') - ADVANCE(16); - if (lookahead == ']') - ADVANCE(13); - if (lookahead == '_') - ADVANCE(18); - if (lookahead == '{') - ADVANCE(13); - if (lookahead == '}') - ADVANCE(13); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(17); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(10); - if (lookahead != 0 && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '_' || lookahead > '{')) - ADVANCE(15); - END_STATE(); - case 18: - ACCEPT_TOKEN(anon_sym__); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(10); - END_STATE(); - case 19: - ACCEPT_TOKEN(anon_sym_BQUOTE); - END_STATE(); - case 20: - if (lookahead == 0) - ADVANCE(1); - if (lookahead == '\"') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '$') - ADVANCE(4); - if (lookahead == '&') ADVANCE(22); - if (lookahead == '\'') - ADVANCE(25); - if (lookahead == '(') - ADVANCE(27); - if (lookahead == '<') - ADVANCE(28); - if (lookahead == '>') - ADVANCE(31); - if (lookahead == '[') - ADVANCE(35); - if (lookahead == '\\') - ADVANCE(37); - if (lookahead == ']') - ADVANCE(40); - if (lookahead == '`') - ADVANCE(19); - if (lookahead == 'c') - ADVANCE(41); - if (lookahead == 'd') - ADVANCE(45); - if (lookahead == 'e') - ADVANCE(52); - if (lookahead == 'f') - ADVANCE(58); - if (lookahead == 'i') - ADVANCE(68); - if (lookahead == 'l') - ADVANCE(70); - if (lookahead == 'r') - ADVANCE(75); - if (lookahead == 't') - ADVANCE(83); - if (lookahead == 'u') - ADVANCE(90); - if (lookahead == 'w') - ADVANCE(98); - if (lookahead == '{') - ADVANCE(40); - if (lookahead == '}') - ADVANCE(40); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(20); - if ((lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); - END_STATE(); - case 21: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') - ADVANCE(21); - END_STATE(); - case 22: - if (lookahead == '>') - ADVANCE(23); END_STATE(); case 23: - ACCEPT_TOKEN(anon_sym_AMP_GT); - if (lookahead == '>') + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '-') ADVANCE(24); - END_STATE(); - case 24: - ACCEPT_TOKEN(anon_sym_AMP_GT_GT); - END_STATE(); - case 25: - if (lookahead == '\'') - ADVANCE(26); - if (lookahead != 0) + if (lookahead == '?') ADVANCE(25); END_STATE(); + case 24: + ACCEPT_TOKEN(anon_sym_COLON_DASH); + END_STATE(); + case 25: + ACCEPT_TOKEN(anon_sym_COLON_QMARK); + END_STATE(); case 26: - ACCEPT_TOKEN(sym_raw_string); + ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == ';') + ADVANCE(27); END_STATE(); case 27: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_SEMI_SEMI); END_STATE(); case 28: ACCEPT_TOKEN(anon_sym_LT); @@ -1243,6 +1151,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(29); if (lookahead == '(') ADVANCE(30); + if (lookahead == '<') + ADVANCE(31); END_STATE(); case 29: ACCEPT_TOKEN(anon_sym_LT_AMP); @@ -1251,1693 +1161,2544 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_LT_LPAREN); END_STATE(); case 31: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '-') ADVANCE(32); - if (lookahead == '(') + if (lookahead == '<') ADVANCE(33); - if (lookahead == '>') - ADVANCE(34); END_STATE(); case 32: - ACCEPT_TOKEN(anon_sym_GT_AMP); + ACCEPT_TOKEN(anon_sym_LT_LT_DASH); END_STATE(); case 33: - ACCEPT_TOKEN(anon_sym_GT_LPAREN); + ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); case 34: - ACCEPT_TOKEN(anon_sym_GT_GT); - END_STATE(); - case 35: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') + ADVANCE(35); + if (lookahead == '~') ADVANCE(36); END_STATE(); + case 35: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); case 36: - ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); case 37: - if (lookahead == '\n') - SKIP(20); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') ADVANCE(38); + if (lookahead == '(') + ADVANCE(39); + if (lookahead == '>') + ADVANCE(40); END_STATE(); case 38: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(anon_sym_GT_AMP); END_STATE(); case 39: - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(38); + ACCEPT_TOKEN(anon_sym_GT_LPAREN); END_STATE(); case 40: - ACCEPT_TOKEN(sym__special_characters); - if (lookahead == '[') - ADVANCE(40); - if (lookahead == ']') - ADVANCE(40); - if (lookahead == '{') - ADVANCE(40); - if (lookahead == '}') - ADVANCE(40); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 41: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'a') - ADVANCE(42); - 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(38); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 42: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 's') - ADVANCE(43); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 43: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'e') + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(44); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); END_STATE(); case 44: - ACCEPT_TOKEN(anon_sym_case); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); case 45: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'e') - ADVANCE(46); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (lookahead == '\n') + SKIP(0); END_STATE(); case 46: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'c') + ACCEPT_TOKEN(anon_sym_RBRACK); + if (lookahead == ']') ADVANCE(47); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); END_STATE(); case 47: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'l') - ADVANCE(48); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); case 48: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'a') - ADVANCE(49); - 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(38); + ACCEPT_TOKEN(anon_sym__); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 49: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'r') - ADVANCE(50); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); case 50: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'e') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'a') ADVANCE(51); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 51: - ACCEPT_TOKEN(anon_sym_declare); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 's') + ADVANCE(52); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 52: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'x') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'e') 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(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 53: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'p') - ADVANCE(54); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(anon_sym_case); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 54: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'o') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'e') 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(38); + if (lookahead == 'o') + ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 55: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'r') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'c') ADVANCE(56); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 56: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 't') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'l') 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(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 57: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'a') + ADVANCE(58); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 58: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'o') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'r') ADVANCE(59); - if (lookahead == 'u') - ADVANCE(61); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 59: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'r') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'e') ADVANCE(60); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_for); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(anon_sym_declare); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 61: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); + ACCEPT_TOKEN(anon_sym_do); if (lookahead == 'n') ADVANCE(62); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 62: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'c') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'e') ADVANCE(63); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 63: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 't') - ADVANCE(64); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(anon_sym_done); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 64: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'i') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'l') ADVANCE(65); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (lookahead == 's') + ADVANCE(70); + if (lookahead == 'x') + ADVANCE(73); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 65: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'o') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'i') ADVANCE(66); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (lookahead == 's') + ADVANCE(68); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 66: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'n') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'f') ADVANCE(67); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 67: - ACCEPT_TOKEN(anon_sym_function); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(anon_sym_elif); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 68: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'f') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'e') ADVANCE(69); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_if); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(anon_sym_else); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 70: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'o') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'a') ADVANCE(71); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 71: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (lookahead == 'c') ADVANCE(72); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 72: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'a') - ADVANCE(73); - 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(38); + ACCEPT_TOKEN(anon_sym_esac); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 73: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'l') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'p') ADVANCE(74); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 74: - ACCEPT_TOKEN(anon_sym_local); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'o') + ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 75: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'e') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'r') ADVANCE(76); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 76: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'a') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 't') ADVANCE(77); - 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(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 77: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'd') - ADVANCE(78); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(anon_sym_export); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 78: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'o') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'i') ADVANCE(79); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (lookahead == 'o') + ADVANCE(80); + if (lookahead == 'u') + ADVANCE(82); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 79: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'n') - ADVANCE(80); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(anon_sym_fi); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 80: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'l') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'r') ADVANCE(81); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 81: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'y') - ADVANCE(82); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(anon_sym_for); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_readonly); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'n') + ADVANCE(83); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 83: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'y') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'c') ADVANCE(84); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 84: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'p') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 't') ADVANCE(85); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 85: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'e') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'i') ADVANCE(86); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 86: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 's') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'o') ADVANCE(87); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 87: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'e') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'n') ADVANCE(88); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 88: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 't') - ADVANCE(89); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(anon_sym_function); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_typeset); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); - END_STATE(); - case 90: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'f') + ADVANCE(90); if (lookahead == 'n') ADVANCE(91); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); + END_STATE(); + case 90: + ACCEPT_TOKEN(anon_sym_if); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 91: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 's') - ADVANCE(92); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(anon_sym_in); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 92: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'e') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'o') ADVANCE(93); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 93: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 't') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'c') ADVANCE(94); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_unset); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'e') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'a') ADVANCE(95); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 95: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'n') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'l') ADVANCE(96); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 96: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'v') - ADVANCE(97); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(anon_sym_local); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_unsetenv); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'e') + ADVANCE(98); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 98: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'h') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'a') ADVANCE(99); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 99: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'i') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'd') ADVANCE(100); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 100: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'l') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'o') ADVANCE(101); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 101: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'e') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'n') ADVANCE(102); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_while); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'l') + ADVANCE(103); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 103: - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '&') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'y') ADVANCE(104); - if (lookahead == '(') - ADVANCE(27); - if (lookahead == ')') - ADVANCE(106); - if (lookahead == '+') - ADVANCE(107); - if (lookahead == '=') - ADVANCE(109); - if (lookahead == '[') - ADVANCE(110); - if (lookahead == '\\') - SKIP(111); - if (lookahead == ']') - ADVANCE(112); - if (lookahead == '`') - ADVANCE(19); - if (lookahead == 'd') - ADVANCE(113); - if (lookahead == 'e') - ADVANCE(115); - if (lookahead == 'f') - ADVANCE(124); - if (lookahead == 'i') - ADVANCE(126); - if (lookahead == 't') - ADVANCE(128); - if (lookahead == '{') - ADVANCE(132); - if (lookahead == '|') - ADVANCE(133); - if (lookahead == '}') - ADVANCE(136); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(103); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 104: - if (lookahead == '&') - ADVANCE(105); + ACCEPT_TOKEN(anon_sym_readonly); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'h') + ADVANCE(106); + if (lookahead == 'y') + ADVANCE(109); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'e') + ADVANCE(107); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 107: - if (lookahead == '=') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'n') ADVANCE(108); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_then); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'p') + ADVANCE(110); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'e') + ADVANCE(111); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 111: - if (lookahead == '\n') - SKIP(103); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 's') + ADVANCE(112); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'e') + ADVANCE(113); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 113: - if (lookahead == 'o') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 't') ADVANCE(114); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_do); + ACCEPT_TOKEN(anon_sym_typeset); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 115: - if (lookahead == 'l') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'n') ADVANCE(116); - if (lookahead == 's') - ADVANCE(121); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 116: - if (lookahead == 'i') - ADVANCE(117); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (lookahead == 's') - ADVANCE(119); + ADVANCE(117); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 117: - if (lookahead == 'f') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'e') ADVANCE(118); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_elif); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 't') + ADVANCE(119); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 119: + ACCEPT_TOKEN(anon_sym_unset); if (lookahead == 'e') ADVANCE(120); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'n') + ADVANCE(121); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 121: - if (lookahead == 'a') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'v') ADVANCE(122); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 122: - if (lookahead == 'c') - ADVANCE(123); + ACCEPT_TOKEN(anon_sym_unsetenv); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_esac); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'h') + ADVANCE(124); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 124: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (lookahead == 'i') ADVANCE(125); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_fi); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'l') + ADVANCE(126); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 126: - if (lookahead == 'n') + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == 'e') ADVANCE(127); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_while); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); END_STATE(); case 128: - if (lookahead == 'h') - ADVANCE(129); - END_STATE(); - case 129: - if (lookahead == 'e') - ADVANCE(130); - END_STATE(); - case 130: - if (lookahead == 'n') - ADVANCE(131); - END_STATE(); - case 131: - ACCEPT_TOKEN(anon_sym_then); - END_STATE(); - case 132: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 133: + case 129: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == '&') - ADVANCE(134); + ADVANCE(130); if (lookahead == '|') - ADVANCE(135); + ADVANCE(131); END_STATE(); - case 134: + case 130: ACCEPT_TOKEN(anon_sym_PIPE_AMP); END_STATE(); - case 135: + case 131: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 136: + case 132: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 137: - if (lookahead == '#') - ADVANCE(21); - if (lookahead == ')') - ADVANCE(106); - if (lookahead == '\\') - SKIP(138); - if (lookahead == '|') - ADVANCE(139); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(137); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(140); - END_STATE(); - case 138: - if (lookahead == '\n') - SKIP(137); - END_STATE(); - case 139: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 140: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(140); - END_STATE(); - case 141: + case 133: + if (lookahead == 0) + ADVANCE(1); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(22); + ADVANCE(135); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); + if (lookahead == '(') + ADVANCE(14); if (lookahead == '<') - ADVANCE(28); + ADVANCE(136); if (lookahead == '>') - ADVANCE(31); + ADVANCE(37); if (lookahead == '[') - ADVANCE(40); + ADVANCE(43); if (lookahead == '\\') - ADVANCE(142); + ADVANCE(137); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); + if (lookahead == 'c') + ADVANCE(141); + if (lookahead == 'd') + ADVANCE(145); + if (lookahead == 'e') + ADVANCE(152); + if (lookahead == 'f') + ADVANCE(158); + if (lookahead == 'i') + ADVANCE(168); + if (lookahead == 'l') + ADVANCE(170); + if (lookahead == 'r') + ADVANCE(175); + if (lookahead == 't') + ADVANCE(183); + if (lookahead == 'u') + ADVANCE(190); + if (lookahead == 'w') + ADVANCE(198); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(141); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && + SKIP(133); + if ((lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 142: - if (lookahead == '\n') - SKIP(141); + case 134: + ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(38); + lookahead != '\n') + ADVANCE(134); END_STATE(); - case 143: - if (lookahead == '\"') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '$') - ADVANCE(4); - if (lookahead == '&') - ADVANCE(144); - if (lookahead == '\'') - ADVANCE(25); - if (lookahead == ')') - ADVANCE(106); - if (lookahead == '<') - ADVANCE(145); - if (lookahead == '=') - ADVANCE(149); + case 135: if (lookahead == '>') - ADVANCE(31); - if (lookahead == '[') - ADVANCE(40); - if (lookahead == '\\') - ADVANCE(152); - if (lookahead == ']') - ADVANCE(40); - if (lookahead == '`') - ADVANCE(19); - if (lookahead == '{') - ADVANCE(40); - if (lookahead == '|') - ADVANCE(133); - if (lookahead == '}') - ADVANCE(40); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(143); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - (lookahead < ';' || lookahead > '>')) - ADVANCE(38); + ADVANCE(10); END_STATE(); - case 144: - if (lookahead == '&') - ADVANCE(105); - if (lookahead == '>') - ADVANCE(23); - END_STATE(); - case 145: + case 136: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(29); if (lookahead == '(') ADVANCE(30); - if (lookahead == '<') + END_STATE(); + case 137: + if (lookahead == '\n') + SKIP(133); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(138); + END_STATE(); + case 138: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 139: + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(138); + END_STATE(); + case 140: + ACCEPT_TOKEN(sym__special_characters); + if (lookahead == '[') + ADVANCE(140); + if (lookahead == ']') + ADVANCE(140); + if (lookahead == '{') + ADVANCE(140); + if (lookahead == '}') + ADVANCE(140); + END_STATE(); + case 141: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'a') + ADVANCE(142); + 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(138); + END_STATE(); + case 142: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 's') + ADVANCE(143); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 143: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'e') + ADVANCE(144); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 144: + ACCEPT_TOKEN(anon_sym_case); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 145: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'e') ADVANCE(146); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'c') ADVANCE(147); - if (lookahead == '<') - ADVANCE(148); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_LT_LT_DASH); + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'l') + ADVANCE(148); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'a') + ADVANCE(149); + 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(138); END_STATE(); case 149: ACCEPT_TOKEN(sym_word); - if (lookahead == '=') - ADVANCE(150); if (lookahead == '\\') - ADVANCE(39); - if (lookahead == '~') + ADVANCE(139); + if (lookahead == 'r') + ADVANCE(150); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 150: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'e') ADVANCE(151); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 151: + ACCEPT_TOKEN(anon_sym_declare); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 152: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'x') + ADVANCE(153); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 153: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'p') + ADVANCE(154); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 154: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'o') + ADVANCE(155); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 155: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'r') + ADVANCE(156); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 156: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 't') + ADVANCE(157); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 157: + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 158: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'o') + ADVANCE(159); + if (lookahead == 'u') + ADVANCE(161); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 159: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'r') + ADVANCE(160); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 160: + ACCEPT_TOKEN(anon_sym_for); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 161: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'n') + ADVANCE(162); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 162: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'c') + ADVANCE(163); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 163: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 't') + ADVANCE(164); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 164: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'i') + ADVANCE(165); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 165: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'o') + ADVANCE(166); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 166: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'n') + ADVANCE(167); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 167: + ACCEPT_TOKEN(anon_sym_function); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 168: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'f') + ADVANCE(169); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 169: + ACCEPT_TOKEN(anon_sym_if); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 170: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'o') + ADVANCE(171); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 171: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'c') + ADVANCE(172); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 172: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'a') + ADVANCE(173); + 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(138); + END_STATE(); + case 173: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'l') + ADVANCE(174); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 174: + ACCEPT_TOKEN(anon_sym_local); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 175: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'e') + ADVANCE(176); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 176: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'a') + ADVANCE(177); + 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(138); + END_STATE(); + case 177: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'd') + ADVANCE(178); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 178: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'o') + ADVANCE(179); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 179: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'n') + ADVANCE(180); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 180: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'l') + ADVANCE(181); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 181: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'y') + ADVANCE(182); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 182: + ACCEPT_TOKEN(anon_sym_readonly); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 183: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'y') + ADVANCE(184); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 184: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'p') + ADVANCE(185); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 185: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'e') + ADVANCE(186); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 186: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 's') + ADVANCE(187); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 187: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'e') + ADVANCE(188); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 188: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 't') + ADVANCE(189); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 189: + ACCEPT_TOKEN(anon_sym_typeset); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 190: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'n') + ADVANCE(191); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 191: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 's') + ADVANCE(192); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 192: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'e') + ADVANCE(193); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 193: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 't') + ADVANCE(194); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 194: + ACCEPT_TOKEN(anon_sym_unset); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'e') + ADVANCE(195); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 195: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'n') + ADVANCE(196); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 196: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'v') + ADVANCE(197); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 197: + ACCEPT_TOKEN(anon_sym_unsetenv); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 198: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'h') + ADVANCE(199); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 199: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'i') + ADVANCE(200); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 200: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'l') + ADVANCE(201); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 201: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == 'e') + ADVANCE(202); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 202: + ACCEPT_TOKEN(anon_sym_while); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 203: + if (lookahead == '#') + ADVANCE(134); + if (lookahead == '&') + ADVANCE(204); + if (lookahead == '(') + ADVANCE(14); + if (lookahead == ')') + ADVANCE(15); + if (lookahead == '+') + ADVANCE(17); + if (lookahead == '=') + ADVANCE(205); + if (lookahead == '[') + ADVANCE(206); + if (lookahead == '\\') + SKIP(207); + if (lookahead == ']') + ADVANCE(208); + if (lookahead == '`') + ADVANCE(49); + if (lookahead == 'd') + ADVANCE(209); + if (lookahead == 'e') + ADVANCE(211); + if (lookahead == 'f') + ADVANCE(220); + if (lookahead == 'i') + ADVANCE(222); + if (lookahead == 't') + ADVANCE(224); + if (lookahead == '{') + ADVANCE(128); + if (lookahead == '|') + ADVANCE(129); + if (lookahead == '}') + ADVANCE(132); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(203); + END_STATE(); + case 204: + if (lookahead == '&') + ADVANCE(9); + END_STATE(); + case 205: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 206: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 207: + if (lookahead == '\n') + SKIP(203); + END_STATE(); + case 208: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 209: + if (lookahead == 'o') + ADVANCE(210); + END_STATE(); + case 210: + ACCEPT_TOKEN(anon_sym_do); + END_STATE(); + case 211: + if (lookahead == 'l') + ADVANCE(212); + if (lookahead == 's') + ADVANCE(217); + END_STATE(); + case 212: + if (lookahead == 'i') + ADVANCE(213); + if (lookahead == 's') + ADVANCE(215); + END_STATE(); + case 213: + if (lookahead == 'f') + ADVANCE(214); + END_STATE(); + case 214: + ACCEPT_TOKEN(anon_sym_elif); + END_STATE(); + case 215: + if (lookahead == 'e') + ADVANCE(216); + END_STATE(); + case 216: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 217: + if (lookahead == 'a') + ADVANCE(218); + END_STATE(); + case 218: + if (lookahead == 'c') + ADVANCE(219); + END_STATE(); + case 219: + ACCEPT_TOKEN(anon_sym_esac); + END_STATE(); + case 220: + if (lookahead == 'i') + ADVANCE(221); + END_STATE(); + case 221: + ACCEPT_TOKEN(anon_sym_fi); + END_STATE(); + case 222: + if (lookahead == 'n') + ADVANCE(223); + END_STATE(); + case 223: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 224: + if (lookahead == 'h') + ADVANCE(225); + END_STATE(); + case 225: + if (lookahead == 'e') + ADVANCE(226); + END_STATE(); + case 226: + if (lookahead == 'n') + ADVANCE(227); + END_STATE(); + case 227: + ACCEPT_TOKEN(anon_sym_then); + END_STATE(); + case 228: + if (lookahead == '#') + ADVANCE(134); + if (lookahead == ')') + ADVANCE(15); + if (lookahead == '\\') + SKIP(229); + if (lookahead == '|') + ADVANCE(230); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(228); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(22); + END_STATE(); + case 229: + if (lookahead == '\n') + SKIP(228); + END_STATE(); + case 230: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 231: + if (lookahead == '\"') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(134); + if (lookahead == '$') + ADVANCE(4); + if (lookahead == '&') + ADVANCE(135); + if (lookahead == '\'') + ADVANCE(12); + if (lookahead == '<') + ADVANCE(136); + if (lookahead == '>') + ADVANCE(37); + if (lookahead == '[') + ADVANCE(140); + if (lookahead == '\\') + ADVANCE(232); + if (lookahead == ']') + ADVANCE(140); + if (lookahead == '`') + ADVANCE(49); + if (lookahead == '{') + ADVANCE(140); + if (lookahead == '}') + ADVANCE(140); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(231); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 232: + if (lookahead == '\n') + SKIP(231); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(138); + END_STATE(); + case 233: + if (lookahead == '\"') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(134); + if (lookahead == '$') + ADVANCE(4); + if (lookahead == '&') + ADVANCE(234); + if (lookahead == '\'') + ADVANCE(12); + if (lookahead == ')') + ADVANCE(15); + if (lookahead == '<') + ADVANCE(28); + if (lookahead == '=') + ADVANCE(235); + if (lookahead == '>') + ADVANCE(37); + if (lookahead == '[') + ADVANCE(140); + if (lookahead == '\\') + ADVANCE(238); + if (lookahead == ']') + ADVANCE(140); + if (lookahead == '`') + ADVANCE(49); + if (lookahead == '{') + ADVANCE(140); + if (lookahead == '|') + ADVANCE(129); + if (lookahead == '}') + ADVANCE(140); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(233); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + (lookahead < ';' || lookahead > '>')) + ADVANCE(138); + END_STATE(); + case 234: + if (lookahead == '&') + ADVANCE(9); + if (lookahead == '>') + ADVANCE(10); + END_STATE(); + case 235: + ACCEPT_TOKEN(sym_word); + if (lookahead == '=') + ADVANCE(236); + if (lookahead == '\\') + ADVANCE(139); + if (lookahead == '~') + ADVANCE(237); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2949,12 +3710,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '~')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 150: + case 236: ACCEPT_TOKEN(anon_sym_EQ_EQ); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2968,12 +3729,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 151: + case 237: ACCEPT_TOKEN(anon_sym_EQ_TILDE); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2987,106 +3748,98 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 152: + case 238: if (lookahead == '\n') - SKIP(143); + SKIP(233); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 153: + case 239: if (lookahead == '\n') - ADVANCE(154); + ADVANCE(240); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(155); + ADVANCE(241); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == ';') - ADVANCE(156); + ADVANCE(26); if (lookahead == '<') - ADVANCE(158); + ADVANCE(242); if (lookahead == '>') - ADVANCE(159); + ADVANCE(243); if (lookahead == '[') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\\') - ADVANCE(160); + ADVANCE(244); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(153); + SKIP(239); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(161); + ADVANCE(245); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 154: + case 240: ACCEPT_TOKEN(anon_sym_LF); END_STATE(); - case 155: + case 241: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') - ADVANCE(105); + ADVANCE(9); END_STATE(); - case 156: - ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == ';') - ADVANCE(157); - END_STATE(); - case 157: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI); - END_STATE(); - case 158: + case 242: if (lookahead == '(') ADVANCE(30); END_STATE(); - case 159: + case 243: if (lookahead == '(') - ADVANCE(33); + ADVANCE(39); END_STATE(); - case 160: + case 244: if (lookahead == '\n') - SKIP(153); + SKIP(239); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 161: + case 245: ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(161); + ADVANCE(245); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3099,957 +3852,881 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < 'A' || lookahead > ']') && (lookahead < '_' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 162: + case 246: if (lookahead == '\n') - ADVANCE(154); + ADVANCE(240); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(163); + ADVANCE(8); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == ';') - ADVANCE(156); + ADVANCE(26); if (lookahead == '<') - ADVANCE(145); + ADVANCE(28); if (lookahead == '=') - ADVANCE(149); + ADVANCE(235); if (lookahead == '>') - ADVANCE(31); + ADVANCE(37); if (lookahead == '[') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\\') - ADVANCE(164); + ADVANCE(247); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(162); + SKIP(246); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 163: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') - ADVANCE(105); - if (lookahead == '>') - ADVANCE(23); - END_STATE(); - case 164: + case 247: if (lookahead == '\n') - SKIP(162); + SKIP(246); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 165: + case 248: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(166); + ADVANCE(249); if (lookahead == '$') ADVANCE(4); if (lookahead == '\\') - ADVANCE(168); + ADVANCE(253); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(169); + ADVANCE(254); if (lookahead != 0) - ADVANCE(15); + ADVANCE(250); END_STATE(); - case 166: + case 249: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(15); + ADVANCE(250); if (lookahead == '\\') - ADVANCE(167); + ADVANCE(252); if (lookahead != 0 && lookahead != '\"' && lookahead != '$' && lookahead != '`') - ADVANCE(166); + ADVANCE(249); END_STATE(); - case 167: + case 250: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\\') + ADVANCE(251); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '$' && + lookahead != '`') + ADVANCE(250); + END_STATE(); + case 251: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(15); + ADVANCE(250); if (lookahead == '\\') - ADVANCE(167); + ADVANCE(251); if (lookahead == '\"' || lookahead == '$' || lookahead == '`') - ADVANCE(166); + ADVANCE(250); if (lookahead != 0) - ADVANCE(166); + ADVANCE(250); END_STATE(); - case 168: + case 252: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(169); + ADVANCE(250); if (lookahead == '\\') - ADVANCE(14); + ADVANCE(252); if (lookahead == '\"' || lookahead == '$' || lookahead == '`') - ADVANCE(15); + ADVANCE(249); if (lookahead != 0) - ADVANCE(15); + ADVANCE(249); END_STATE(); - case 169: + case 253: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') + ADVANCE(254); + if (lookahead == '\\') + ADVANCE(251); + if (lookahead == '\"' || + lookahead == '$' || + lookahead == '`') + ADVANCE(250); + if (lookahead != 0) + ADVANCE(250); + END_STATE(); + case 254: ACCEPT_TOKEN(sym__string_content); if (lookahead == '#') - ADVANCE(166); + ADVANCE(249); if (lookahead == '\\') - ADVANCE(168); + ADVANCE(253); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(169); + ADVANCE(254); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && lookahead != '`') - ADVANCE(15); + ADVANCE(250); END_STATE(); - case 170: + case 255: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') ADVANCE(3); if (lookahead == '$') - ADVANCE(171); + ADVANCE(256); if (lookahead == '\'') - ADVANCE(25); - if (lookahead == '*') - ADVANCE(7); - if (lookahead == '-') - ADVANCE(8); - if (lookahead == '0') - ADVANCE(172); - if (lookahead == '?') - ADVANCE(11); - if (lookahead == '@') ADVANCE(12); + if (lookahead == '*') + ADVANCE(16); + if (lookahead == '-') + ADVANCE(19); + if (lookahead == '0') + ADVANCE(21); + if (lookahead == '?') + ADVANCE(41); + if (lookahead == '@') + ADVANCE(42); if (lookahead == '\\') - SKIP(173); + SKIP(257); if (lookahead == '_') - ADVANCE(174); + ADVANCE(48); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(170); + SKIP(255); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(140); + ADVANCE(22); END_STATE(); - case 171: + case 256: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 172: - ACCEPT_TOKEN(anon_sym_0); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(140); - END_STATE(); - case 173: + case 257: if (lookahead == '\n') - SKIP(170); + SKIP(255); END_STATE(); - case 174: - ACCEPT_TOKEN(anon_sym__); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(140); - END_STATE(); - case 175: + case 258: if (lookahead == '#') ADVANCE(3); if (lookahead == '$') - ADVANCE(171); + ADVANCE(256); if (lookahead == '*') - ADVANCE(7); + ADVANCE(16); if (lookahead == '-') - ADVANCE(8); + ADVANCE(19); if (lookahead == '0') - ADVANCE(172); + ADVANCE(21); if (lookahead == '?') - ADVANCE(11); + ADVANCE(41); if (lookahead == '@') - ADVANCE(12); + ADVANCE(42); if (lookahead == '\\') - SKIP(176); + SKIP(259); if (lookahead == '_') - ADVANCE(174); + ADVANCE(48); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(175); + SKIP(258); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(140); - END_STATE(); - case 176: - if (lookahead == '\n') - SKIP(175); - END_STATE(); - case 177: - if (lookahead == '\n') - ADVANCE(154); - if (lookahead == '\"') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '$') - ADVANCE(4); - if (lookahead == '&') - ADVANCE(163); - if (lookahead == '\'') - ADVANCE(25); - if (lookahead == '(') - ADVANCE(27); - if (lookahead == ';') - ADVANCE(156); - if (lookahead == '<') - ADVANCE(145); - if (lookahead == '=') - ADVANCE(149); - if (lookahead == '>') - ADVANCE(31); - if (lookahead == '[') - ADVANCE(40); - if (lookahead == '\\') - ADVANCE(178); - if (lookahead == ']') - ADVANCE(40); - if (lookahead == '`') - ADVANCE(19); - if (lookahead == '{') - ADVANCE(40); - if (lookahead == '|') - ADVANCE(133); - if (lookahead == '}') - ADVANCE(40); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(177); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(38); - END_STATE(); - case 178: - if (lookahead == '\n') - SKIP(177); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(38); - END_STATE(); - case 179: - if (lookahead == 0) - ADVANCE(1); - if (lookahead == '\"') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '$') - ADVANCE(4); - if (lookahead == '&') ADVANCE(22); + END_STATE(); + case 259: + if (lookahead == '\n') + SKIP(258); + END_STATE(); + case 260: + if (lookahead == '\n') + ADVANCE(240); + if (lookahead == '\"') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(134); + if (lookahead == '$') + ADVANCE(4); + if (lookahead == '&') + ADVANCE(8); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == '(') - ADVANCE(27); + ADVANCE(14); if (lookahead == ';') - ADVANCE(180); + ADVANCE(26); if (lookahead == '<') ADVANCE(28); - if (lookahead == '>') - ADVANCE(31); - if (lookahead == '[') - ADVANCE(35); - if (lookahead == '\\') - ADVANCE(181); - if (lookahead == ']') - ADVANCE(40); - if (lookahead == '`') - ADVANCE(19); - if (lookahead == 'c') - ADVANCE(41); - if (lookahead == 'd') - ADVANCE(45); - if (lookahead == 'e') - ADVANCE(52); - if (lookahead == 'f') - ADVANCE(58); - if (lookahead == 'i') - ADVANCE(68); - if (lookahead == 'l') - ADVANCE(70); - if (lookahead == 'r') - ADVANCE(75); - if (lookahead == 't') - ADVANCE(83); - if (lookahead == 'u') - ADVANCE(90); - if (lookahead == 'w') - ADVANCE(98); - if (lookahead == '{') - ADVANCE(40); - if (lookahead == '}') - ADVANCE(40); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(179); - if ((lookahead < '&' || lookahead > ')') && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); - END_STATE(); - case 180: - if (lookahead == ';') - ADVANCE(157); - END_STATE(); - case 181: - if (lookahead == '\n') - SKIP(179); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(38); - END_STATE(); - case 182: - if (lookahead == '\n') - ADVANCE(154); - if (lookahead == '\"') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '$') - ADVANCE(4); - if (lookahead == '&') - ADVANCE(163); - if (lookahead == '\'') - ADVANCE(25); - if (lookahead == ';') - ADVANCE(156); - if (lookahead == '<') - ADVANCE(28); - if (lookahead == '>') - ADVANCE(31); - if (lookahead == '[') - ADVANCE(40); - if (lookahead == '\\') - ADVANCE(183); - if (lookahead == ']') - ADVANCE(40); - if (lookahead == '`') - ADVANCE(19); - if (lookahead == '{') - ADVANCE(40); - if (lookahead == '|') - ADVANCE(133); - if (lookahead == '}') - ADVANCE(40); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(182); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(38); - END_STATE(); - case 183: - if (lookahead == '\n') - SKIP(182); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(38); - END_STATE(); - case 184: - if (lookahead == '\n') - ADVANCE(154); - if (lookahead == '\"') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '$') - ADVANCE(4); - if (lookahead == '&') - ADVANCE(163); - if (lookahead == '\'') - ADVANCE(25); - if (lookahead == ')') - ADVANCE(106); - if (lookahead == ';') - ADVANCE(156); - if (lookahead == '<') - ADVANCE(145); if (lookahead == '=') - ADVANCE(149); + ADVANCE(235); if (lookahead == '>') - ADVANCE(31); + ADVANCE(37); if (lookahead == '[') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\\') - ADVANCE(185); + ADVANCE(261); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(184); + SKIP(260); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 185: + case 261: if (lookahead == '\n') - SKIP(184); + SKIP(260); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 186: + case 262: + if (lookahead == '\n') + ADVANCE(240); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); + if (lookahead == '$') + ADVANCE(4); + if (lookahead == '&') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(12); + if (lookahead == ';') + ADVANCE(26); + if (lookahead == '<') + ADVANCE(136); + if (lookahead == '>') + ADVANCE(37); + if (lookahead == '[') + ADVANCE(140); + if (lookahead == '\\') + ADVANCE(263); + if (lookahead == ']') + ADVANCE(140); + if (lookahead == '`') + ADVANCE(49); + if (lookahead == '{') + ADVANCE(140); + if (lookahead == '|') + ADVANCE(129); + if (lookahead == '}') + ADVANCE(140); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(262); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(138); + END_STATE(); + case 263: + if (lookahead == '\n') + SKIP(262); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(138); + END_STATE(); + case 264: + if (lookahead == '\n') + ADVANCE(240); + if (lookahead == '\"') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(134); + if (lookahead == '$') + ADVANCE(4); + if (lookahead == '&') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(12); + if (lookahead == ')') + ADVANCE(15); + if (lookahead == ';') + ADVANCE(26); + if (lookahead == '<') + ADVANCE(28); + if (lookahead == '=') + ADVANCE(235); + if (lookahead == '>') + ADVANCE(37); + if (lookahead == '[') + ADVANCE(140); + if (lookahead == '\\') + ADVANCE(265); + if (lookahead == ']') + ADVANCE(140); + if (lookahead == '`') + ADVANCE(49); + if (lookahead == '{') + ADVANCE(140); + if (lookahead == '|') + ADVANCE(129); + if (lookahead == '}') + ADVANCE(140); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(264); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(138); + END_STATE(); + case 265: + if (lookahead == '\n') + SKIP(264); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(138); + END_STATE(); + case 266: + if (lookahead == '\"') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == '(') - ADVANCE(27); + ADVANCE(14); if (lookahead == '<') - ADVANCE(158); + ADVANCE(242); if (lookahead == '>') - ADVANCE(159); + ADVANCE(243); if (lookahead == '[') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\\') - ADVANCE(187); + ADVANCE(267); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(186); + SKIP(266); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 187: + case 267: if (lookahead == '\n') - SKIP(186); + SKIP(266); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 188: + case 268: if (lookahead == '\n') - ADVANCE(154); + ADVANCE(240); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(163); + ADVANCE(8); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == ')') - ADVANCE(106); + ADVANCE(15); if (lookahead == ';') - ADVANCE(156); + ADVANCE(26); if (lookahead == '<') - ADVANCE(28); + ADVANCE(136); if (lookahead == '>') - ADVANCE(31); + ADVANCE(37); if (lookahead == '[') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\\') - ADVANCE(189); + ADVANCE(269); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(188); + SKIP(268); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 189: + case 269: if (lookahead == '\n') - SKIP(188); + SKIP(268); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 190: + case 270: if (lookahead == '\n') - ADVANCE(154); + ADVANCE(240); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '&') - ADVANCE(191); + ADVANCE(271); if (lookahead == ';') - ADVANCE(156); + ADVANCE(26); if (lookahead == '\\') - SKIP(192); + SKIP(272); if (lookahead == 'i') - ADVANCE(126); + ADVANCE(222); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(190); + SKIP(270); END_STATE(); - case 191: + case 271: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 192: + case 272: if (lookahead == '\n') - SKIP(190); + SKIP(270); END_STATE(); - case 193: + case 273: if (lookahead == '\n') - ADVANCE(154); + ADVANCE(240); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(155); + ADVANCE(241); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == ')') - ADVANCE(106); + ADVANCE(15); if (lookahead == ';') - ADVANCE(156); + ADVANCE(26); if (lookahead == '<') - ADVANCE(158); + ADVANCE(242); if (lookahead == '>') - ADVANCE(159); + ADVANCE(243); if (lookahead == '[') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\\') - ADVANCE(194); + ADVANCE(274); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(193); + SKIP(273); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(161); + ADVANCE(245); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 194: + case 274: if (lookahead == '\n') - SKIP(193); + SKIP(273); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 195: + case 275: if (lookahead == '\n') - ADVANCE(154); + ADVANCE(240); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(163); + ADVANCE(8); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == '(') - ADVANCE(27); + ADVANCE(14); if (lookahead == ')') - ADVANCE(106); + ADVANCE(15); if (lookahead == ';') - ADVANCE(156); + ADVANCE(26); if (lookahead == '<') - ADVANCE(145); + ADVANCE(28); if (lookahead == '=') - ADVANCE(149); + ADVANCE(235); if (lookahead == '>') - ADVANCE(31); + ADVANCE(37); if (lookahead == '[') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\\') - ADVANCE(196); + ADVANCE(276); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(195); + SKIP(275); if (lookahead != 0) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 196: + case 276: if (lookahead == '\n') - SKIP(195); + SKIP(275); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 197: + case 277: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(198); + ADVANCE(278); if (lookahead == '$') - ADVANCE(200); + ADVANCE(280); if (lookahead == '\'') - ADVANCE(205); + ADVANCE(285); if (lookahead == '<') - ADVANCE(208); + ADVANCE(288); if (lookahead == '>') - ADVANCE(210); + ADVANCE(290); if (lookahead == '[') - ADVANCE(212); + ADVANCE(292); if (lookahead == '\\') - ADVANCE(213); + ADVANCE(293); if (lookahead == ']') - ADVANCE(212); + ADVANCE(292); if (lookahead == '`') - ADVANCE(216); + ADVANCE(296); if (lookahead == '{') - ADVANCE(212); + ADVANCE(292); if (lookahead == '}') - ADVANCE(212); + ADVANCE(292); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(197); + SKIP(277); if (('&' <= lookahead && lookahead <= ')') || lookahead == ';' || lookahead == '|') - ADVANCE(203); + ADVANCE(283); if (lookahead != 0) - ADVANCE(215); + ADVANCE(295); END_STATE(); - case 198: + case 278: ACCEPT_TOKEN(sym_regex); if (lookahead == '\\') - ADVANCE(199); + ADVANCE(279); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(198); + ADVANCE(278); END_STATE(); - case 199: + case 279: ACCEPT_TOKEN(sym_regex); if (lookahead == '\\') - ADVANCE(199); + ADVANCE(279); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(198); + ADVANCE(278); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(198); + ADVANCE(278); END_STATE(); - case 200: + case 280: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead == '(') - ADVANCE(201); + ADVANCE(281); if (lookahead == '\\') - ADVANCE(202); + ADVANCE(282); if (lookahead == '{') - ADVANCE(204); + ADVANCE(284); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(203); + ADVANCE(283); END_STATE(); - case 201: + case 281: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); if (lookahead == '\\') - ADVANCE(202); + ADVANCE(282); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(203); + ADVANCE(283); END_STATE(); - case 202: + case 282: ACCEPT_TOKEN(sym_regex); if (lookahead == '\\') - ADVANCE(202); + ADVANCE(282); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(203); + ADVANCE(283); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(203); + ADVANCE(283); END_STATE(); - case 203: + case 283: ACCEPT_TOKEN(sym_regex); if (lookahead == '\\') - ADVANCE(202); + ADVANCE(282); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(203); + ADVANCE(283); END_STATE(); - case 204: + case 284: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); if (lookahead == '\\') - ADVANCE(202); + ADVANCE(282); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(203); + ADVANCE(283); END_STATE(); - case 205: + case 285: ACCEPT_TOKEN(sym_regex); if (lookahead == '\'') - ADVANCE(206); + ADVANCE(286); if (lookahead == '\\') - ADVANCE(207); + ADVANCE(287); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(25); + ADVANCE(12); if (lookahead != 0) - ADVANCE(205); + ADVANCE(285); END_STATE(); - case 206: + case 286: ACCEPT_TOKEN(sym_raw_string); if (lookahead == '\\') - ADVANCE(202); + ADVANCE(282); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(203); + ADVANCE(283); END_STATE(); - case 207: + case 287: ACCEPT_TOKEN(sym_regex); if (lookahead == '\n') - ADVANCE(25); + ADVANCE(12); if (lookahead == '\'') - ADVANCE(206); + ADVANCE(286); if (lookahead == '\\') - ADVANCE(207); + ADVANCE(287); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(205); + ADVANCE(285); if (lookahead != 0) - ADVANCE(205); + ADVANCE(285); END_STATE(); - case 208: + case 288: ACCEPT_TOKEN(sym_regex); if (lookahead == '(') - ADVANCE(209); + ADVANCE(289); if (lookahead == '\\') - ADVANCE(202); + ADVANCE(282); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(203); + ADVANCE(283); END_STATE(); - case 209: + case 289: ACCEPT_TOKEN(anon_sym_LT_LPAREN); if (lookahead == '\\') - ADVANCE(202); + ADVANCE(282); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(203); + ADVANCE(283); END_STATE(); - case 210: + case 290: ACCEPT_TOKEN(sym_regex); if (lookahead == '(') - ADVANCE(211); + ADVANCE(291); if (lookahead == '\\') - ADVANCE(202); + ADVANCE(282); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(203); + ADVANCE(283); END_STATE(); - case 211: + case 291: ACCEPT_TOKEN(anon_sym_GT_LPAREN); if (lookahead == '\\') - ADVANCE(202); + ADVANCE(282); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(203); + ADVANCE(283); END_STATE(); - case 212: + case 292: ACCEPT_TOKEN(sym_regex); if (lookahead == '[') - ADVANCE(212); + ADVANCE(292); if (lookahead == '\\') - ADVANCE(202); + ADVANCE(282); if (lookahead == ']') - ADVANCE(212); + ADVANCE(292); if (lookahead == '{') - ADVANCE(212); + ADVANCE(292); if (lookahead == '}') - ADVANCE(212); + ADVANCE(292); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(203); + ADVANCE(283); END_STATE(); - case 213: + case 293: ACCEPT_TOKEN(sym_regex); if (lookahead == '\\') - ADVANCE(214); + ADVANCE(294); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(203); + ADVANCE(283); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(215); + ADVANCE(295); END_STATE(); - case 214: + case 294: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(213); + ADVANCE(293); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(203); + ADVANCE(283); if (('\"' <= lookahead && lookahead <= '$') || ('&' <= lookahead && lookahead <= ')') || lookahead == ';' || @@ -4058,16 +4735,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('[' <= lookahead && lookahead <= ']') || lookahead == '`' || ('{' <= lookahead && lookahead <= '}')) - ADVANCE(203); + ADVANCE(283); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(215); + ADVANCE(295); END_STATE(); - case 215: + case 295: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(213); + ADVANCE(293); if (('\"' <= lookahead && lookahead <= '$') || ('&' <= lookahead && lookahead <= ')') || lookahead == ';' || @@ -4076,214 +4753,235 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('[' <= lookahead && lookahead <= ']') || lookahead == '`' || ('{' <= lookahead && lookahead <= '}')) - ADVANCE(203); + ADVANCE(283); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(215); + ADVANCE(295); END_STATE(); - case 216: + case 296: ACCEPT_TOKEN(anon_sym_BQUOTE); if (lookahead == '\\') - ADVANCE(202); + ADVANCE(282); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(203); + ADVANCE(283); END_STATE(); - case 217: + case 297: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == '<') - ADVANCE(158); + ADVANCE(242); if (lookahead == '=') - ADVANCE(149); + ADVANCE(235); if (lookahead == '>') - ADVANCE(159); + ADVANCE(243); if (lookahead == '[') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\\') - ADVANCE(218); + ADVANCE(298); if (lookahead == ']') - ADVANCE(112); + ADVANCE(208); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(217); + SKIP(297); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && (lookahead < ';' || lookahead > '>') && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 218: + case 298: if (lookahead == '\n') - SKIP(217); + SKIP(297); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 219: + case 299: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == '<') - ADVANCE(158); + ADVANCE(242); if (lookahead == '=') - ADVANCE(149); + ADVANCE(235); if (lookahead == '>') - ADVANCE(159); + ADVANCE(243); if (lookahead == '[') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\\') - ADVANCE(220); + ADVANCE(300); if (lookahead == ']') - ADVANCE(221); + ADVANCE(301); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(219); + SKIP(299); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && (lookahead < ';' || lookahead > '>') && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 220: + case 300: if (lookahead == '\n') - SKIP(219); + SKIP(299); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 221: + case 301: ACCEPT_TOKEN(sym__special_characters); if (lookahead == '[') - ADVANCE(40); + ADVANCE(140); if (lookahead == ']') - ADVANCE(222); + ADVANCE(47); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); END_STATE(); - case 222: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); - END_STATE(); - case 223: + case 302: if (lookahead == '#') ADVANCE(3); if (lookahead == '$') - ADVANCE(171); + ADVANCE(256); if (lookahead == '*') - ADVANCE(7); + ADVANCE(16); if (lookahead == '-') - ADVANCE(8); + ADVANCE(19); if (lookahead == '0') - ADVANCE(9); + ADVANCE(303); if (lookahead == '?') - ADVANCE(11); + ADVANCE(41); if (lookahead == '@') - ADVANCE(12); + ADVANCE(42); if (lookahead == '\\') - ADVANCE(224); + ADVANCE(305); if (lookahead == '_') - ADVANCE(18); + ADVANCE(307); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(225); + ADVANCE(306); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(10); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && (lookahead < '_' || lookahead > 'z')) - ADVANCE(15); + ADVANCE(250); END_STATE(); - case 224: + case 303: + ACCEPT_TOKEN(anon_sym_0); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(304); + END_STATE(); + case 304: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(304); + END_STATE(); + case 305: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(225); + ADVANCE(306); if (lookahead == '\\') - ADVANCE(14); + ADVANCE(251); if (lookahead == '\"' || lookahead == '$' || lookahead == '`') - ADVANCE(15); + ADVANCE(250); if (lookahead != 0) - ADVANCE(15); + ADVANCE(250); END_STATE(); - case 225: + case 306: ACCEPT_TOKEN(sym__string_content); if (lookahead == '#') ADVANCE(3); if (lookahead == '*') - ADVANCE(7); + ADVANCE(16); if (lookahead == '-') - ADVANCE(8); + ADVANCE(19); if (lookahead == '0') - ADVANCE(9); + ADVANCE(303); if (lookahead == '?') - ADVANCE(11); + ADVANCE(41); if (lookahead == '@') - ADVANCE(12); + ADVANCE(42); if (lookahead == '\\') - ADVANCE(224); + ADVANCE(305); if (lookahead == '_') - ADVANCE(18); + ADVANCE(307); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(225); + ADVANCE(306); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(10); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && (lookahead < '_' || lookahead > 'z')) - ADVANCE(15); + ADVANCE(250); END_STATE(); - case 226: + case 307: + ACCEPT_TOKEN(anon_sym__); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(304); + END_STATE(); + case 308: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -4291,48 +4989,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '%') - ADVANCE(227); + ADVANCE(309); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == '-') - ADVANCE(228); + ADVANCE(310); if (lookahead == '/') - ADVANCE(229); + ADVANCE(20); if (lookahead == ':') - ADVANCE(230); + ADVANCE(311); if (lookahead == '<') - ADVANCE(158); + ADVANCE(242); if (lookahead == '=') - ADVANCE(233); + ADVANCE(314); if (lookahead == '>') - ADVANCE(159); + ADVANCE(243); if (lookahead == '[') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\\') - ADVANCE(234); + ADVANCE(315); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '}') - ADVANCE(136); + ADVANCE(132); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(226); + SKIP(308); if (lookahead != 0 && (lookahead < '\"' || lookahead > ')') && (lookahead < ':' || lookahead > '>') && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 227: + case 309: ACCEPT_TOKEN(anon_sym_PERCENT); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4346,12 +5044,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 228: + case 310: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4365,19 +5063,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 229: - ACCEPT_TOKEN(aux_sym_SLASH); - END_STATE(); - case 230: + case 311: ACCEPT_TOKEN(anon_sym_COLON); if (lookahead == '-') - ADVANCE(231); + ADVANCE(312); if (lookahead == '?') - ADVANCE(232); + ADVANCE(313); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4392,12 +5087,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 231: + case 312: ACCEPT_TOKEN(anon_sym_COLON_DASH); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4411,12 +5106,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 232: + case 313: ACCEPT_TOKEN(anon_sym_COLON_QMARK); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4430,12 +5125,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 233: + case 314: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4449,606 +5144,648 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 234: + case 315: if (lookahead == '\n') - SKIP(226); + SKIP(308); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 235: + case 316: if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') - ADVANCE(171); + ADVANCE(256); if (lookahead == '*') - ADVANCE(7); + ADVANCE(16); if (lookahead == '-') - ADVANCE(8); + ADVANCE(19); if (lookahead == '0') - ADVANCE(172); + ADVANCE(21); if (lookahead == '?') - ADVANCE(11); + ADVANCE(41); if (lookahead == '@') - ADVANCE(12); + ADVANCE(42); if (lookahead == '\\') - SKIP(236); + SKIP(317); if (lookahead == '_') - ADVANCE(174); + ADVANCE(48); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(235); + SKIP(316); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(140); + ADVANCE(22); END_STATE(); - case 236: + case 317: if (lookahead == '\n') - SKIP(235); + SKIP(316); END_STATE(); - case 237: + case 318: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(104); + ADVANCE(204); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == ')') - ADVANCE(106); + ADVANCE(15); if (lookahead == '<') - ADVANCE(158); - if (lookahead == '>') - ADVANCE(159); - if (lookahead == '[') - ADVANCE(40); - if (lookahead == '\\') - ADVANCE(238); - if (lookahead == ']') - ADVANCE(40); - if (lookahead == '`') - ADVANCE(19); - if (lookahead == '{') - ADVANCE(40); - if (lookahead == '|') - ADVANCE(133); - if (lookahead == '}') - ADVANCE(40); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(237); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(161); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<') - ADVANCE(38); - END_STATE(); - case 238: - if (lookahead == '\n') - SKIP(237); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(38); - END_STATE(); - case 239: - if (lookahead == '\"') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '$') - ADVANCE(4); - if (lookahead == '&') - ADVANCE(144); - if (lookahead == '\'') - ADVANCE(25); - if (lookahead == '(') - ADVANCE(27); - if (lookahead == ')') - ADVANCE(106); - if (lookahead == '<') - ADVANCE(145); - if (lookahead == '=') - ADVANCE(149); - if (lookahead == '>') - ADVANCE(31); - if (lookahead == '[') - ADVANCE(40); - if (lookahead == '\\') - ADVANCE(240); - if (lookahead == ']') - ADVANCE(40); - if (lookahead == '`') - ADVANCE(19); - if (lookahead == '{') - ADVANCE(40); - if (lookahead == '|') - ADVANCE(133); - if (lookahead == '}') - ADVANCE(40); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(239); - if (lookahead != 0 && - (lookahead < ';' || lookahead > '>')) - ADVANCE(38); - END_STATE(); - case 240: - if (lookahead == '\n') - SKIP(239); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(38); - END_STATE(); - case 241: - if (lookahead == '\"') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '$') - ADVANCE(4); - if (lookahead == '&') - ADVANCE(144); - if (lookahead == '\'') - ADVANCE(25); - if (lookahead == ')') - ADVANCE(106); - if (lookahead == '<') - ADVANCE(28); - if (lookahead == '>') - ADVANCE(31); - if (lookahead == '[') - ADVANCE(40); - if (lookahead == '\\') ADVANCE(242); - if (lookahead == ']') - ADVANCE(40); - if (lookahead == '`') - ADVANCE(19); - if (lookahead == '{') - ADVANCE(40); - if (lookahead == '|') - ADVANCE(133); - if (lookahead == '}') - ADVANCE(40); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(241); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<') - ADVANCE(38); - END_STATE(); - case 242: - if (lookahead == '\n') - SKIP(241); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(38); - END_STATE(); - case 243: - if (lookahead == '\"') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '$') - ADVANCE(4); - if (lookahead == '&') - ADVANCE(104); - if (lookahead == '\'') - ADVANCE(25); - if (lookahead == '<') - ADVANCE(158); if (lookahead == '>') - ADVANCE(159); + ADVANCE(243); if (lookahead == '[') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\\') - ADVANCE(244); + ADVANCE(319); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(243); + SKIP(318); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(161); + ADVANCE(245); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 244: + case 319: if (lookahead == '\n') - SKIP(243); + SKIP(318); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 245: + case 320: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(144); + ADVANCE(234); if (lookahead == '\'') - ADVANCE(25); - if (lookahead == '<') - ADVANCE(145); - if (lookahead == '=') - ADVANCE(149); - if (lookahead == '>') - ADVANCE(31); - if (lookahead == '[') - ADVANCE(40); - if (lookahead == '\\') - ADVANCE(246); - if (lookahead == ']') - ADVANCE(40); - if (lookahead == '`') - ADVANCE(19); - if (lookahead == '{') - ADVANCE(40); - if (lookahead == '|') - ADVANCE(133); - if (lookahead == '}') - ADVANCE(40); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(245); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - (lookahead < ';' || lookahead > '>')) - ADVANCE(38); - END_STATE(); - case 246: - if (lookahead == '\n') - SKIP(245); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(38); - END_STATE(); - case 247: - if (lookahead == '\"') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '$') - ADVANCE(4); - if (lookahead == '&') - ADVANCE(144); - if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == '(') - ADVANCE(27); - if (lookahead == '<') - ADVANCE(145); - if (lookahead == '=') - ADVANCE(149); - if (lookahead == '>') - ADVANCE(31); - if (lookahead == '[') - ADVANCE(40); - if (lookahead == '\\') - ADVANCE(248); - if (lookahead == ']') - ADVANCE(40); - if (lookahead == '`') - ADVANCE(19); - if (lookahead == '{') - ADVANCE(40); - if (lookahead == '|') - ADVANCE(133); - if (lookahead == '}') - ADVANCE(40); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(247); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - (lookahead < ';' || lookahead > '>')) - ADVANCE(38); - END_STATE(); - case 248: - if (lookahead == '\n') - SKIP(247); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(38); - END_STATE(); - case 249: - if (lookahead == '\"') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '$') - ADVANCE(4); - if (lookahead == '&') - ADVANCE(144); - if (lookahead == '\'') - ADVANCE(25); + ADVANCE(14); + if (lookahead == ')') + ADVANCE(15); if (lookahead == '<') ADVANCE(28); + if (lookahead == '=') + ADVANCE(235); if (lookahead == '>') - ADVANCE(31); + ADVANCE(37); if (lookahead == '[') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\\') - ADVANCE(250); + ADVANCE(321); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(249); + SKIP(320); if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<') - ADVANCE(38); + (lookahead < ';' || lookahead > '>')) + ADVANCE(138); END_STATE(); - case 250: + case 321: if (lookahead == '\n') - SKIP(249); + SKIP(320); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 251: + case 322: + if (lookahead == '\"') + ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); + if (lookahead == '$') + ADVANCE(4); + if (lookahead == '&') + ADVANCE(234); + if (lookahead == '\'') + ADVANCE(12); + if (lookahead == ')') + ADVANCE(15); + if (lookahead == '<') + ADVANCE(136); + if (lookahead == '>') + ADVANCE(37); + if (lookahead == '[') + ADVANCE(140); if (lookahead == '\\') - SKIP(252); + ADVANCE(323); + if (lookahead == ']') + ADVANCE(140); + if (lookahead == '`') + ADVANCE(49); + if (lookahead == '{') + ADVANCE(140); + if (lookahead == '|') + ADVANCE(129); + if (lookahead == '}') + ADVANCE(140); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(251); + SKIP(322); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(138); END_STATE(); - case 252: + case 323: if (lookahead == '\n') - SKIP(251); + SKIP(322); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(138); END_STATE(); - case 253: - if (lookahead == '\n') - ADVANCE(154); + case 324: + if (lookahead == '\"') + ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); + if (lookahead == '$') + ADVANCE(4); if (lookahead == '&') - ADVANCE(163); - if (lookahead == ')') - ADVANCE(106); - if (lookahead == ';') - ADVANCE(156); + ADVANCE(204); + if (lookahead == '\'') + ADVANCE(12); if (lookahead == '<') - ADVANCE(254); + ADVANCE(242); if (lookahead == '>') - ADVANCE(255); + ADVANCE(243); + if (lookahead == '[') + ADVANCE(140); if (lookahead == '\\') - SKIP(256); - if (lookahead == 'e') - ADVANCE(257); + ADVANCE(325); + if (lookahead == ']') + ADVANCE(140); + if (lookahead == '`') + ADVANCE(49); + if (lookahead == '{') + ADVANCE(140); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); + if (lookahead == '}') + ADVANCE(140); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(324); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(245); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(138); + END_STATE(); + case 325: + if (lookahead == '\n') + SKIP(324); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(138); + END_STATE(); + case 326: + if (lookahead == '\"') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(134); + if (lookahead == '$') + ADVANCE(4); + if (lookahead == '&') + ADVANCE(234); + if (lookahead == '\'') + ADVANCE(12); + if (lookahead == '<') + ADVANCE(28); + if (lookahead == '=') + ADVANCE(235); + if (lookahead == '>') + ADVANCE(37); + if (lookahead == '[') + ADVANCE(140); + if (lookahead == '\\') + ADVANCE(327); + if (lookahead == ']') + ADVANCE(140); + if (lookahead == '`') + ADVANCE(49); + if (lookahead == '{') + ADVANCE(140); + if (lookahead == '|') + ADVANCE(129); + if (lookahead == '}') + ADVANCE(140); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(326); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + (lookahead < ';' || lookahead > '>')) + ADVANCE(138); + END_STATE(); + case 327: + if (lookahead == '\n') + SKIP(326); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(138); + END_STATE(); + case 328: + if (lookahead == '\"') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(134); + if (lookahead == '$') + ADVANCE(4); + if (lookahead == '&') + ADVANCE(234); + if (lookahead == '\'') + ADVANCE(12); + if (lookahead == '(') + ADVANCE(14); + if (lookahead == '<') + ADVANCE(28); + if (lookahead == '=') + ADVANCE(235); + if (lookahead == '>') + ADVANCE(37); + if (lookahead == '[') + ADVANCE(140); + if (lookahead == '\\') + ADVANCE(329); + if (lookahead == ']') + ADVANCE(140); + if (lookahead == '`') + ADVANCE(49); + if (lookahead == '{') + ADVANCE(140); + if (lookahead == '|') + ADVANCE(129); + if (lookahead == '}') + ADVANCE(140); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(328); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + (lookahead < ';' || lookahead > '>')) + ADVANCE(138); + END_STATE(); + case 329: + if (lookahead == '\n') + SKIP(328); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(138); + END_STATE(); + case 330: + if (lookahead == '\"') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(134); + if (lookahead == '$') + ADVANCE(4); + if (lookahead == '&') + ADVANCE(234); + if (lookahead == '\'') + ADVANCE(12); + if (lookahead == '<') + ADVANCE(136); + if (lookahead == '>') + ADVANCE(37); + if (lookahead == '[') + ADVANCE(140); + if (lookahead == '\\') + ADVANCE(331); + if (lookahead == ']') + ADVANCE(140); + if (lookahead == '`') + ADVANCE(49); + if (lookahead == '{') + ADVANCE(140); + if (lookahead == '|') + ADVANCE(129); + if (lookahead == '}') + ADVANCE(140); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(330); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(138); + END_STATE(); + case 331: + if (lookahead == '\n') + SKIP(330); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(138); + END_STATE(); + case 332: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '\"') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(134); + if (lookahead == '$') + ADVANCE(4); + if (lookahead == '&') + ADVANCE(135); + if (lookahead == '\'') + ADVANCE(12); + if (lookahead == '(') + ADVANCE(14); + if (lookahead == ';') + ADVANCE(333); + if (lookahead == '<') + ADVANCE(136); + if (lookahead == '>') + ADVANCE(37); + if (lookahead == '[') + ADVANCE(43); + if (lookahead == '\\') + ADVANCE(334); + if (lookahead == ']') + ADVANCE(140); + if (lookahead == '`') + ADVANCE(49); + if (lookahead == 'c') + ADVANCE(141); + if (lookahead == 'd') + ADVANCE(145); + if (lookahead == 'e') + ADVANCE(152); + if (lookahead == 'f') + ADVANCE(158); + if (lookahead == 'i') + ADVANCE(168); + if (lookahead == 'l') + ADVANCE(170); + if (lookahead == 'r') + ADVANCE(175); + if (lookahead == 't') + ADVANCE(183); + if (lookahead == 'u') + ADVANCE(190); + if (lookahead == 'w') + ADVANCE(198); + if (lookahead == '{') + ADVANCE(140); + if (lookahead == '}') + ADVANCE(140); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(332); + if ((lookahead < '&' || lookahead > ')') && + (lookahead < '{' || lookahead > '}')) + ADVANCE(138); + END_STATE(); + case 333: + if (lookahead == ';') + ADVANCE(27); + END_STATE(); + case 334: + if (lookahead == '\n') + SKIP(332); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(138); + END_STATE(); + case 335: + if (lookahead == '#') + ADVANCE(134); + if (lookahead == '\\') + SKIP(336); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(335); + END_STATE(); + case 336: + if (lookahead == '\n') + SKIP(335); + END_STATE(); + case 337: + if (lookahead == '\n') + ADVANCE(240); + if (lookahead == '#') + ADVANCE(134); + if (lookahead == '&') + ADVANCE(8); + if (lookahead == ';') + ADVANCE(26); + if (lookahead == '<') + ADVANCE(338); + if (lookahead == '>') + ADVANCE(339); + if (lookahead == '\\') + SKIP(340); + if (lookahead == '|') + ADVANCE(129); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(253); + SKIP(337); END_STATE(); - case 254: + case 338: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(29); if (lookahead == '<') - ADVANCE(146); + ADVANCE(31); END_STATE(); - case 255: + case 339: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '&') - ADVANCE(32); + ADVANCE(38); if (lookahead == '>') - ADVANCE(34); + ADVANCE(40); END_STATE(); - case 256: + case 340: if (lookahead == '\n') - SKIP(253); + SKIP(337); END_STATE(); - case 257: - if (lookahead == 's') - ADVANCE(121); - END_STATE(); - case 258: - if (lookahead == '\n') - ADVANCE(154); + case 341: if (lookahead == '#') - ADVANCE(21); - if (lookahead == '&') - ADVANCE(163); - if (lookahead == ';') - ADVANCE(156); - if (lookahead == '<') - ADVANCE(254); - if (lookahead == '>') - ADVANCE(255); + ADVANCE(134); if (lookahead == '\\') - SKIP(259); - if (lookahead == '|') - ADVANCE(133); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(258); - END_STATE(); - case 259: - if (lookahead == '\n') - SKIP(258); - END_STATE(); - case 260: - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '\\') - SKIP(261); + SKIP(342); if (lookahead == ']') - ADVANCE(112); + ADVANCE(208); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(260); + SKIP(341); END_STATE(); - case 261: + case 342: if (lookahead == '\n') - SKIP(260); + SKIP(341); END_STATE(); - case 262: + case 343: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(22); + ADVANCE(135); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == '(') - ADVANCE(27); + ADVANCE(14); if (lookahead == '<') - ADVANCE(28); + ADVANCE(136); if (lookahead == '>') - ADVANCE(31); + ADVANCE(37); if (lookahead == '[') - ADVANCE(35); + ADVANCE(43); if (lookahead == '\\') - ADVANCE(263); + ADVANCE(344); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == 'c') - ADVANCE(41); + ADVANCE(141); if (lookahead == 'd') - ADVANCE(264); + ADVANCE(345); if (lookahead == 'e') - ADVANCE(52); + ADVANCE(152); if (lookahead == 'f') - ADVANCE(58); + ADVANCE(158); if (lookahead == 'i') - ADVANCE(68); + ADVANCE(168); if (lookahead == 'l') - ADVANCE(70); + ADVANCE(170); if (lookahead == 'r') - ADVANCE(75); + ADVANCE(175); if (lookahead == 't') - ADVANCE(83); + ADVANCE(183); if (lookahead == 'u') - ADVANCE(90); + ADVANCE(190); if (lookahead == 'w') - ADVANCE(98); + ADVANCE(198); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(262); + SKIP(343); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 263: + case 344: if (lookahead == '\n') - SKIP(262); + SKIP(343); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 264: + case 345: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead == 'e') - ADVANCE(46); + ADVANCE(146); if (lookahead == 'o') - ADVANCE(265); + ADVANCE(346); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5062,14 +5799,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 265: + case 346: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead == 'n') - ADVANCE(266); + ADVANCE(347); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5083,14 +5820,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 266: + case 347: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead == 'e') - ADVANCE(267); + ADVANCE(348); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5104,12 +5841,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 267: + case 348: ACCEPT_TOKEN(anon_sym_done); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5123,87 +5860,87 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 268: + case 349: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(22); + ADVANCE(135); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == '(') - ADVANCE(27); + ADVANCE(14); if (lookahead == '<') - ADVANCE(28); + ADVANCE(136); if (lookahead == '>') - ADVANCE(31); + ADVANCE(37); if (lookahead == '[') - ADVANCE(35); + ADVANCE(43); if (lookahead == '\\') - ADVANCE(269); + ADVANCE(350); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == 'c') - ADVANCE(41); + ADVANCE(141); if (lookahead == 'd') - ADVANCE(45); + ADVANCE(145); if (lookahead == 'e') - ADVANCE(270); + ADVANCE(351); if (lookahead == 'f') - ADVANCE(276); + ADVANCE(357); if (lookahead == 'i') - ADVANCE(68); + ADVANCE(168); if (lookahead == 'l') - ADVANCE(70); + ADVANCE(170); if (lookahead == 'r') - ADVANCE(75); + ADVANCE(175); if (lookahead == 't') - ADVANCE(83); + ADVANCE(183); if (lookahead == 'u') - ADVANCE(90); + ADVANCE(190); if (lookahead == 'w') - ADVANCE(98); + ADVANCE(198); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(268); + SKIP(349); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 269: + case 350: if (lookahead == '\n') - SKIP(268); + SKIP(349); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 270: + case 351: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead == 'l') - ADVANCE(271); + ADVANCE(352); if (lookahead == 'x') - ADVANCE(53); + ADVANCE(153); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5217,16 +5954,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 271: + case 352: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead == 'i') - ADVANCE(272); + ADVANCE(353); if (lookahead == 's') - ADVANCE(274); + ADVANCE(355); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5240,14 +5977,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 272: + case 353: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead == 'f') - ADVANCE(273); + ADVANCE(354); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5261,12 +5998,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 273: + case 354: ACCEPT_TOKEN(anon_sym_elif); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5280,14 +6017,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 274: + case 355: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead == 'e') - ADVANCE(275); + ADVANCE(356); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5301,12 +6038,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 275: + case 356: ACCEPT_TOKEN(anon_sym_else); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5320,18 +6057,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 276: + case 357: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead == 'i') - ADVANCE(277); + ADVANCE(358); if (lookahead == 'o') - ADVANCE(59); + ADVANCE(159); if (lookahead == 'u') - ADVANCE(61); + ADVANCE(161); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5345,12 +6082,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 277: + case 358: ACCEPT_TOKEN(anon_sym_fi); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5364,284 +6101,339 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 278: + case 359: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(22); + ADVANCE(135); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == '(') - ADVANCE(27); + ADVANCE(14); if (lookahead == '<') - ADVANCE(28); - if (lookahead == '>') - ADVANCE(31); - if (lookahead == '[') - ADVANCE(35); - if (lookahead == '\\') - ADVANCE(279); - if (lookahead == ']') - ADVANCE(40); - if (lookahead == '`') - ADVANCE(19); - if (lookahead == 'c') - ADVANCE(41); - if (lookahead == 'd') - ADVANCE(45); - if (lookahead == 'e') - ADVANCE(52); - if (lookahead == 'f') - ADVANCE(58); - if (lookahead == 'i') - ADVANCE(68); - if (lookahead == 'l') - ADVANCE(70); - if (lookahead == 'r') - ADVANCE(75); - if (lookahead == 't') - ADVANCE(83); - if (lookahead == 'u') - ADVANCE(90); - if (lookahead == 'w') - ADVANCE(98); - if (lookahead == '{') - ADVANCE(40); - if (lookahead == '}') ADVANCE(136); + if (lookahead == '>') + ADVANCE(37); + if (lookahead == '[') + ADVANCE(43); + if (lookahead == '\\') + ADVANCE(360); + if (lookahead == ']') + ADVANCE(140); + if (lookahead == '`') + ADVANCE(49); + if (lookahead == 'c') + ADVANCE(141); + if (lookahead == 'd') + ADVANCE(145); + if (lookahead == 'e') + ADVANCE(152); + if (lookahead == 'f') + ADVANCE(158); + if (lookahead == 'i') + ADVANCE(168); + if (lookahead == 'l') + ADVANCE(170); + if (lookahead == 'r') + ADVANCE(175); + if (lookahead == 't') + ADVANCE(183); + if (lookahead == 'u') + ADVANCE(190); + if (lookahead == 'w') + ADVANCE(198); + if (lookahead == '{') + ADVANCE(140); + if (lookahead == '}') + ADVANCE(132); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(278); + SKIP(359); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 279: + case 360: if (lookahead == '\n') - SKIP(278); + SKIP(359); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 280: + case 361: if (lookahead == '\n') - ADVANCE(154); + ADVANCE(240); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '&') - ADVANCE(163); + ADVANCE(8); if (lookahead == ';') - ADVANCE(156); + ADVANCE(26); if (lookahead == '<') - ADVANCE(281); + ADVANCE(362); if (lookahead == '>') - ADVANCE(255); + ADVANCE(339); if (lookahead == '\\') - SKIP(282); + SKIP(363); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(280); + SKIP(361); END_STATE(); - case 281: + case 362: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(29); END_STATE(); - case 282: + case 363: if (lookahead == '\n') - SKIP(280); + SKIP(361); END_STATE(); - case 283: + case 364: if (lookahead == '\n') - ADVANCE(154); + ADVANCE(240); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '&') - ADVANCE(155); + ADVANCE(241); if (lookahead == ')') - ADVANCE(106); + ADVANCE(15); if (lookahead == ';') - ADVANCE(156); + ADVANCE(26); if (lookahead == '\\') - SKIP(284); + SKIP(365); if (lookahead == 'e') - ADVANCE(257); + ADVANCE(366); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(283); + SKIP(364); END_STATE(); - case 284: + case 365: if (lookahead == '\n') - SKIP(283); + SKIP(364); END_STATE(); - case 285: + case 366: + if (lookahead == 's') + ADVANCE(217); + END_STATE(); + case 367: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(22); + ADVANCE(135); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == '(') - ADVANCE(27); + ADVANCE(14); if (lookahead == ')') - ADVANCE(106); + ADVANCE(15); if (lookahead == '<') - ADVANCE(28); + ADVANCE(136); if (lookahead == '>') - ADVANCE(31); + ADVANCE(37); if (lookahead == '[') - ADVANCE(35); + ADVANCE(43); if (lookahead == '\\') - ADVANCE(286); + ADVANCE(368); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == 'c') - ADVANCE(41); + ADVANCE(141); if (lookahead == 'd') - ADVANCE(45); + ADVANCE(145); if (lookahead == 'e') - ADVANCE(52); + ADVANCE(152); if (lookahead == 'f') - ADVANCE(58); + ADVANCE(158); if (lookahead == 'i') - ADVANCE(68); + ADVANCE(168); if (lookahead == 'l') - ADVANCE(70); + ADVANCE(170); if (lookahead == 'r') - ADVANCE(75); + ADVANCE(175); if (lookahead == 't') - ADVANCE(83); + ADVANCE(183); if (lookahead == 'u') - ADVANCE(90); + ADVANCE(190); if (lookahead == 'w') - ADVANCE(98); + ADVANCE(198); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(285); + SKIP(367); if (lookahead != 0 && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 286: + case 368: if (lookahead == '\n') - SKIP(285); + SKIP(367); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 287: + case 369: if (lookahead == '\n') - ADVANCE(154); + ADVANCE(240); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '&') - ADVANCE(163); + ADVANCE(8); if (lookahead == ')') - ADVANCE(106); + ADVANCE(15); if (lookahead == ';') - ADVANCE(156); + ADVANCE(26); if (lookahead == '<') - ADVANCE(254); + ADVANCE(338); if (lookahead == '>') - ADVANCE(255); + ADVANCE(339); if (lookahead == '\\') - SKIP(288); + SKIP(370); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(287); + SKIP(369); END_STATE(); - case 288: + case 370: if (lookahead == '\n') - SKIP(287); + SKIP(369); END_STATE(); - case 289: + case 371: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); + if (lookahead == ')') + ADVANCE(15); if (lookahead == '<') - ADVANCE(158); + ADVANCE(242); + if (lookahead == '=') + ADVANCE(235); if (lookahead == '>') - ADVANCE(159); + ADVANCE(243); if (lookahead == '[') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\\') - ADVANCE(290); + ADVANCE(372); if (lookahead == ']') - ADVANCE(40); + ADVANCE(301); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); + if (lookahead == '|') + ADVANCE(230); if (lookahead == '}') - ADVANCE(136); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(289); + SKIP(371); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + (lookahead < ';' || lookahead > '>')) + ADVANCE(138); + END_STATE(); + case 372: + if (lookahead == '\n') + SKIP(371); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(138); + END_STATE(); + case 373: + if (lookahead == '\"') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(134); + if (lookahead == '$') + ADVANCE(4); + if (lookahead == '\'') + ADVANCE(12); + if (lookahead == '<') + ADVANCE(242); + if (lookahead == '>') + ADVANCE(243); + if (lookahead == '[') + ADVANCE(140); + if (lookahead == '\\') + ADVANCE(374); + if (lookahead == ']') + ADVANCE(140); + if (lookahead == '`') + ADVANCE(49); + if (lookahead == '{') + ADVANCE(140); + if (lookahead == '}') + ADVANCE(132); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(373); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 290: + case 374: if (lookahead == '\n') - SKIP(289); + SKIP(373); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 291: + case 375: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -5649,510 +6441,513 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '%') - ADVANCE(227); + ADVANCE(309); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == '-') - ADVANCE(228); + ADVANCE(310); if (lookahead == ':') - ADVANCE(230); + ADVANCE(311); if (lookahead == '<') - ADVANCE(158); + ADVANCE(242); if (lookahead == '=') - ADVANCE(233); + ADVANCE(314); if (lookahead == '>') - ADVANCE(159); + ADVANCE(243); if (lookahead == '[') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\\') - ADVANCE(292); + ADVANCE(376); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '}') - ADVANCE(136); + ADVANCE(132); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(291); + SKIP(375); if (lookahead != 0 && (lookahead < '\"' || lookahead > ')') && (lookahead < ':' || lookahead > '>') && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 292: + case 376: if (lookahead == '\n') - SKIP(291); + SKIP(375); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 293: + case 377: if (lookahead == '#') - ADVANCE(294); + ADVANCE(378); if (lookahead == '\\') - ADVANCE(296); + ADVANCE(380); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(293); + SKIP(377); if (lookahead != 0 && lookahead != '\"' && lookahead != '#' && lookahead != '}') - ADVANCE(297); + ADVANCE(381); END_STATE(); - case 294: + case 378: ACCEPT_TOKEN(sym_regex_without_right_brace); if (lookahead == '\\') - ADVANCE(295); + ADVANCE(379); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && lookahead != '}') - ADVANCE(294); + ADVANCE(378); END_STATE(); - case 295: + case 379: ACCEPT_TOKEN(sym_regex_without_right_brace); if (lookahead == '\\') - ADVANCE(295); + ADVANCE(379); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ' || lookahead == '}') - ADVANCE(294); + ADVANCE(378); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(294); + ADVANCE(378); END_STATE(); - case 296: + case 380: ACCEPT_TOKEN(sym_regex_without_right_brace); if (lookahead == '\\') - ADVANCE(296); + ADVANCE(380); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ' || lookahead == '}') - ADVANCE(297); + ADVANCE(381); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(297); + ADVANCE(381); END_STATE(); - case 297: + case 381: ACCEPT_TOKEN(sym_regex_without_right_brace); if (lookahead == '\\') - ADVANCE(296); + ADVANCE(380); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && lookahead != '}') - ADVANCE(297); + ADVANCE(381); END_STATE(); - case 298: + case 382: if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '&') - ADVANCE(144); + ADVANCE(234); if (lookahead == ')') - ADVANCE(106); + ADVANCE(15); if (lookahead == '<') - ADVANCE(254); + ADVANCE(338); if (lookahead == '>') - ADVANCE(255); + ADVANCE(339); if (lookahead == '\\') - SKIP(299); - if (lookahead == '`') - ADVANCE(19); + SKIP(383); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(298); + SKIP(382); END_STATE(); - case 299: + case 383: if (lookahead == '\n') - SKIP(298); + SKIP(382); END_STATE(); - case 300: + case 384: if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '&') - ADVANCE(144); + ADVANCE(234); + if (lookahead == '<') + ADVANCE(338); + if (lookahead == '>') + ADVANCE(339); + if (lookahead == '\\') + SKIP(385); + if (lookahead == '`') + ADVANCE(49); + if (lookahead == '|') + ADVANCE(129); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(384); + END_STATE(); + case 385: + if (lookahead == '\n') + SKIP(384); + END_STATE(); + case 386: + if (lookahead == '\n') + ADVANCE(240); + if (lookahead == '#') + ADVANCE(134); + if (lookahead == '&') + ADVANCE(8); if (lookahead == ')') - ADVANCE(106); + ADVANCE(15); + if (lookahead == ';') + ADVANCE(26); if (lookahead == '<') - ADVANCE(254); + ADVANCE(338); if (lookahead == '>') - ADVANCE(255); + ADVANCE(339); if (lookahead == '\\') - SKIP(301); + SKIP(387); + if (lookahead == 'e') + ADVANCE(366); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(300); + SKIP(386); END_STATE(); - case 301: + case 387: if (lookahead == '\n') - SKIP(300); + SKIP(386); END_STATE(); - case 302: + case 388: if (lookahead == '#') - ADVANCE(21); - if (lookahead == '&') - ADVANCE(144); - if (lookahead == '<') - ADVANCE(254); - if (lookahead == '>') - ADVANCE(255); - if (lookahead == '\\') - SKIP(303); - if (lookahead == '`') - ADVANCE(19); - if (lookahead == '|') - ADVANCE(133); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(302); - END_STATE(); - case 303: - if (lookahead == '\n') - SKIP(302); - END_STATE(); - case 304: - if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') - ADVANCE(305); + ADVANCE(389); if (lookahead == '\\') - SKIP(306); + SKIP(390); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(304); + SKIP(388); END_STATE(); - case 305: + case 389: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead == '{') ADVANCE(6); END_STATE(); - case 306: + case 390: if (lookahead == '\n') - SKIP(304); + SKIP(388); END_STATE(); - case 307: + case 391: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == '<') - ADVANCE(158); + ADVANCE(242); if (lookahead == '>') - ADVANCE(159); + ADVANCE(243); if (lookahead == '[') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\\') - ADVANCE(308); + ADVANCE(392); if (lookahead == ']') - ADVANCE(112); + ADVANCE(208); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(307); + SKIP(391); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 308: + case 392: if (lookahead == '\n') - SKIP(307); + SKIP(391); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 309: + case 393: if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '+') - ADVANCE(107); + ADVANCE(17); if (lookahead == '=') - ADVANCE(109); + ADVANCE(205); if (lookahead == '\\') - SKIP(310); + SKIP(394); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(309); + SKIP(393); END_STATE(); - case 310: + case 394: if (lookahead == '\n') - SKIP(309); + SKIP(393); END_STATE(); - case 311: + case 395: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == ')') - ADVANCE(106); + ADVANCE(15); if (lookahead == '<') - ADVANCE(158); + ADVANCE(242); if (lookahead == '>') - ADVANCE(159); + ADVANCE(243); if (lookahead == '[') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\\') - ADVANCE(312); + ADVANCE(396); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(311); + SKIP(395); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 312: + case 396: if (lookahead == '\n') - SKIP(311); + SKIP(395); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 313: + case 397: if (lookahead == '\n') - ADVANCE(154); + ADVANCE(240); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(191); + ADVANCE(271); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == ';') - ADVANCE(156); + ADVANCE(26); if (lookahead == '<') - ADVANCE(158); + ADVANCE(242); if (lookahead == '>') - ADVANCE(159); + ADVANCE(243); if (lookahead == '[') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\\') - ADVANCE(314); + ADVANCE(398); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(313); + SKIP(397); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 314: + case 398: if (lookahead == '\n') - SKIP(313); + SKIP(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 315: + case 399: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(22); + ADVANCE(135); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == '(') - ADVANCE(27); + ADVANCE(14); if (lookahead == '<') - ADVANCE(28); + ADVANCE(136); if (lookahead == '>') - ADVANCE(31); + ADVANCE(37); if (lookahead == '[') - ADVANCE(35); + ADVANCE(43); if (lookahead == '\\') - ADVANCE(316); + ADVANCE(400); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == 'c') - ADVANCE(41); + ADVANCE(141); if (lookahead == 'd') - ADVANCE(45); + ADVANCE(145); if (lookahead == 'e') - ADVANCE(52); + ADVANCE(152); if (lookahead == 'f') - ADVANCE(276); + ADVANCE(357); if (lookahead == 'i') - ADVANCE(68); + ADVANCE(168); if (lookahead == 'l') - ADVANCE(70); + ADVANCE(170); if (lookahead == 'r') - ADVANCE(75); + ADVANCE(175); if (lookahead == 't') - ADVANCE(83); + ADVANCE(183); if (lookahead == 'u') - ADVANCE(90); + ADVANCE(190); if (lookahead == 'w') - ADVANCE(98); + ADVANCE(198); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(315); + SKIP(399); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 316: + case 400: if (lookahead == '\n') - SKIP(315); + SKIP(399); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 317: + case 401: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == '<') - ADVANCE(158); + ADVANCE(242); if (lookahead == '>') - ADVANCE(159); + ADVANCE(243); if (lookahead == '[') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\\') - ADVANCE(318); + ADVANCE(402); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == 'e') - ADVANCE(319); + ADVANCE(403); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(317); + SKIP(401); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 318: + case 402: if (lookahead == '\n') - SKIP(317); + SKIP(401); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 319: + case 403: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead == 's') - ADVANCE(320); + ADVANCE(404); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6166,14 +6961,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 320: + case 404: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead == 'a') - ADVANCE(321); + ADVANCE(405); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6188,14 +6983,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && lookahead != 'a' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 321: + case 405: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead == 'c') - ADVANCE(322); + ADVANCE(406); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6209,12 +7004,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 322: + case 406: ACCEPT_TOKEN(anon_sym_esac); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6228,280 +7023,307 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 323: + case 407: if (lookahead == '\n') - ADVANCE(154); + ADVANCE(240); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '&') - ADVANCE(163); + ADVANCE(8); if (lookahead == ')') - ADVANCE(106); + ADVANCE(15); if (lookahead == ';') - ADVANCE(156); + ADVANCE(26); if (lookahead == '<') - ADVANCE(281); + ADVANCE(362); if (lookahead == '>') - ADVANCE(255); + ADVANCE(339); if (lookahead == '\\') - SKIP(324); + SKIP(408); if (lookahead == 'e') - ADVANCE(257); + ADVANCE(366); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(323); + SKIP(407); END_STATE(); - case 324: + case 408: if (lookahead == '\n') - SKIP(323); + SKIP(407); END_STATE(); - case 325: + case 409: if (lookahead == '\n') - ADVANCE(154); + ADVANCE(240); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '&') - ADVANCE(163); + ADVANCE(8); if (lookahead == ')') - ADVANCE(106); + ADVANCE(15); if (lookahead == ';') - ADVANCE(156); + ADVANCE(26); if (lookahead == '<') - ADVANCE(281); + ADVANCE(362); if (lookahead == '>') - ADVANCE(255); + ADVANCE(339); if (lookahead == '\\') - SKIP(326); + SKIP(410); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(325); + SKIP(409); END_STATE(); - case 326: + case 410: if (lookahead == '\n') - SKIP(325); + SKIP(409); END_STATE(); - case 327: + case 411: if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '\\') - SKIP(328); + SKIP(412); if (lookahead == '}') - ADVANCE(136); + ADVANCE(132); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(327); + SKIP(411); END_STATE(); - case 328: + case 412: if (lookahead == '\n') - SKIP(327); + SKIP(411); END_STATE(); - case 329: + case 413: if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '&') - ADVANCE(144); + ADVANCE(234); if (lookahead == ')') - ADVANCE(106); + ADVANCE(15); if (lookahead == '<') - ADVANCE(281); + ADVANCE(362); if (lookahead == '>') - ADVANCE(255); + ADVANCE(339); if (lookahead == '\\') - SKIP(330); + SKIP(414); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(329); + SKIP(413); END_STATE(); - case 330: + case 414: if (lookahead == '\n') - SKIP(329); + SKIP(413); END_STATE(); - case 331: + case 415: if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '&') - ADVANCE(144); + ADVANCE(234); + if (lookahead == ')') + ADVANCE(15); if (lookahead == '<') - ADVANCE(281); + ADVANCE(338); if (lookahead == '>') - ADVANCE(255); + ADVANCE(339); if (lookahead == '\\') - SKIP(332); + SKIP(416); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(331); + SKIP(415); END_STATE(); - case 332: + case 416: if (lookahead == '\n') - SKIP(331); + SKIP(415); END_STATE(); - case 333: + case 417: if (lookahead == '#') - ADVANCE(21); - if (lookahead == ')') - ADVANCE(106); - if (lookahead == '\\') - SKIP(334); - if (lookahead == '|') - ADVANCE(139); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(333); - END_STATE(); - case 334: - if (lookahead == '\n') - SKIP(333); - END_STATE(); - case 335: - if (lookahead == '\n') - ADVANCE(154); - if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '&') - ADVANCE(155); + ADVANCE(234); + if (lookahead == '<') + ADVANCE(362); + if (lookahead == '>') + ADVANCE(339); + if (lookahead == '\\') + SKIP(418); + if (lookahead == '`') + ADVANCE(49); + if (lookahead == '|') + ADVANCE(129); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(417); + END_STATE(); + case 418: + if (lookahead == '\n') + SKIP(417); + END_STATE(); + case 419: + if (lookahead == '#') + ADVANCE(134); + if (lookahead == ')') + ADVANCE(15); + if (lookahead == '\\') + SKIP(420); + if (lookahead == '|') + ADVANCE(230); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(419); + END_STATE(); + case 420: + if (lookahead == '\n') + SKIP(419); + END_STATE(); + case 421: + if (lookahead == '\n') + ADVANCE(240); + if (lookahead == '#') + ADVANCE(134); + if (lookahead == '&') + ADVANCE(241); if (lookahead == ';') - ADVANCE(156); + ADVANCE(26); if (lookahead == '\\') - SKIP(336); + SKIP(422); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(335); + SKIP(421); END_STATE(); - case 336: + case 422: if (lookahead == '\n') - SKIP(335); + SKIP(421); END_STATE(); - case 337: + case 423: if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '&') - ADVANCE(144); + ADVANCE(234); if (lookahead == ')') - ADVANCE(106); + ADVANCE(15); if (lookahead == '<') - ADVANCE(281); + ADVANCE(362); if (lookahead == '>') - ADVANCE(255); + ADVANCE(339); if (lookahead == '\\') - SKIP(338); + SKIP(424); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(337); + SKIP(423); END_STATE(); - case 338: + case 424: if (lookahead == '\n') - SKIP(337); + SKIP(423); END_STATE(); - case 339: + case 425: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(22); + ADVANCE(135); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == '(') - ADVANCE(27); + ADVANCE(14); if (lookahead == ';') - ADVANCE(180); + ADVANCE(333); if (lookahead == '<') - ADVANCE(28); + ADVANCE(136); if (lookahead == '>') - ADVANCE(31); + ADVANCE(37); if (lookahead == '[') - ADVANCE(35); + ADVANCE(43); if (lookahead == '\\') - ADVANCE(340); + ADVANCE(426); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == 'c') - ADVANCE(41); + ADVANCE(141); if (lookahead == 'd') - ADVANCE(45); + ADVANCE(145); if (lookahead == 'e') - ADVANCE(341); + ADVANCE(427); if (lookahead == 'f') - ADVANCE(58); + ADVANCE(158); if (lookahead == 'i') - ADVANCE(68); + ADVANCE(168); if (lookahead == 'l') - ADVANCE(70); + ADVANCE(170); if (lookahead == 'r') - ADVANCE(75); + ADVANCE(175); if (lookahead == 't') - ADVANCE(83); + ADVANCE(183); if (lookahead == 'u') - ADVANCE(90); + ADVANCE(190); if (lookahead == 'w') - ADVANCE(98); + ADVANCE(198); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(339); + SKIP(425); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 340: + case 426: if (lookahead == '\n') - SKIP(339); + SKIP(425); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 341: + case 427: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead == 's') - ADVANCE(320); + ADVANCE(404); if (lookahead == 'x') - ADVANCE(53); + ADVANCE(153); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6515,142 +7337,142 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 342: + case 428: if (lookahead == '\n') - ADVANCE(154); + ADVANCE(240); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '&') - ADVANCE(155); + ADVANCE(241); if (lookahead == ')') - ADVANCE(106); + ADVANCE(15); if (lookahead == ';') - ADVANCE(156); + ADVANCE(26); if (lookahead == '\\') - SKIP(343); + SKIP(429); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(342); + SKIP(428); END_STATE(); - case 343: + case 429: if (lookahead == '\n') - SKIP(342); + SKIP(428); END_STATE(); - case 344: + case 430: if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '&') - ADVANCE(104); + ADVANCE(204); if (lookahead == ')') - ADVANCE(106); + ADVANCE(15); if (lookahead == '\\') - SKIP(345); + SKIP(431); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(344); + SKIP(430); END_STATE(); - case 345: + case 431: if (lookahead == '\n') - SKIP(344); + SKIP(430); END_STATE(); - case 346: + case 432: if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '&') - ADVANCE(104); + ADVANCE(204); if (lookahead == '\\') - SKIP(347); + SKIP(433); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(346); + SKIP(432); END_STATE(); - case 347: + case 433: if (lookahead == '\n') - SKIP(346); + SKIP(432); END_STATE(); - case 348: + case 434: if (lookahead == '\n') - ADVANCE(154); + ADVANCE(240); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(155); + ADVANCE(241); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == ';') - ADVANCE(156); + ADVANCE(26); if (lookahead == '<') - ADVANCE(158); + ADVANCE(242); if (lookahead == '>') - ADVANCE(159); + ADVANCE(243); if (lookahead == '[') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\\') - ADVANCE(349); + ADVANCE(435); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == 'e') - ADVANCE(350); + ADVANCE(436); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(348); + SKIP(434); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(161); + ADVANCE(245); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 349: + case 435: if (lookahead == '\n') - SKIP(348); + SKIP(434); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 350: + case 436: ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead == 's') - ADVANCE(351); + ADVANCE(437); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(161); + ADVANCE(245); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6663,19 +7485,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < 'A' || lookahead > ']') && (lookahead < '_' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 351: + case 437: ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead == 'a') - ADVANCE(352); + ADVANCE(438); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(161); + ADVANCE(245); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6688,19 +7510,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < 'A' || lookahead > ']') && (lookahead < '_' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 352: + case 438: ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (lookahead == 'c') - ADVANCE(353); + ADVANCE(439); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(161); + ADVANCE(245); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6713,17 +7535,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < 'A' || lookahead > ']') && (lookahead < '_' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 353: + case 439: ACCEPT_TOKEN(anon_sym_esac); if (lookahead == '\\') - ADVANCE(39); + ADVANCE(139); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(161); + ADVANCE(245); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6736,252 +7558,252 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < 'A' || lookahead > ']') && (lookahead < '_' || lookahead > '}')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 354: + case 440: if (lookahead == '\n') - ADVANCE(154); + ADVANCE(240); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(163); + ADVANCE(8); if (lookahead == '\'') - ADVANCE(25); + ADVANCE(12); if (lookahead == ';') - ADVANCE(156); - if (lookahead == '<') - ADVANCE(145); - if (lookahead == '=') - ADVANCE(149); - if (lookahead == '>') - ADVANCE(31); - if (lookahead == '[') - ADVANCE(40); - if (lookahead == '\\') - ADVANCE(355); - if (lookahead == ']') - ADVANCE(40); - if (lookahead == '`') - ADVANCE(19); - if (lookahead == 'e') - ADVANCE(319); - if (lookahead == '{') - ADVANCE(40); - if (lookahead == '|') - ADVANCE(133); - if (lookahead == '}') - ADVANCE(40); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(354); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(38); - END_STATE(); - case 355: - if (lookahead == '\n') - SKIP(354); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(38); - END_STATE(); - case 356: - if (lookahead == '\n') - ADVANCE(154); - if (lookahead == '\"') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '$') - ADVANCE(4); - if (lookahead == '&') - ADVANCE(163); - if (lookahead == '\'') - ADVANCE(25); - if (lookahead == '(') - ADVANCE(27); - if (lookahead == ';') - ADVANCE(156); - if (lookahead == '<') - ADVANCE(145); - if (lookahead == '=') - ADVANCE(149); - if (lookahead == '>') - ADVANCE(31); - if (lookahead == '[') - ADVANCE(40); - if (lookahead == '\\') - ADVANCE(357); - if (lookahead == ']') - ADVANCE(40); - if (lookahead == '`') - ADVANCE(19); - if (lookahead == 'e') - ADVANCE(319); - if (lookahead == '{') - ADVANCE(40); - if (lookahead == '|') - ADVANCE(133); - if (lookahead == '}') - ADVANCE(40); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(356); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(38); - END_STATE(); - case 357: - if (lookahead == '\n') - SKIP(356); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(38); - END_STATE(); - case 358: - if (lookahead == '\n') - ADVANCE(154); - if (lookahead == '\"') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '$') - ADVANCE(4); - if (lookahead == '&') - ADVANCE(163); - if (lookahead == '\'') - ADVANCE(25); - if (lookahead == ';') - ADVANCE(156); + ADVANCE(26); if (lookahead == '<') ADVANCE(28); + if (lookahead == '=') + ADVANCE(235); if (lookahead == '>') - ADVANCE(31); + ADVANCE(37); if (lookahead == '[') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\\') - ADVANCE(359); + ADVANCE(441); if (lookahead == ']') - ADVANCE(40); + ADVANCE(140); if (lookahead == '`') - ADVANCE(19); + ADVANCE(49); if (lookahead == 'e') - ADVANCE(319); + ADVANCE(403); if (lookahead == '{') - ADVANCE(40); + ADVANCE(140); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '}') - ADVANCE(40); + ADVANCE(140); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(358); + SKIP(440); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 359: + case 441: if (lookahead == '\n') - SKIP(358); + SKIP(440); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(38); + ADVANCE(138); END_STATE(); - case 360: + case 442: if (lookahead == '\n') - ADVANCE(154); + ADVANCE(240); + if (lookahead == '\"') + ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); + if (lookahead == '$') + ADVANCE(4); if (lookahead == '&') - ADVANCE(163); + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(12); + if (lookahead == '(') + ADVANCE(14); if (lookahead == ';') - ADVANCE(156); + ADVANCE(26); if (lookahead == '<') - ADVANCE(254); + ADVANCE(28); + if (lookahead == '=') + ADVANCE(235); if (lookahead == '>') - ADVANCE(255); + ADVANCE(37); + if (lookahead == '[') + ADVANCE(140); if (lookahead == '\\') - SKIP(361); + ADVANCE(443); + if (lookahead == ']') + ADVANCE(140); + if (lookahead == '`') + ADVANCE(49); if (lookahead == 'e') - ADVANCE(257); + ADVANCE(403); + if (lookahead == '{') + ADVANCE(140); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); + if (lookahead == '}') + ADVANCE(140); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(360); + SKIP(442); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(138); END_STATE(); - case 361: + case 443: if (lookahead == '\n') - SKIP(360); + SKIP(442); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(138); END_STATE(); - case 362: + case 444: if (lookahead == '\n') - ADVANCE(154); + ADVANCE(240); + if (lookahead == '\"') + ADVANCE(2); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); + if (lookahead == '$') + ADVANCE(4); if (lookahead == '&') - ADVANCE(163); + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(12); if (lookahead == ';') - ADVANCE(156); + ADVANCE(26); if (lookahead == '<') - ADVANCE(281); + ADVANCE(136); if (lookahead == '>') - ADVANCE(255); + ADVANCE(37); + if (lookahead == '[') + ADVANCE(140); if (lookahead == '\\') - SKIP(363); + ADVANCE(445); + if (lookahead == ']') + ADVANCE(140); + if (lookahead == '`') + ADVANCE(49); if (lookahead == 'e') - ADVANCE(257); + ADVANCE(403); + if (lookahead == '{') + ADVANCE(140); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); + if (lookahead == '}') + ADVANCE(140); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(362); + SKIP(444); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(138); END_STATE(); - case 363: + case 445: if (lookahead == '\n') - SKIP(362); + SKIP(444); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(138); END_STATE(); - case 364: + case 446: if (lookahead == '\n') - ADVANCE(154); + ADVANCE(240); if (lookahead == '#') - ADVANCE(21); + ADVANCE(134); if (lookahead == '&') - ADVANCE(155); + ADVANCE(8); if (lookahead == ';') - ADVANCE(156); + ADVANCE(26); + if (lookahead == '<') + ADVANCE(338); + if (lookahead == '>') + ADVANCE(339); if (lookahead == '\\') - SKIP(365); + SKIP(447); if (lookahead == 'e') - ADVANCE(257); + ADVANCE(366); if (lookahead == '|') - ADVANCE(133); + ADVANCE(129); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(364); + SKIP(446); END_STATE(); - case 365: + case 447: if (lookahead == '\n') - SKIP(364); + SKIP(446); + END_STATE(); + case 448: + if (lookahead == '\n') + ADVANCE(240); + if (lookahead == '#') + ADVANCE(134); + if (lookahead == '&') + ADVANCE(8); + if (lookahead == ';') + ADVANCE(26); + if (lookahead == '<') + ADVANCE(362); + if (lookahead == '>') + ADVANCE(339); + if (lookahead == '\\') + SKIP(449); + if (lookahead == 'e') + ADVANCE(366); + if (lookahead == '|') + ADVANCE(129); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(448); + END_STATE(); + case 449: + if (lookahead == '\n') + SKIP(448); + END_STATE(); + case 450: + if (lookahead == '\n') + ADVANCE(240); + if (lookahead == '#') + ADVANCE(134); + if (lookahead == '&') + ADVANCE(241); + if (lookahead == ';') + ADVANCE(26); + if (lookahead == '\\') + SKIP(451); + if (lookahead == 'e') + ADVANCE(366); + if (lookahead == '|') + ADVANCE(129); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(450); + END_STATE(); + case 451: + if (lookahead == '\n') + SKIP(450); END_STATE(); default: return false; @@ -6990,4644 +7812,2933 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 20, .external_lex_state = 2}, - [2] = {.lex_state = 20}, - [3] = {.lex_state = 103}, - [4] = {.lex_state = 137}, - [5] = {.lex_state = 20, .external_lex_state = 2}, - [6] = {.lex_state = 20, .external_lex_state = 2}, - [7] = {.lex_state = 141}, - [8] = {.lex_state = 141}, - [9] = {.lex_state = 20, .external_lex_state = 2}, - [10] = {.lex_state = 143}, - [11] = {.lex_state = 143}, - [12] = {.lex_state = 153, .external_lex_state = 3}, - [13] = {.lex_state = 153, .external_lex_state = 4}, - [14] = {.lex_state = 141}, - [15] = {.lex_state = 162, .external_lex_state = 5}, - [16] = {.lex_state = 165}, - [17] = {.lex_state = 170}, - [18] = {.lex_state = 162, .external_lex_state = 5}, - [19] = {.lex_state = 175, .external_lex_state = 6}, - [20] = {.lex_state = 20, .external_lex_state = 2}, - [21] = {.lex_state = 20, .external_lex_state = 2}, - [22] = {.lex_state = 20, .external_lex_state = 2}, - [23] = {.lex_state = 177, .external_lex_state = 5}, - [24] = {.lex_state = 20}, - [25] = {.lex_state = 179, .external_lex_state = 2}, - [26] = {.lex_state = 153, .external_lex_state = 4}, - [27] = {.lex_state = 162, .external_lex_state = 7}, - [28] = {.lex_state = 182, .external_lex_state = 8}, - [29] = {.lex_state = 103}, - [30] = {.lex_state = 141, .external_lex_state = 2}, - [31] = {.lex_state = 184, .external_lex_state = 7}, - [32] = {.lex_state = 20, .external_lex_state = 2}, - [33] = {.lex_state = 141, .external_lex_state = 2}, - [34] = {.lex_state = 141}, - [35] = {.lex_state = 141}, - [36] = {.lex_state = 186, .external_lex_state = 9}, - [37] = {.lex_state = 188, .external_lex_state = 8}, - [38] = {.lex_state = 190, .external_lex_state = 4}, - [39] = {.lex_state = 103}, - [40] = {.lex_state = 153, .external_lex_state = 4}, - [41] = {.lex_state = 182, .external_lex_state = 8}, - [42] = {.lex_state = 103}, - [43] = {.lex_state = 190, .external_lex_state = 10}, - [44] = {.lex_state = 165}, - [45] = {.lex_state = 170}, - [46] = {.lex_state = 190, .external_lex_state = 10}, - [47] = {.lex_state = 175, .external_lex_state = 6}, - [48] = {.lex_state = 20, .external_lex_state = 2}, - [49] = {.lex_state = 20, .external_lex_state = 2}, - [50] = {.lex_state = 20, .external_lex_state = 2}, - [51] = {.lex_state = 190, .external_lex_state = 4}, - [52] = {.lex_state = 103}, - [53] = {.lex_state = 103}, - [54] = {.lex_state = 20, .external_lex_state = 2}, - [55] = {.lex_state = 141}, - [56] = {.lex_state = 143}, - [57] = {.lex_state = 143}, - [58] = {.lex_state = 193, .external_lex_state = 3}, - [59] = {.lex_state = 193, .external_lex_state = 4}, - [60] = {.lex_state = 184, .external_lex_state = 5}, - [61] = {.lex_state = 165}, - [62] = {.lex_state = 170}, - [63] = {.lex_state = 184, .external_lex_state = 5}, - [64] = {.lex_state = 175, .external_lex_state = 6}, - [65] = {.lex_state = 20, .external_lex_state = 2}, - [66] = {.lex_state = 20, .external_lex_state = 2}, - [67] = {.lex_state = 20, .external_lex_state = 2}, - [68] = {.lex_state = 195, .external_lex_state = 5}, - [69] = {.lex_state = 193, .external_lex_state = 4}, - [70] = {.lex_state = 184, .external_lex_state = 7}, - [71] = {.lex_state = 188, .external_lex_state = 8}, - [72] = {.lex_state = 103}, - [73] = {.lex_state = 20, .external_lex_state = 2}, - [74] = {.lex_state = 141, .external_lex_state = 2}, - [75] = {.lex_state = 197}, - [76] = {.lex_state = 217, .external_lex_state = 11}, - [77] = {.lex_state = 165}, - [78] = {.lex_state = 170}, - [79] = {.lex_state = 217, .external_lex_state = 11}, - [80] = {.lex_state = 175, .external_lex_state = 6}, - [81] = {.lex_state = 20, .external_lex_state = 2}, - [82] = {.lex_state = 20, .external_lex_state = 2}, - [83] = {.lex_state = 20, .external_lex_state = 2}, - [84] = {.lex_state = 217, .external_lex_state = 12}, - [85] = {.lex_state = 217, .external_lex_state = 12}, - [86] = {.lex_state = 197}, - [87] = {.lex_state = 219, .external_lex_state = 13}, - [88] = {.lex_state = 165}, - [89] = {.lex_state = 170}, - [90] = {.lex_state = 219, .external_lex_state = 13}, - [91] = {.lex_state = 175, .external_lex_state = 6}, - [92] = {.lex_state = 20, .external_lex_state = 2}, - [93] = {.lex_state = 20, .external_lex_state = 2}, - [94] = {.lex_state = 20, .external_lex_state = 2}, - [95] = {.lex_state = 219}, - [96] = {.lex_state = 219}, - [97] = {.lex_state = 103}, - [98] = {.lex_state = 153, .external_lex_state = 14}, - [99] = {.lex_state = 165}, - [100] = {.lex_state = 170}, - [101] = {.lex_state = 153, .external_lex_state = 14}, - [102] = {.lex_state = 175, .external_lex_state = 6}, - [103] = {.lex_state = 20, .external_lex_state = 2}, - [104] = {.lex_state = 20, .external_lex_state = 2}, - [105] = {.lex_state = 20, .external_lex_state = 2}, - [106] = {.lex_state = 193, .external_lex_state = 3}, - [107] = {.lex_state = 193, .external_lex_state = 3}, - [108] = {.lex_state = 103}, - [109] = {.lex_state = 153, .external_lex_state = 3}, - [110] = {.lex_state = 153, .external_lex_state = 10}, - [111] = {.lex_state = 165}, - [112] = {.lex_state = 170}, - [113] = {.lex_state = 153, .external_lex_state = 10}, - [114] = {.lex_state = 175, .external_lex_state = 6}, - [115] = {.lex_state = 20, .external_lex_state = 2}, - [116] = {.lex_state = 20, .external_lex_state = 2}, - [117] = {.lex_state = 20, .external_lex_state = 2}, - [118] = {.lex_state = 193, .external_lex_state = 4}, - [119] = {.lex_state = 193, .external_lex_state = 4}, - [120] = {.lex_state = 153, .external_lex_state = 4}, - [121] = {.lex_state = 141, .external_lex_state = 15}, - [122] = {.lex_state = 165}, - [123] = {.lex_state = 170}, - [124] = {.lex_state = 141, .external_lex_state = 15}, - [125] = {.lex_state = 175, .external_lex_state = 6}, - [126] = {.lex_state = 20, .external_lex_state = 2}, - [127] = {.lex_state = 20, .external_lex_state = 2}, - [128] = {.lex_state = 20, .external_lex_state = 2}, - [129] = {.lex_state = 141, .external_lex_state = 2}, - [130] = {.lex_state = 141}, - [131] = {.lex_state = 162, .external_lex_state = 5}, - [132] = {.lex_state = 162, .external_lex_state = 5}, - [133] = {.lex_state = 223}, - [134] = {.lex_state = 165, .external_lex_state = 13}, - [135] = {.lex_state = 175, .external_lex_state = 6}, - [136] = {.lex_state = 20, .external_lex_state = 2}, - [137] = {.lex_state = 20, .external_lex_state = 2}, - [138] = {.lex_state = 165}, - [139] = {.lex_state = 162, .external_lex_state = 5}, - [140] = {.lex_state = 162, .external_lex_state = 5}, - [141] = {.lex_state = 162, .external_lex_state = 5}, - [142] = {.lex_state = 103}, - [143] = {.lex_state = 226, .external_lex_state = 16}, - [144] = {.lex_state = 235, .external_lex_state = 6}, - [145] = {.lex_state = 226, .external_lex_state = 16}, - [146] = {.lex_state = 226, .external_lex_state = 16}, - [147] = {.lex_state = 103}, - [148] = {.lex_state = 137}, - [149] = {.lex_state = 20, .external_lex_state = 2}, - [150] = {.lex_state = 20, .external_lex_state = 2}, - [151] = {.lex_state = 141}, - [152] = {.lex_state = 141}, - [153] = {.lex_state = 20, .external_lex_state = 2}, - [154] = {.lex_state = 143}, - [155] = {.lex_state = 143}, - [156] = {.lex_state = 237, .external_lex_state = 6}, - [157] = {.lex_state = 237}, - [158] = {.lex_state = 143, .external_lex_state = 17}, - [159] = {.lex_state = 165}, - [160] = {.lex_state = 170}, - [161] = {.lex_state = 143, .external_lex_state = 17}, - [162] = {.lex_state = 175, .external_lex_state = 6}, - [163] = {.lex_state = 20, .external_lex_state = 2}, - [164] = {.lex_state = 20, .external_lex_state = 2}, - [165] = {.lex_state = 20, .external_lex_state = 2}, - [166] = {.lex_state = 239, .external_lex_state = 17}, - [167] = {.lex_state = 103}, - [168] = {.lex_state = 143, .external_lex_state = 18}, - [169] = {.lex_state = 241, .external_lex_state = 2}, - [170] = {.lex_state = 103}, - [171] = {.lex_state = 143, .external_lex_state = 18}, - [172] = {.lex_state = 141, .external_lex_state = 2}, - [173] = {.lex_state = 103}, - [174] = {.lex_state = 20, .external_lex_state = 2}, - [175] = {.lex_state = 141}, - [176] = {.lex_state = 143}, - [177] = {.lex_state = 143}, - [178] = {.lex_state = 243, .external_lex_state = 6}, - [179] = {.lex_state = 237}, - [180] = {.lex_state = 245, .external_lex_state = 17}, - [181] = {.lex_state = 165}, - [182] = {.lex_state = 170}, - [183] = {.lex_state = 245, .external_lex_state = 17}, - [184] = {.lex_state = 175, .external_lex_state = 6}, - [185] = {.lex_state = 20, .external_lex_state = 2}, - [186] = {.lex_state = 20, .external_lex_state = 2}, - [187] = {.lex_state = 20, .external_lex_state = 2}, - [188] = {.lex_state = 247, .external_lex_state = 17}, - [189] = {.lex_state = 103}, - [190] = {.lex_state = 245, .external_lex_state = 18}, - [191] = {.lex_state = 249, .external_lex_state = 2}, - [192] = {.lex_state = 103}, - [193] = {.lex_state = 141, .external_lex_state = 2}, - [194] = {.lex_state = 103}, - [195] = {.lex_state = 241, .external_lex_state = 2}, - [196] = {.lex_state = 103}, - [197] = {.lex_state = 20, .external_lex_state = 2}, - [198] = {.lex_state = 179, .external_lex_state = 2}, - [199] = {.lex_state = 20, .external_lex_state = 2}, - [200] = {.lex_state = 20}, - [201] = {.lex_state = 197}, - [202] = {.lex_state = 141}, - [203] = {.lex_state = 251, .external_lex_state = 19}, - [204] = {.lex_state = 141}, - [205] = {.lex_state = 162, .external_lex_state = 5}, - [206] = {.lex_state = 162, .external_lex_state = 5}, - [207] = {.lex_state = 253, .external_lex_state = 7}, - [208] = {.lex_state = 184, .external_lex_state = 7}, - [209] = {.lex_state = 258, .external_lex_state = 7}, - [210] = {.lex_state = 162, .external_lex_state = 7}, - [211] = {.lex_state = 20, .external_lex_state = 2}, - [212] = {.lex_state = 103}, - [213] = {.lex_state = 162, .external_lex_state = 7}, - [214] = {.lex_state = 103}, - [215] = {.lex_state = 141, .external_lex_state = 2}, - [216] = {.lex_state = 141, .external_lex_state = 15}, - [217] = {.lex_state = 141, .external_lex_state = 15}, - [218] = {.lex_state = 141, .external_lex_state = 2}, - [219] = {.lex_state = 260, .external_lex_state = 11}, - [220] = {.lex_state = 165}, - [221] = {.lex_state = 170}, - [222] = {.lex_state = 260, .external_lex_state = 11}, - [223] = {.lex_state = 175, .external_lex_state = 6}, - [224] = {.lex_state = 20, .external_lex_state = 2}, - [225] = {.lex_state = 20, .external_lex_state = 2}, - [226] = {.lex_state = 20, .external_lex_state = 2}, - [227] = {.lex_state = 260, .external_lex_state = 11}, - [228] = {.lex_state = 188, .external_lex_state = 8}, - [229] = {.lex_state = 241}, - [230] = {.lex_state = 182, .external_lex_state = 20}, - [231] = {.lex_state = 165}, - [232] = {.lex_state = 170}, - [233] = {.lex_state = 182, .external_lex_state = 20}, - [234] = {.lex_state = 175, .external_lex_state = 6}, - [235] = {.lex_state = 20, .external_lex_state = 2}, - [236] = {.lex_state = 20, .external_lex_state = 2}, - [237] = {.lex_state = 20, .external_lex_state = 2}, - [238] = {.lex_state = 141}, - [239] = {.lex_state = 103}, - [240] = {.lex_state = 262, .external_lex_state = 2}, - [241] = {.lex_state = 258, .external_lex_state = 7}, - [242] = {.lex_state = 103}, - [243] = {.lex_state = 268, .external_lex_state = 2}, - [244] = {.lex_state = 141}, - [245] = {.lex_state = 190, .external_lex_state = 4}, - [246] = {.lex_state = 103}, - [247] = {.lex_state = 190, .external_lex_state = 10}, - [248] = {.lex_state = 190, .external_lex_state = 10}, - [249] = {.lex_state = 165}, - [250] = {.lex_state = 190, .external_lex_state = 10}, - [251] = {.lex_state = 190, .external_lex_state = 10}, - [252] = {.lex_state = 190, .external_lex_state = 10}, - [253] = {.lex_state = 190, .external_lex_state = 4}, - [254] = {.lex_state = 103}, - [255] = {.lex_state = 103}, - [256] = {.lex_state = 226, .external_lex_state = 16}, - [257] = {.lex_state = 235, .external_lex_state = 6}, - [258] = {.lex_state = 226, .external_lex_state = 16}, - [259] = {.lex_state = 226, .external_lex_state = 16}, - [260] = {.lex_state = 103}, - [261] = {.lex_state = 241, .external_lex_state = 2}, - [262] = {.lex_state = 103}, - [263] = {.lex_state = 249, .external_lex_state = 2}, - [264] = {.lex_state = 103}, - [265] = {.lex_state = 241, .external_lex_state = 2}, - [266] = {.lex_state = 103}, - [267] = {.lex_state = 278, .external_lex_state = 21}, - [268] = {.lex_state = 280, .external_lex_state = 7}, - [269] = {.lex_state = 186, .external_lex_state = 9}, - [270] = {.lex_state = 103}, - [271] = {.lex_state = 103}, - [272] = {.lex_state = 217, .external_lex_state = 12}, - [273] = {.lex_state = 219}, - [274] = {.lex_state = 103}, - [275] = {.lex_state = 193, .external_lex_state = 14}, - [276] = {.lex_state = 165}, - [277] = {.lex_state = 170}, - [278] = {.lex_state = 193, .external_lex_state = 14}, - [279] = {.lex_state = 175, .external_lex_state = 6}, - [280] = {.lex_state = 20, .external_lex_state = 2}, - [281] = {.lex_state = 20, .external_lex_state = 2}, - [282] = {.lex_state = 20, .external_lex_state = 2}, - [283] = {.lex_state = 103}, - [284] = {.lex_state = 193, .external_lex_state = 3}, - [285] = {.lex_state = 193, .external_lex_state = 10}, - [286] = {.lex_state = 165}, - [287] = {.lex_state = 170}, - [288] = {.lex_state = 193, .external_lex_state = 10}, - [289] = {.lex_state = 175, .external_lex_state = 6}, - [290] = {.lex_state = 20, .external_lex_state = 2}, - [291] = {.lex_state = 20, .external_lex_state = 2}, - [292] = {.lex_state = 20, .external_lex_state = 2}, - [293] = {.lex_state = 193, .external_lex_state = 4}, - [294] = {.lex_state = 141}, - [295] = {.lex_state = 184, .external_lex_state = 5}, - [296] = {.lex_state = 184, .external_lex_state = 5}, - [297] = {.lex_state = 165}, - [298] = {.lex_state = 184, .external_lex_state = 5}, - [299] = {.lex_state = 184, .external_lex_state = 5}, - [300] = {.lex_state = 184, .external_lex_state = 5}, - [301] = {.lex_state = 103}, - [302] = {.lex_state = 226, .external_lex_state = 16}, - [303] = {.lex_state = 235, .external_lex_state = 6}, - [304] = {.lex_state = 226, .external_lex_state = 16}, - [305] = {.lex_state = 226, .external_lex_state = 16}, - [306] = {.lex_state = 103}, - [307] = {.lex_state = 241, .external_lex_state = 2}, - [308] = {.lex_state = 103}, - [309] = {.lex_state = 249, .external_lex_state = 2}, - [310] = {.lex_state = 103}, - [311] = {.lex_state = 241, .external_lex_state = 2}, - [312] = {.lex_state = 103}, - [313] = {.lex_state = 20, .external_lex_state = 2}, - [314] = {.lex_state = 283, .external_lex_state = 4}, - [315] = {.lex_state = 285, .external_lex_state = 2}, - [316] = {.lex_state = 20, .external_lex_state = 2}, - [317] = {.lex_state = 20}, - [318] = {.lex_state = 197}, - [319] = {.lex_state = 141}, - [320] = {.lex_state = 141}, - [321] = {.lex_state = 184, .external_lex_state = 5}, - [322] = {.lex_state = 184, .external_lex_state = 5}, - [323] = {.lex_state = 287, .external_lex_state = 7}, - [324] = {.lex_state = 184, .external_lex_state = 7}, - [325] = {.lex_state = 193, .external_lex_state = 4}, - [326] = {.lex_state = 188, .external_lex_state = 8}, - [327] = {.lex_state = 20, .external_lex_state = 2}, - [328] = {.lex_state = 184, .external_lex_state = 7}, - [329] = {.lex_state = 217, .external_lex_state = 11}, - [330] = {.lex_state = 217, .external_lex_state = 11}, - [331] = {.lex_state = 217, .external_lex_state = 12}, - [332] = {.lex_state = 141}, - [333] = {.lex_state = 217, .external_lex_state = 11}, - [334] = {.lex_state = 217, .external_lex_state = 11}, - [335] = {.lex_state = 165}, - [336] = {.lex_state = 217, .external_lex_state = 11}, - [337] = {.lex_state = 217, .external_lex_state = 11}, - [338] = {.lex_state = 217, .external_lex_state = 11}, - [339] = {.lex_state = 103}, - [340] = {.lex_state = 226, .external_lex_state = 16}, - [341] = {.lex_state = 235, .external_lex_state = 6}, - [342] = {.lex_state = 226, .external_lex_state = 16}, - [343] = {.lex_state = 226, .external_lex_state = 16}, - [344] = {.lex_state = 103}, - [345] = {.lex_state = 241, .external_lex_state = 2}, - [346] = {.lex_state = 103}, - [347] = {.lex_state = 249, .external_lex_state = 2}, - [348] = {.lex_state = 103}, - [349] = {.lex_state = 241, .external_lex_state = 2}, - [350] = {.lex_state = 258, .external_lex_state = 7}, - [351] = {.lex_state = 217, .external_lex_state = 12}, - [352] = {.lex_state = 219, .external_lex_state = 13}, - [353] = {.lex_state = 219, .external_lex_state = 13}, - [354] = {.lex_state = 219}, - [355] = {.lex_state = 141}, - [356] = {.lex_state = 219, .external_lex_state = 13}, - [357] = {.lex_state = 219, .external_lex_state = 13}, - [358] = {.lex_state = 165}, - [359] = {.lex_state = 219, .external_lex_state = 13}, - [360] = {.lex_state = 219, .external_lex_state = 13}, - [361] = {.lex_state = 219, .external_lex_state = 13}, - [362] = {.lex_state = 103}, - [363] = {.lex_state = 226, .external_lex_state = 16}, - [364] = {.lex_state = 235, .external_lex_state = 6}, - [365] = {.lex_state = 226, .external_lex_state = 16}, - [366] = {.lex_state = 226, .external_lex_state = 16}, - [367] = {.lex_state = 103}, - [368] = {.lex_state = 241, .external_lex_state = 2}, - [369] = {.lex_state = 103}, - [370] = {.lex_state = 249, .external_lex_state = 2}, - [371] = {.lex_state = 103}, - [372] = {.lex_state = 241, .external_lex_state = 2}, - [373] = {.lex_state = 219}, - [374] = {.lex_state = 186, .external_lex_state = 9}, - [375] = {.lex_state = 193, .external_lex_state = 3}, - [376] = {.lex_state = 141}, - [377] = {.lex_state = 153, .external_lex_state = 14}, - [378] = {.lex_state = 153, .external_lex_state = 14}, - [379] = {.lex_state = 165}, - [380] = {.lex_state = 153, .external_lex_state = 14}, - [381] = {.lex_state = 153, .external_lex_state = 14}, - [382] = {.lex_state = 153, .external_lex_state = 14}, - [383] = {.lex_state = 103}, - [384] = {.lex_state = 226, .external_lex_state = 16}, - [385] = {.lex_state = 235, .external_lex_state = 6}, - [386] = {.lex_state = 226, .external_lex_state = 16}, - [387] = {.lex_state = 226, .external_lex_state = 16}, - [388] = {.lex_state = 103}, - [389] = {.lex_state = 241, .external_lex_state = 2}, - [390] = {.lex_state = 103}, - [391] = {.lex_state = 249, .external_lex_state = 2}, - [392] = {.lex_state = 103}, - [393] = {.lex_state = 241, .external_lex_state = 2}, - [394] = {.lex_state = 153, .external_lex_state = 3}, - [395] = {.lex_state = 141}, - [396] = {.lex_state = 153, .external_lex_state = 10}, - [397] = {.lex_state = 153, .external_lex_state = 10}, - [398] = {.lex_state = 165}, - [399] = {.lex_state = 153, .external_lex_state = 10}, - [400] = {.lex_state = 153, .external_lex_state = 10}, - [401] = {.lex_state = 153, .external_lex_state = 10}, - [402] = {.lex_state = 103}, - [403] = {.lex_state = 226, .external_lex_state = 16}, - [404] = {.lex_state = 235, .external_lex_state = 6}, - [405] = {.lex_state = 226, .external_lex_state = 16}, - [406] = {.lex_state = 226, .external_lex_state = 16}, - [407] = {.lex_state = 103}, - [408] = {.lex_state = 241, .external_lex_state = 2}, - [409] = {.lex_state = 103}, - [410] = {.lex_state = 249, .external_lex_state = 2}, - [411] = {.lex_state = 103}, - [412] = {.lex_state = 241, .external_lex_state = 2}, - [413] = {.lex_state = 153, .external_lex_state = 4}, - [414] = {.lex_state = 141}, - [415] = {.lex_state = 141, .external_lex_state = 15}, - [416] = {.lex_state = 141, .external_lex_state = 15}, - [417] = {.lex_state = 165}, - [418] = {.lex_state = 141, .external_lex_state = 15}, - [419] = {.lex_state = 141, .external_lex_state = 15}, - [420] = {.lex_state = 141, .external_lex_state = 15}, - [421] = {.lex_state = 103}, - [422] = {.lex_state = 226, .external_lex_state = 16}, - [423] = {.lex_state = 235, .external_lex_state = 6}, - [424] = {.lex_state = 226, .external_lex_state = 16}, - [425] = {.lex_state = 226, .external_lex_state = 16}, - [426] = {.lex_state = 103}, - [427] = {.lex_state = 241, .external_lex_state = 2}, - [428] = {.lex_state = 103}, - [429] = {.lex_state = 249, .external_lex_state = 2}, - [430] = {.lex_state = 103}, - [431] = {.lex_state = 241, .external_lex_state = 2}, - [432] = {.lex_state = 162, .external_lex_state = 5}, - [433] = {.lex_state = 162, .external_lex_state = 5}, - [434] = {.lex_state = 165, .external_lex_state = 13}, - [435] = {.lex_state = 165, .external_lex_state = 13}, - [436] = {.lex_state = 165, .external_lex_state = 13}, - [437] = {.lex_state = 165}, - [438] = {.lex_state = 103}, - [439] = {.lex_state = 226, .external_lex_state = 16}, - [440] = {.lex_state = 235, .external_lex_state = 6}, - [441] = {.lex_state = 226, .external_lex_state = 16}, - [442] = {.lex_state = 226, .external_lex_state = 16}, - [443] = {.lex_state = 103}, - [444] = {.lex_state = 241, .external_lex_state = 2}, - [445] = {.lex_state = 103}, - [446] = {.lex_state = 249, .external_lex_state = 2}, - [447] = {.lex_state = 162, .external_lex_state = 5}, - [448] = {.lex_state = 165}, - [449] = {.lex_state = 141}, - [450] = {.lex_state = 289, .external_lex_state = 16}, - [451] = {.lex_state = 162, .external_lex_state = 5}, - [452] = {.lex_state = 291, .external_lex_state = 16}, - [453] = {.lex_state = 291, .external_lex_state = 22}, - [454] = {.lex_state = 165}, - [455] = {.lex_state = 170}, - [456] = {.lex_state = 291, .external_lex_state = 22}, - [457] = {.lex_state = 175, .external_lex_state = 6}, - [458] = {.lex_state = 293}, - [459] = {.lex_state = 20, .external_lex_state = 2}, - [460] = {.lex_state = 20, .external_lex_state = 2}, - [461] = {.lex_state = 20, .external_lex_state = 2}, - [462] = {.lex_state = 291, .external_lex_state = 16}, - [463] = {.lex_state = 103}, - [464] = {.lex_state = 226, .external_lex_state = 16}, - [465] = {.lex_state = 226, .external_lex_state = 16}, - [466] = {.lex_state = 226, .external_lex_state = 16}, - [467] = {.lex_state = 162, .external_lex_state = 5}, - [468] = {.lex_state = 293}, - [469] = {.lex_state = 291, .external_lex_state = 16}, - [470] = {.lex_state = 162, .external_lex_state = 5}, - [471] = {.lex_state = 293}, - [472] = {.lex_state = 291, .external_lex_state = 16}, - [473] = {.lex_state = 186, .external_lex_state = 9}, - [474] = {.lex_state = 241, .external_lex_state = 2}, - [475] = {.lex_state = 190, .external_lex_state = 4}, - [476] = {.lex_state = 103}, - [477] = {.lex_state = 103}, - [478] = {.lex_state = 190, .external_lex_state = 10}, - [479] = {.lex_state = 190, .external_lex_state = 10}, - [480] = {.lex_state = 190, .external_lex_state = 4}, - [481] = {.lex_state = 103}, - [482] = {.lex_state = 193, .external_lex_state = 4}, - [483] = {.lex_state = 188, .external_lex_state = 8}, - [484] = {.lex_state = 20, .external_lex_state = 2}, - [485] = {.lex_state = 217, .external_lex_state = 12}, - [486] = {.lex_state = 219}, - [487] = {.lex_state = 103}, - [488] = {.lex_state = 237, .external_lex_state = 23}, - [489] = {.lex_state = 165}, - [490] = {.lex_state = 170}, - [491] = {.lex_state = 237, .external_lex_state = 23}, - [492] = {.lex_state = 175, .external_lex_state = 6}, - [493] = {.lex_state = 20, .external_lex_state = 2}, - [494] = {.lex_state = 20, .external_lex_state = 2}, - [495] = {.lex_state = 20, .external_lex_state = 2}, - [496] = {.lex_state = 237, .external_lex_state = 6}, - [497] = {.lex_state = 237, .external_lex_state = 6}, - [498] = {.lex_state = 103}, - [499] = {.lex_state = 237, .external_lex_state = 6}, - [500] = {.lex_state = 237, .external_lex_state = 13}, - [501] = {.lex_state = 165}, - [502] = {.lex_state = 170}, - [503] = {.lex_state = 237, .external_lex_state = 13}, - [504] = {.lex_state = 175, .external_lex_state = 6}, - [505] = {.lex_state = 20, .external_lex_state = 2}, - [506] = {.lex_state = 20, .external_lex_state = 2}, - [507] = {.lex_state = 20, .external_lex_state = 2}, - [508] = {.lex_state = 237}, - [509] = {.lex_state = 237}, - [510] = {.lex_state = 237}, - [511] = {.lex_state = 141}, - [512] = {.lex_state = 143, .external_lex_state = 17}, - [513] = {.lex_state = 143, .external_lex_state = 17}, - [514] = {.lex_state = 165}, - [515] = {.lex_state = 143, .external_lex_state = 17}, - [516] = {.lex_state = 143, .external_lex_state = 17}, - [517] = {.lex_state = 143, .external_lex_state = 17}, - [518] = {.lex_state = 103}, - [519] = {.lex_state = 226, .external_lex_state = 16}, - [520] = {.lex_state = 235, .external_lex_state = 6}, - [521] = {.lex_state = 226, .external_lex_state = 16}, - [522] = {.lex_state = 226, .external_lex_state = 16}, - [523] = {.lex_state = 103}, - [524] = {.lex_state = 241, .external_lex_state = 2}, - [525] = {.lex_state = 103}, - [526] = {.lex_state = 249, .external_lex_state = 2}, - [527] = {.lex_state = 103}, - [528] = {.lex_state = 241, .external_lex_state = 2}, - [529] = {.lex_state = 103}, - [530] = {.lex_state = 20, .external_lex_state = 2}, - [531] = {.lex_state = 162, .external_lex_state = 5}, - [532] = {.lex_state = 20, .external_lex_state = 2}, - [533] = {.lex_state = 20}, - [534] = {.lex_state = 197}, - [535] = {.lex_state = 141}, - [536] = {.lex_state = 251, .external_lex_state = 19}, - [537] = {.lex_state = 141}, - [538] = {.lex_state = 143, .external_lex_state = 17}, - [539] = {.lex_state = 143, .external_lex_state = 17}, - [540] = {.lex_state = 298, .external_lex_state = 18}, - [541] = {.lex_state = 143, .external_lex_state = 18}, - [542] = {.lex_state = 300, .external_lex_state = 18}, - [543] = {.lex_state = 143, .external_lex_state = 18}, - [544] = {.lex_state = 143, .external_lex_state = 18}, - [545] = {.lex_state = 186, .external_lex_state = 9}, - [546] = {.lex_state = 103}, - [547] = {.lex_state = 103}, - [548] = {.lex_state = 217, .external_lex_state = 12}, - [549] = {.lex_state = 219}, - [550] = {.lex_state = 103}, - [551] = {.lex_state = 243, .external_lex_state = 23}, - [552] = {.lex_state = 165}, - [553] = {.lex_state = 170}, - [554] = {.lex_state = 243, .external_lex_state = 23}, - [555] = {.lex_state = 175, .external_lex_state = 6}, - [556] = {.lex_state = 20, .external_lex_state = 2}, - [557] = {.lex_state = 20, .external_lex_state = 2}, - [558] = {.lex_state = 20, .external_lex_state = 2}, - [559] = {.lex_state = 103}, - [560] = {.lex_state = 243, .external_lex_state = 6}, - [561] = {.lex_state = 243, .external_lex_state = 13}, - [562] = {.lex_state = 165}, - [563] = {.lex_state = 170}, - [564] = {.lex_state = 243, .external_lex_state = 13}, - [565] = {.lex_state = 175, .external_lex_state = 6}, - [566] = {.lex_state = 20, .external_lex_state = 2}, - [567] = {.lex_state = 20, .external_lex_state = 2}, - [568] = {.lex_state = 20, .external_lex_state = 2}, - [569] = {.lex_state = 237}, - [570] = {.lex_state = 141}, - [571] = {.lex_state = 245, .external_lex_state = 17}, - [572] = {.lex_state = 245, .external_lex_state = 17}, - [573] = {.lex_state = 165}, - [574] = {.lex_state = 245, .external_lex_state = 17}, - [575] = {.lex_state = 245, .external_lex_state = 17}, - [576] = {.lex_state = 245, .external_lex_state = 17}, - [577] = {.lex_state = 103}, - [578] = {.lex_state = 226, .external_lex_state = 16}, - [579] = {.lex_state = 235, .external_lex_state = 6}, - [580] = {.lex_state = 226, .external_lex_state = 16}, - [581] = {.lex_state = 226, .external_lex_state = 16}, - [582] = {.lex_state = 103}, - [583] = {.lex_state = 241, .external_lex_state = 2}, - [584] = {.lex_state = 103}, - [585] = {.lex_state = 249, .external_lex_state = 2}, - [586] = {.lex_state = 103}, - [587] = {.lex_state = 241, .external_lex_state = 2}, - [588] = {.lex_state = 103}, - [589] = {.lex_state = 20, .external_lex_state = 2}, - [590] = {.lex_state = 20, .external_lex_state = 2}, - [591] = {.lex_state = 20}, - [592] = {.lex_state = 197}, - [593] = {.lex_state = 141}, - [594] = {.lex_state = 141}, - [595] = {.lex_state = 245, .external_lex_state = 17}, - [596] = {.lex_state = 245, .external_lex_state = 17}, - [597] = {.lex_state = 302, .external_lex_state = 18}, - [598] = {.lex_state = 245, .external_lex_state = 18}, - [599] = {.lex_state = 245, .external_lex_state = 18}, - [600] = {.lex_state = 162, .external_lex_state = 5}, - [601] = {.lex_state = 103}, - [602] = {.lex_state = 283, .external_lex_state = 4}, - [603] = {.lex_state = 188, .external_lex_state = 8}, - [604] = {.lex_state = 153, .external_lex_state = 4}, - [605] = {.lex_state = 182, .external_lex_state = 8}, - [606] = {.lex_state = 141}, - [607] = {.lex_state = 162, .external_lex_state = 5}, - [608] = {.lex_state = 162, .external_lex_state = 5}, - [609] = {.lex_state = 184, .external_lex_state = 7}, - [610] = {.lex_state = 258, .external_lex_state = 5}, - [611] = {.lex_state = 165}, - [612] = {.lex_state = 170}, - [613] = {.lex_state = 258, .external_lex_state = 5}, - [614] = {.lex_state = 175, .external_lex_state = 6}, - [615] = {.lex_state = 20, .external_lex_state = 2}, - [616] = {.lex_state = 20, .external_lex_state = 2}, - [617] = {.lex_state = 20, .external_lex_state = 2}, - [618] = {.lex_state = 253, .external_lex_state = 7}, - [619] = {.lex_state = 253, .external_lex_state = 7}, - [620] = {.lex_state = 304, .external_lex_state = 24}, - [621] = {.lex_state = 253, .external_lex_state = 7}, - [622] = {.lex_state = 258, .external_lex_state = 5}, - [623] = {.lex_state = 258, .external_lex_state = 5}, - [624] = {.lex_state = 253, .external_lex_state = 7}, - [625] = {.lex_state = 258, .external_lex_state = 7}, - [626] = {.lex_state = 258, .external_lex_state = 7}, - [627] = {.lex_state = 162, .external_lex_state = 7}, - [628] = {.lex_state = 186, .external_lex_state = 9}, - [629] = {.lex_state = 162, .external_lex_state = 7}, - [630] = {.lex_state = 307, .external_lex_state = 12}, - [631] = {.lex_state = 309, .external_lex_state = 13}, - [632] = {.lex_state = 260, .external_lex_state = 11}, - [633] = {.lex_state = 260, .external_lex_state = 11}, - [634] = {.lex_state = 165}, - [635] = {.lex_state = 260, .external_lex_state = 11}, - [636] = {.lex_state = 260, .external_lex_state = 11}, - [637] = {.lex_state = 260, .external_lex_state = 11}, - [638] = {.lex_state = 307, .external_lex_state = 12}, - [639] = {.lex_state = 309, .external_lex_state = 13}, - [640] = {.lex_state = 103}, - [641] = {.lex_state = 226, .external_lex_state = 16}, - [642] = {.lex_state = 235, .external_lex_state = 6}, - [643] = {.lex_state = 226, .external_lex_state = 16}, - [644] = {.lex_state = 226, .external_lex_state = 16}, - [645] = {.lex_state = 103}, - [646] = {.lex_state = 241, .external_lex_state = 2}, - [647] = {.lex_state = 103}, - [648] = {.lex_state = 249, .external_lex_state = 2}, - [649] = {.lex_state = 103}, - [650] = {.lex_state = 241, .external_lex_state = 2}, - [651] = {.lex_state = 103, .external_lex_state = 12}, - [652] = {.lex_state = 188, .external_lex_state = 8}, - [653] = {.lex_state = 311, .external_lex_state = 13}, - [654] = {.lex_state = 165}, - [655] = {.lex_state = 170}, - [656] = {.lex_state = 311, .external_lex_state = 13}, - [657] = {.lex_state = 175, .external_lex_state = 6}, - [658] = {.lex_state = 20, .external_lex_state = 2}, - [659] = {.lex_state = 20, .external_lex_state = 2}, - [660] = {.lex_state = 20, .external_lex_state = 2}, - [661] = {.lex_state = 241}, - [662] = {.lex_state = 241}, - [663] = {.lex_state = 141}, - [664] = {.lex_state = 182, .external_lex_state = 20}, - [665] = {.lex_state = 182, .external_lex_state = 20}, - [666] = {.lex_state = 165}, - [667] = {.lex_state = 182, .external_lex_state = 20}, - [668] = {.lex_state = 182, .external_lex_state = 20}, - [669] = {.lex_state = 182, .external_lex_state = 20}, - [670] = {.lex_state = 103}, - [671] = {.lex_state = 226, .external_lex_state = 16}, - [672] = {.lex_state = 235, .external_lex_state = 6}, - [673] = {.lex_state = 226, .external_lex_state = 16}, - [674] = {.lex_state = 226, .external_lex_state = 16}, - [675] = {.lex_state = 103}, - [676] = {.lex_state = 241, .external_lex_state = 2}, - [677] = {.lex_state = 103}, - [678] = {.lex_state = 249, .external_lex_state = 2}, - [679] = {.lex_state = 103}, - [680] = {.lex_state = 241, .external_lex_state = 2}, - [681] = {.lex_state = 313, .external_lex_state = 10}, - [682] = {.lex_state = 165}, - [683] = {.lex_state = 170}, - [684] = {.lex_state = 313, .external_lex_state = 10}, - [685] = {.lex_state = 175, .external_lex_state = 6}, - [686] = {.lex_state = 20, .external_lex_state = 2}, - [687] = {.lex_state = 20, .external_lex_state = 2}, - [688] = {.lex_state = 20, .external_lex_state = 2}, - [689] = {.lex_state = 313, .external_lex_state = 4}, - [690] = {.lex_state = 313, .external_lex_state = 4}, - [691] = {.lex_state = 262, .external_lex_state = 2}, - [692] = {.lex_state = 283, .external_lex_state = 4}, - [693] = {.lex_state = 253, .external_lex_state = 7}, - [694] = {.lex_state = 262, .external_lex_state = 2}, - [695] = {.lex_state = 153, .external_lex_state = 4}, - [696] = {.lex_state = 182, .external_lex_state = 8}, - [697] = {.lex_state = 262, .external_lex_state = 2}, - [698] = {.lex_state = 258, .external_lex_state = 7}, - [699] = {.lex_state = 283, .external_lex_state = 4}, - [700] = {.lex_state = 20, .external_lex_state = 2}, - [701] = {.lex_state = 315, .external_lex_state = 2}, - [702] = {.lex_state = 268, .external_lex_state = 2}, - [703] = {.lex_state = 153, .external_lex_state = 4}, - [704] = {.lex_state = 103}, - [705] = {.lex_state = 103}, - [706] = {.lex_state = 182, .external_lex_state = 8}, - [707] = {.lex_state = 268, .external_lex_state = 2}, - [708] = {.lex_state = 103}, - [709] = {.lex_state = 190, .external_lex_state = 10}, - [710] = {.lex_state = 317}, - [711] = {.lex_state = 190, .external_lex_state = 4}, - [712] = {.lex_state = 190, .external_lex_state = 10}, - [713] = {.lex_state = 190, .external_lex_state = 10}, - [714] = {.lex_state = 317}, - [715] = {.lex_state = 190, .external_lex_state = 4}, - [716] = {.lex_state = 289, .external_lex_state = 16}, - [717] = {.lex_state = 190, .external_lex_state = 10}, - [718] = {.lex_state = 293}, - [719] = {.lex_state = 291, .external_lex_state = 16}, - [720] = {.lex_state = 103}, - [721] = {.lex_state = 226, .external_lex_state = 16}, - [722] = {.lex_state = 226, .external_lex_state = 16}, - [723] = {.lex_state = 226, .external_lex_state = 16}, - [724] = {.lex_state = 190, .external_lex_state = 10}, - [725] = {.lex_state = 293}, - [726] = {.lex_state = 291, .external_lex_state = 16}, - [727] = {.lex_state = 190, .external_lex_state = 10}, - [728] = {.lex_state = 293}, - [729] = {.lex_state = 291, .external_lex_state = 16}, - [730] = {.lex_state = 190, .external_lex_state = 10}, - [731] = {.lex_state = 190, .external_lex_state = 10}, - [732] = {.lex_state = 103}, - [733] = {.lex_state = 323, .external_lex_state = 7}, - [734] = {.lex_state = 278, .external_lex_state = 21}, - [735] = {.lex_state = 153, .external_lex_state = 4}, - [736] = {.lex_state = 182, .external_lex_state = 8}, - [737] = {.lex_state = 278, .external_lex_state = 21}, - [738] = {.lex_state = 20}, - [739] = {.lex_state = 141}, - [740] = {.lex_state = 283, .external_lex_state = 4}, - [741] = {.lex_state = 188, .external_lex_state = 20}, - [742] = {.lex_state = 165}, - [743] = {.lex_state = 170}, - [744] = {.lex_state = 188, .external_lex_state = 20}, - [745] = {.lex_state = 175, .external_lex_state = 6}, - [746] = {.lex_state = 20, .external_lex_state = 2}, - [747] = {.lex_state = 20, .external_lex_state = 2}, - [748] = {.lex_state = 20, .external_lex_state = 2}, - [749] = {.lex_state = 287, .external_lex_state = 7}, - [750] = {.lex_state = 103}, - [751] = {.lex_state = 325, .external_lex_state = 7}, - [752] = {.lex_state = 287, .external_lex_state = 7}, - [753] = {.lex_state = 186, .external_lex_state = 9}, - [754] = {.lex_state = 141}, - [755] = {.lex_state = 193, .external_lex_state = 14}, - [756] = {.lex_state = 193, .external_lex_state = 14}, - [757] = {.lex_state = 165}, - [758] = {.lex_state = 193, .external_lex_state = 14}, - [759] = {.lex_state = 193, .external_lex_state = 14}, - [760] = {.lex_state = 193, .external_lex_state = 14}, - [761] = {.lex_state = 103}, - [762] = {.lex_state = 226, .external_lex_state = 16}, - [763] = {.lex_state = 235, .external_lex_state = 6}, - [764] = {.lex_state = 226, .external_lex_state = 16}, - [765] = {.lex_state = 226, .external_lex_state = 16}, - [766] = {.lex_state = 103}, - [767] = {.lex_state = 241, .external_lex_state = 2}, - [768] = {.lex_state = 103}, - [769] = {.lex_state = 249, .external_lex_state = 2}, - [770] = {.lex_state = 103}, - [771] = {.lex_state = 241, .external_lex_state = 2}, - [772] = {.lex_state = 193, .external_lex_state = 3}, - [773] = {.lex_state = 141}, - [774] = {.lex_state = 193, .external_lex_state = 10}, - [775] = {.lex_state = 193, .external_lex_state = 10}, - [776] = {.lex_state = 165}, - [777] = {.lex_state = 193, .external_lex_state = 10}, - [778] = {.lex_state = 193, .external_lex_state = 10}, - [779] = {.lex_state = 193, .external_lex_state = 10}, - [780] = {.lex_state = 103}, - [781] = {.lex_state = 226, .external_lex_state = 16}, - [782] = {.lex_state = 235, .external_lex_state = 6}, - [783] = {.lex_state = 226, .external_lex_state = 16}, - [784] = {.lex_state = 226, .external_lex_state = 16}, - [785] = {.lex_state = 103}, - [786] = {.lex_state = 241, .external_lex_state = 2}, - [787] = {.lex_state = 103}, - [788] = {.lex_state = 249, .external_lex_state = 2}, - [789] = {.lex_state = 103}, - [790] = {.lex_state = 241, .external_lex_state = 2}, - [791] = {.lex_state = 193, .external_lex_state = 4}, - [792] = {.lex_state = 184, .external_lex_state = 5}, - [793] = {.lex_state = 184, .external_lex_state = 5}, - [794] = {.lex_state = 184, .external_lex_state = 5}, - [795] = {.lex_state = 289, .external_lex_state = 16}, - [796] = {.lex_state = 184, .external_lex_state = 5}, - [797] = {.lex_state = 293}, - [798] = {.lex_state = 291, .external_lex_state = 16}, - [799] = {.lex_state = 103}, - [800] = {.lex_state = 226, .external_lex_state = 16}, - [801] = {.lex_state = 226, .external_lex_state = 16}, - [802] = {.lex_state = 226, .external_lex_state = 16}, - [803] = {.lex_state = 184, .external_lex_state = 5}, - [804] = {.lex_state = 293}, - [805] = {.lex_state = 291, .external_lex_state = 16}, - [806] = {.lex_state = 184, .external_lex_state = 5}, - [807] = {.lex_state = 293}, - [808] = {.lex_state = 291, .external_lex_state = 16}, - [809] = {.lex_state = 184, .external_lex_state = 5}, - [810] = {.lex_state = 184, .external_lex_state = 5}, - [811] = {.lex_state = 103}, - [812] = {.lex_state = 283, .external_lex_state = 4}, - [813] = {.lex_state = 193, .external_lex_state = 4}, - [814] = {.lex_state = 188, .external_lex_state = 8}, - [815] = {.lex_state = 141}, - [816] = {.lex_state = 184, .external_lex_state = 5}, - [817] = {.lex_state = 184, .external_lex_state = 5}, - [818] = {.lex_state = 287, .external_lex_state = 5}, - [819] = {.lex_state = 165}, - [820] = {.lex_state = 170}, - [821] = {.lex_state = 287, .external_lex_state = 5}, - [822] = {.lex_state = 175, .external_lex_state = 6}, - [823] = {.lex_state = 20, .external_lex_state = 2}, - [824] = {.lex_state = 20, .external_lex_state = 2}, - [825] = {.lex_state = 20, .external_lex_state = 2}, - [826] = {.lex_state = 287, .external_lex_state = 5}, - [827] = {.lex_state = 287, .external_lex_state = 5}, - [828] = {.lex_state = 287, .external_lex_state = 7}, - [829] = {.lex_state = 287, .external_lex_state = 7}, - [830] = {.lex_state = 184, .external_lex_state = 7}, - [831] = {.lex_state = 285, .external_lex_state = 2}, - [832] = {.lex_state = 184, .external_lex_state = 7}, - [833] = {.lex_state = 217, .external_lex_state = 11}, - [834] = {.lex_state = 217, .external_lex_state = 11}, - [835] = {.lex_state = 217, .external_lex_state = 11}, - [836] = {.lex_state = 289, .external_lex_state = 16}, - [837] = {.lex_state = 217, .external_lex_state = 11}, - [838] = {.lex_state = 293}, - [839] = {.lex_state = 291, .external_lex_state = 16}, - [840] = {.lex_state = 103}, - [841] = {.lex_state = 226, .external_lex_state = 16}, - [842] = {.lex_state = 226, .external_lex_state = 16}, - [843] = {.lex_state = 226, .external_lex_state = 16}, - [844] = {.lex_state = 217, .external_lex_state = 11}, - [845] = {.lex_state = 293}, - [846] = {.lex_state = 291, .external_lex_state = 16}, - [847] = {.lex_state = 217, .external_lex_state = 11}, - [848] = {.lex_state = 293}, - [849] = {.lex_state = 291, .external_lex_state = 16}, - [850] = {.lex_state = 217, .external_lex_state = 11}, - [851] = {.lex_state = 217, .external_lex_state = 11}, - [852] = {.lex_state = 258, .external_lex_state = 7}, - [853] = {.lex_state = 219, .external_lex_state = 13}, - [854] = {.lex_state = 219, .external_lex_state = 13}, - [855] = {.lex_state = 219, .external_lex_state = 13}, - [856] = {.lex_state = 289, .external_lex_state = 16}, - [857] = {.lex_state = 219, .external_lex_state = 13}, - [858] = {.lex_state = 293}, - [859] = {.lex_state = 291, .external_lex_state = 16}, - [860] = {.lex_state = 103}, - [861] = {.lex_state = 226, .external_lex_state = 16}, - [862] = {.lex_state = 226, .external_lex_state = 16}, - [863] = {.lex_state = 226, .external_lex_state = 16}, - [864] = {.lex_state = 219, .external_lex_state = 13}, - [865] = {.lex_state = 293}, - [866] = {.lex_state = 291, .external_lex_state = 16}, - [867] = {.lex_state = 219, .external_lex_state = 13}, - [868] = {.lex_state = 293}, - [869] = {.lex_state = 291, .external_lex_state = 16}, - [870] = {.lex_state = 219, .external_lex_state = 13}, - [871] = {.lex_state = 219, .external_lex_state = 13}, - [872] = {.lex_state = 193, .external_lex_state = 3}, - [873] = {.lex_state = 241}, - [874] = {.lex_state = 153, .external_lex_state = 14}, - [875] = {.lex_state = 153, .external_lex_state = 14}, - [876] = {.lex_state = 153, .external_lex_state = 14}, - [877] = {.lex_state = 153, .external_lex_state = 14}, - [878] = {.lex_state = 153, .external_lex_state = 14}, - [879] = {.lex_state = 289, .external_lex_state = 16}, - [880] = {.lex_state = 153, .external_lex_state = 14}, - [881] = {.lex_state = 293}, - [882] = {.lex_state = 291, .external_lex_state = 16}, - [883] = {.lex_state = 103}, - [884] = {.lex_state = 226, .external_lex_state = 16}, - [885] = {.lex_state = 226, .external_lex_state = 16}, - [886] = {.lex_state = 226, .external_lex_state = 16}, - [887] = {.lex_state = 153, .external_lex_state = 14}, - [888] = {.lex_state = 293}, - [889] = {.lex_state = 291, .external_lex_state = 16}, - [890] = {.lex_state = 153, .external_lex_state = 14}, - [891] = {.lex_state = 293}, - [892] = {.lex_state = 291, .external_lex_state = 16}, - [893] = {.lex_state = 153, .external_lex_state = 14}, - [894] = {.lex_state = 153, .external_lex_state = 14}, - [895] = {.lex_state = 153, .external_lex_state = 10}, - [896] = {.lex_state = 153, .external_lex_state = 10}, - [897] = {.lex_state = 153, .external_lex_state = 10}, - [898] = {.lex_state = 289, .external_lex_state = 16}, - [899] = {.lex_state = 153, .external_lex_state = 10}, - [900] = {.lex_state = 293}, - [901] = {.lex_state = 291, .external_lex_state = 16}, - [902] = {.lex_state = 103}, - [903] = {.lex_state = 226, .external_lex_state = 16}, - [904] = {.lex_state = 226, .external_lex_state = 16}, - [905] = {.lex_state = 226, .external_lex_state = 16}, - [906] = {.lex_state = 153, .external_lex_state = 10}, - [907] = {.lex_state = 293}, - [908] = {.lex_state = 291, .external_lex_state = 16}, - [909] = {.lex_state = 153, .external_lex_state = 10}, - [910] = {.lex_state = 293}, - [911] = {.lex_state = 291, .external_lex_state = 16}, - [912] = {.lex_state = 153, .external_lex_state = 10}, - [913] = {.lex_state = 153, .external_lex_state = 10}, - [914] = {.lex_state = 141, .external_lex_state = 15}, - [915] = {.lex_state = 141, .external_lex_state = 15}, - [916] = {.lex_state = 141, .external_lex_state = 15}, - [917] = {.lex_state = 289, .external_lex_state = 16}, - [918] = {.lex_state = 141, .external_lex_state = 15}, - [919] = {.lex_state = 293}, - [920] = {.lex_state = 291, .external_lex_state = 16}, - [921] = {.lex_state = 103}, - [922] = {.lex_state = 226, .external_lex_state = 16}, - [923] = {.lex_state = 226, .external_lex_state = 16}, - [924] = {.lex_state = 226, .external_lex_state = 16}, - [925] = {.lex_state = 141, .external_lex_state = 15}, - [926] = {.lex_state = 293}, - [927] = {.lex_state = 291, .external_lex_state = 16}, - [928] = {.lex_state = 141, .external_lex_state = 15}, - [929] = {.lex_state = 293}, - [930] = {.lex_state = 291, .external_lex_state = 16}, - [931] = {.lex_state = 141, .external_lex_state = 15}, - [932] = {.lex_state = 141, .external_lex_state = 15}, - [933] = {.lex_state = 165}, - [934] = {.lex_state = 289, .external_lex_state = 16}, - [935] = {.lex_state = 165, .external_lex_state = 13}, - [936] = {.lex_state = 293}, - [937] = {.lex_state = 291, .external_lex_state = 16}, - [938] = {.lex_state = 103}, - [939] = {.lex_state = 226, .external_lex_state = 16}, - [940] = {.lex_state = 226, .external_lex_state = 16}, - [941] = {.lex_state = 226, .external_lex_state = 16}, - [942] = {.lex_state = 165, .external_lex_state = 13}, - [943] = {.lex_state = 293}, - [944] = {.lex_state = 291, .external_lex_state = 16}, - [945] = {.lex_state = 165, .external_lex_state = 13}, - [946] = {.lex_state = 293}, - [947] = {.lex_state = 291, .external_lex_state = 16}, - [948] = {.lex_state = 165, .external_lex_state = 13}, - [949] = {.lex_state = 260, .external_lex_state = 11}, - [950] = {.lex_state = 260, .external_lex_state = 11}, - [951] = {.lex_state = 260, .external_lex_state = 11}, - [952] = {.lex_state = 162, .external_lex_state = 5}, - [953] = {.lex_state = 327, .external_lex_state = 22}, - [954] = {.lex_state = 165}, - [955] = {.lex_state = 170}, - [956] = {.lex_state = 327, .external_lex_state = 22}, - [957] = {.lex_state = 175, .external_lex_state = 6}, - [958] = {.lex_state = 20, .external_lex_state = 2}, - [959] = {.lex_state = 20, .external_lex_state = 2}, - [960] = {.lex_state = 20, .external_lex_state = 2}, - [961] = {.lex_state = 103, .external_lex_state = 16}, - [962] = {.lex_state = 141}, - [963] = {.lex_state = 291, .external_lex_state = 22}, - [964] = {.lex_state = 291, .external_lex_state = 22}, - [965] = {.lex_state = 165}, - [966] = {.lex_state = 291, .external_lex_state = 22}, - [967] = {.lex_state = 291, .external_lex_state = 22}, - [968] = {.lex_state = 291, .external_lex_state = 22}, - [969] = {.lex_state = 103}, - [970] = {.lex_state = 226, .external_lex_state = 16}, - [971] = {.lex_state = 235, .external_lex_state = 6}, - [972] = {.lex_state = 226, .external_lex_state = 16}, - [973] = {.lex_state = 226, .external_lex_state = 16}, - [974] = {.lex_state = 291, .external_lex_state = 16}, - [975] = {.lex_state = 103}, - [976] = {.lex_state = 241, .external_lex_state = 2}, - [977] = {.lex_state = 103}, - [978] = {.lex_state = 249, .external_lex_state = 2}, - [979] = {.lex_state = 103}, - [980] = {.lex_state = 241, .external_lex_state = 2}, - [981] = {.lex_state = 162, .external_lex_state = 5}, - [982] = {.lex_state = 291, .external_lex_state = 16}, - [983] = {.lex_state = 289, .external_lex_state = 16}, - [984] = {.lex_state = 162, .external_lex_state = 5}, - [985] = {.lex_state = 293}, - [986] = {.lex_state = 291, .external_lex_state = 16}, - [987] = {.lex_state = 162, .external_lex_state = 5}, - [988] = {.lex_state = 293}, - [989] = {.lex_state = 291, .external_lex_state = 16}, - [990] = {.lex_state = 293}, - [991] = {.lex_state = 291, .external_lex_state = 16}, - [992] = {.lex_state = 291, .external_lex_state = 16}, - [993] = {.lex_state = 162, .external_lex_state = 5}, - [994] = {.lex_state = 291, .external_lex_state = 16}, - [995] = {.lex_state = 241, .external_lex_state = 2}, - [996] = {.lex_state = 241}, - [997] = {.lex_state = 241, .external_lex_state = 15}, - [998] = {.lex_state = 165}, - [999] = {.lex_state = 170}, - [1000] = {.lex_state = 241, .external_lex_state = 15}, - [1001] = {.lex_state = 175, .external_lex_state = 6}, - [1002] = {.lex_state = 20, .external_lex_state = 2}, - [1003] = {.lex_state = 20, .external_lex_state = 2}, - [1004] = {.lex_state = 20, .external_lex_state = 2}, - [1005] = {.lex_state = 141}, - [1006] = {.lex_state = 103}, - [1007] = {.lex_state = 262, .external_lex_state = 2}, - [1008] = {.lex_state = 300, .external_lex_state = 18}, - [1009] = {.lex_state = 268, .external_lex_state = 2}, - [1010] = {.lex_state = 190, .external_lex_state = 4}, - [1011] = {.lex_state = 103}, - [1012] = {.lex_state = 190, .external_lex_state = 4}, - [1013] = {.lex_state = 103}, - [1014] = {.lex_state = 103}, - [1015] = {.lex_state = 278, .external_lex_state = 21}, - [1016] = {.lex_state = 329, .external_lex_state = 18}, - [1017] = {.lex_state = 103}, - [1018] = {.lex_state = 285, .external_lex_state = 2}, - [1019] = {.lex_state = 193, .external_lex_state = 4}, - [1020] = {.lex_state = 188, .external_lex_state = 8}, - [1021] = {.lex_state = 300, .external_lex_state = 18}, - [1022] = {.lex_state = 186, .external_lex_state = 9}, - [1023] = {.lex_state = 237, .external_lex_state = 6}, - [1024] = {.lex_state = 141}, - [1025] = {.lex_state = 237, .external_lex_state = 23}, - [1026] = {.lex_state = 237, .external_lex_state = 23}, - [1027] = {.lex_state = 165}, - [1028] = {.lex_state = 237, .external_lex_state = 23}, - [1029] = {.lex_state = 237, .external_lex_state = 23}, - [1030] = {.lex_state = 237, .external_lex_state = 23}, - [1031] = {.lex_state = 103}, - [1032] = {.lex_state = 226, .external_lex_state = 16}, - [1033] = {.lex_state = 235, .external_lex_state = 6}, - [1034] = {.lex_state = 226, .external_lex_state = 16}, - [1035] = {.lex_state = 226, .external_lex_state = 16}, - [1036] = {.lex_state = 103}, - [1037] = {.lex_state = 241, .external_lex_state = 2}, - [1038] = {.lex_state = 103}, - [1039] = {.lex_state = 249, .external_lex_state = 2}, - [1040] = {.lex_state = 103}, - [1041] = {.lex_state = 241, .external_lex_state = 2}, - [1042] = {.lex_state = 237, .external_lex_state = 6}, - [1043] = {.lex_state = 141}, - [1044] = {.lex_state = 237, .external_lex_state = 13}, - [1045] = {.lex_state = 237, .external_lex_state = 13}, - [1046] = {.lex_state = 165}, - [1047] = {.lex_state = 237, .external_lex_state = 13}, - [1048] = {.lex_state = 237, .external_lex_state = 13}, - [1049] = {.lex_state = 237, .external_lex_state = 13}, - [1050] = {.lex_state = 103}, - [1051] = {.lex_state = 226, .external_lex_state = 16}, - [1052] = {.lex_state = 235, .external_lex_state = 6}, - [1053] = {.lex_state = 226, .external_lex_state = 16}, - [1054] = {.lex_state = 226, .external_lex_state = 16}, - [1055] = {.lex_state = 103}, - [1056] = {.lex_state = 241, .external_lex_state = 2}, - [1057] = {.lex_state = 103}, - [1058] = {.lex_state = 249, .external_lex_state = 2}, - [1059] = {.lex_state = 103}, - [1060] = {.lex_state = 241, .external_lex_state = 2}, - [1061] = {.lex_state = 237}, - [1062] = {.lex_state = 143, .external_lex_state = 17}, - [1063] = {.lex_state = 143, .external_lex_state = 17}, - [1064] = {.lex_state = 143, .external_lex_state = 17}, - [1065] = {.lex_state = 289, .external_lex_state = 16}, - [1066] = {.lex_state = 143, .external_lex_state = 17}, - [1067] = {.lex_state = 293}, - [1068] = {.lex_state = 291, .external_lex_state = 16}, - [1069] = {.lex_state = 103}, - [1070] = {.lex_state = 226, .external_lex_state = 16}, - [1071] = {.lex_state = 226, .external_lex_state = 16}, - [1072] = {.lex_state = 226, .external_lex_state = 16}, - [1073] = {.lex_state = 143, .external_lex_state = 17}, - [1074] = {.lex_state = 293}, - [1075] = {.lex_state = 291, .external_lex_state = 16}, - [1076] = {.lex_state = 143, .external_lex_state = 17}, - [1077] = {.lex_state = 293}, - [1078] = {.lex_state = 291, .external_lex_state = 16}, - [1079] = {.lex_state = 143, .external_lex_state = 17}, - [1080] = {.lex_state = 143, .external_lex_state = 17}, - [1081] = {.lex_state = 103}, - [1082] = {.lex_state = 103}, - [1083] = {.lex_state = 241, .external_lex_state = 2}, - [1084] = {.lex_state = 103}, - [1085] = {.lex_state = 241, .external_lex_state = 2}, - [1086] = {.lex_state = 141}, - [1087] = {.lex_state = 143, .external_lex_state = 17}, - [1088] = {.lex_state = 143, .external_lex_state = 17}, - [1089] = {.lex_state = 143, .external_lex_state = 18}, - [1090] = {.lex_state = 300, .external_lex_state = 17}, - [1091] = {.lex_state = 165}, - [1092] = {.lex_state = 170}, - [1093] = {.lex_state = 300, .external_lex_state = 17}, - [1094] = {.lex_state = 175, .external_lex_state = 6}, - [1095] = {.lex_state = 20, .external_lex_state = 2}, - [1096] = {.lex_state = 20, .external_lex_state = 2}, - [1097] = {.lex_state = 20, .external_lex_state = 2}, - [1098] = {.lex_state = 298, .external_lex_state = 18}, - [1099] = {.lex_state = 298, .external_lex_state = 18}, - [1100] = {.lex_state = 304, .external_lex_state = 24}, - [1101] = {.lex_state = 298, .external_lex_state = 18}, - [1102] = {.lex_state = 300, .external_lex_state = 17}, - [1103] = {.lex_state = 300, .external_lex_state = 17}, - [1104] = {.lex_state = 298, .external_lex_state = 18}, - [1105] = {.lex_state = 300, .external_lex_state = 18}, - [1106] = {.lex_state = 300, .external_lex_state = 18}, - [1107] = {.lex_state = 143, .external_lex_state = 18}, - [1108] = {.lex_state = 143, .external_lex_state = 18}, - [1109] = {.lex_state = 249, .external_lex_state = 15}, - [1110] = {.lex_state = 165}, - [1111] = {.lex_state = 170}, - [1112] = {.lex_state = 249, .external_lex_state = 15}, - [1113] = {.lex_state = 175, .external_lex_state = 6}, - [1114] = {.lex_state = 20, .external_lex_state = 2}, - [1115] = {.lex_state = 20, .external_lex_state = 2}, - [1116] = {.lex_state = 20, .external_lex_state = 2}, - [1117] = {.lex_state = 302, .external_lex_state = 18}, - [1118] = {.lex_state = 103}, - [1119] = {.lex_state = 331, .external_lex_state = 18}, - [1120] = {.lex_state = 302, .external_lex_state = 18}, - [1121] = {.lex_state = 186, .external_lex_state = 9}, - [1122] = {.lex_state = 141}, - [1123] = {.lex_state = 243, .external_lex_state = 23}, - [1124] = {.lex_state = 243, .external_lex_state = 23}, - [1125] = {.lex_state = 165}, - [1126] = {.lex_state = 243, .external_lex_state = 23}, - [1127] = {.lex_state = 243, .external_lex_state = 23}, - [1128] = {.lex_state = 243, .external_lex_state = 23}, - [1129] = {.lex_state = 103}, - [1130] = {.lex_state = 226, .external_lex_state = 16}, - [1131] = {.lex_state = 235, .external_lex_state = 6}, - [1132] = {.lex_state = 226, .external_lex_state = 16}, - [1133] = {.lex_state = 226, .external_lex_state = 16}, - [1134] = {.lex_state = 103}, - [1135] = {.lex_state = 241, .external_lex_state = 2}, - [1136] = {.lex_state = 103}, - [1137] = {.lex_state = 249, .external_lex_state = 2}, - [1138] = {.lex_state = 103}, - [1139] = {.lex_state = 241, .external_lex_state = 2}, - [1140] = {.lex_state = 243, .external_lex_state = 6}, - [1141] = {.lex_state = 141}, - [1142] = {.lex_state = 243, .external_lex_state = 13}, - [1143] = {.lex_state = 243, .external_lex_state = 13}, - [1144] = {.lex_state = 165}, - [1145] = {.lex_state = 243, .external_lex_state = 13}, - [1146] = {.lex_state = 243, .external_lex_state = 13}, - [1147] = {.lex_state = 243, .external_lex_state = 13}, - [1148] = {.lex_state = 103}, - [1149] = {.lex_state = 226, .external_lex_state = 16}, - [1150] = {.lex_state = 235, .external_lex_state = 6}, - [1151] = {.lex_state = 226, .external_lex_state = 16}, - [1152] = {.lex_state = 226, .external_lex_state = 16}, - [1153] = {.lex_state = 103}, - [1154] = {.lex_state = 241, .external_lex_state = 2}, - [1155] = {.lex_state = 103}, - [1156] = {.lex_state = 249, .external_lex_state = 2}, - [1157] = {.lex_state = 103}, - [1158] = {.lex_state = 241, .external_lex_state = 2}, - [1159] = {.lex_state = 237}, - [1160] = {.lex_state = 245, .external_lex_state = 17}, - [1161] = {.lex_state = 245, .external_lex_state = 17}, - [1162] = {.lex_state = 245, .external_lex_state = 17}, - [1163] = {.lex_state = 289, .external_lex_state = 16}, - [1164] = {.lex_state = 245, .external_lex_state = 17}, - [1165] = {.lex_state = 293}, - [1166] = {.lex_state = 291, .external_lex_state = 16}, - [1167] = {.lex_state = 103}, - [1168] = {.lex_state = 226, .external_lex_state = 16}, - [1169] = {.lex_state = 226, .external_lex_state = 16}, - [1170] = {.lex_state = 226, .external_lex_state = 16}, - [1171] = {.lex_state = 245, .external_lex_state = 17}, - [1172] = {.lex_state = 293}, - [1173] = {.lex_state = 291, .external_lex_state = 16}, - [1174] = {.lex_state = 245, .external_lex_state = 17}, - [1175] = {.lex_state = 293}, - [1176] = {.lex_state = 291, .external_lex_state = 16}, - [1177] = {.lex_state = 245, .external_lex_state = 17}, - [1178] = {.lex_state = 245, .external_lex_state = 17}, - [1179] = {.lex_state = 103}, - [1180] = {.lex_state = 249, .external_lex_state = 2}, - [1181] = {.lex_state = 103}, - [1182] = {.lex_state = 249, .external_lex_state = 2}, - [1183] = {.lex_state = 141}, - [1184] = {.lex_state = 245, .external_lex_state = 17}, - [1185] = {.lex_state = 245, .external_lex_state = 17}, - [1186] = {.lex_state = 302, .external_lex_state = 17}, - [1187] = {.lex_state = 165}, - [1188] = {.lex_state = 170}, - [1189] = {.lex_state = 302, .external_lex_state = 17}, - [1190] = {.lex_state = 175, .external_lex_state = 6}, - [1191] = {.lex_state = 20, .external_lex_state = 2}, - [1192] = {.lex_state = 20, .external_lex_state = 2}, - [1193] = {.lex_state = 20, .external_lex_state = 2}, - [1194] = {.lex_state = 302, .external_lex_state = 17}, - [1195] = {.lex_state = 302, .external_lex_state = 17}, - [1196] = {.lex_state = 302, .external_lex_state = 18}, - [1197] = {.lex_state = 302, .external_lex_state = 18}, - [1198] = {.lex_state = 245, .external_lex_state = 18}, - [1199] = {.lex_state = 245, .external_lex_state = 18}, - [1200] = {.lex_state = 280, .external_lex_state = 7}, - [1201] = {.lex_state = 258, .external_lex_state = 5}, - [1202] = {.lex_state = 258, .external_lex_state = 5}, - [1203] = {.lex_state = 253, .external_lex_state = 7}, - [1204] = {.lex_state = 141}, - [1205] = {.lex_state = 258, .external_lex_state = 5}, - [1206] = {.lex_state = 258, .external_lex_state = 5}, - [1207] = {.lex_state = 165}, - [1208] = {.lex_state = 258, .external_lex_state = 5}, - [1209] = {.lex_state = 258, .external_lex_state = 5}, - [1210] = {.lex_state = 258, .external_lex_state = 5}, - [1211] = {.lex_state = 103}, - [1212] = {.lex_state = 226, .external_lex_state = 16}, - [1213] = {.lex_state = 235, .external_lex_state = 6}, - [1214] = {.lex_state = 226, .external_lex_state = 16}, - [1215] = {.lex_state = 226, .external_lex_state = 16}, - [1216] = {.lex_state = 103}, - [1217] = {.lex_state = 241, .external_lex_state = 2}, - [1218] = {.lex_state = 103}, - [1219] = {.lex_state = 249, .external_lex_state = 2}, - [1220] = {.lex_state = 103}, - [1221] = {.lex_state = 241, .external_lex_state = 2}, - [1222] = {.lex_state = 304, .external_lex_state = 24}, - [1223] = {.lex_state = 253, .external_lex_state = 7}, - [1224] = {.lex_state = 170}, - [1225] = {.lex_state = 175, .external_lex_state = 6}, - [1226] = {.lex_state = 304, .external_lex_state = 24}, - [1227] = {.lex_state = 141, .external_lex_state = 15}, - [1228] = {.lex_state = 141, .external_lex_state = 15}, - [1229] = {.lex_state = 258, .external_lex_state = 7}, - [1230] = {.lex_state = 309, .external_lex_state = 13}, - [1231] = {.lex_state = 260, .external_lex_state = 11}, - [1232] = {.lex_state = 103}, - [1233] = {.lex_state = 141}, - [1234] = {.lex_state = 260, .external_lex_state = 11}, - [1235] = {.lex_state = 260, .external_lex_state = 11}, - [1236] = {.lex_state = 309, .external_lex_state = 13}, - [1237] = {.lex_state = 103}, - [1238] = {.lex_state = 289, .external_lex_state = 16}, - [1239] = {.lex_state = 260, .external_lex_state = 11}, - [1240] = {.lex_state = 293}, - [1241] = {.lex_state = 291, .external_lex_state = 16}, - [1242] = {.lex_state = 103}, - [1243] = {.lex_state = 226, .external_lex_state = 16}, - [1244] = {.lex_state = 226, .external_lex_state = 16}, - [1245] = {.lex_state = 226, .external_lex_state = 16}, - [1246] = {.lex_state = 260, .external_lex_state = 11}, - [1247] = {.lex_state = 293}, - [1248] = {.lex_state = 291, .external_lex_state = 16}, - [1249] = {.lex_state = 260, .external_lex_state = 11}, - [1250] = {.lex_state = 293}, - [1251] = {.lex_state = 291, .external_lex_state = 16}, - [1252] = {.lex_state = 260, .external_lex_state = 11}, - [1253] = {.lex_state = 260, .external_lex_state = 11}, - [1254] = {.lex_state = 141}, - [1255] = {.lex_state = 311, .external_lex_state = 13}, - [1256] = {.lex_state = 311, .external_lex_state = 13}, - [1257] = {.lex_state = 165}, - [1258] = {.lex_state = 311, .external_lex_state = 13}, - [1259] = {.lex_state = 311, .external_lex_state = 13}, - [1260] = {.lex_state = 311, .external_lex_state = 13}, - [1261] = {.lex_state = 103}, - [1262] = {.lex_state = 226, .external_lex_state = 16}, - [1263] = {.lex_state = 235, .external_lex_state = 6}, - [1264] = {.lex_state = 226, .external_lex_state = 16}, - [1265] = {.lex_state = 226, .external_lex_state = 16}, - [1266] = {.lex_state = 103}, - [1267] = {.lex_state = 241, .external_lex_state = 2}, - [1268] = {.lex_state = 103}, - [1269] = {.lex_state = 249, .external_lex_state = 2}, - [1270] = {.lex_state = 103}, - [1271] = {.lex_state = 241, .external_lex_state = 2}, - [1272] = {.lex_state = 188, .external_lex_state = 8}, - [1273] = {.lex_state = 241}, - [1274] = {.lex_state = 182, .external_lex_state = 20}, - [1275] = {.lex_state = 182, .external_lex_state = 20}, - [1276] = {.lex_state = 182, .external_lex_state = 20}, - [1277] = {.lex_state = 289, .external_lex_state = 16}, - [1278] = {.lex_state = 182, .external_lex_state = 20}, - [1279] = {.lex_state = 293}, - [1280] = {.lex_state = 291, .external_lex_state = 16}, - [1281] = {.lex_state = 103}, - [1282] = {.lex_state = 226, .external_lex_state = 16}, - [1283] = {.lex_state = 226, .external_lex_state = 16}, - [1284] = {.lex_state = 226, .external_lex_state = 16}, - [1285] = {.lex_state = 182, .external_lex_state = 20}, - [1286] = {.lex_state = 293}, - [1287] = {.lex_state = 291, .external_lex_state = 16}, - [1288] = {.lex_state = 182, .external_lex_state = 20}, - [1289] = {.lex_state = 293}, - [1290] = {.lex_state = 291, .external_lex_state = 16}, - [1291] = {.lex_state = 182, .external_lex_state = 20}, - [1292] = {.lex_state = 182, .external_lex_state = 20}, - [1293] = {.lex_state = 141}, - [1294] = {.lex_state = 313, .external_lex_state = 10}, - [1295] = {.lex_state = 313, .external_lex_state = 10}, - [1296] = {.lex_state = 165}, - [1297] = {.lex_state = 313, .external_lex_state = 10}, - [1298] = {.lex_state = 313, .external_lex_state = 10}, - [1299] = {.lex_state = 313, .external_lex_state = 10}, - [1300] = {.lex_state = 103}, - [1301] = {.lex_state = 226, .external_lex_state = 16}, - [1302] = {.lex_state = 235, .external_lex_state = 6}, - [1303] = {.lex_state = 226, .external_lex_state = 16}, - [1304] = {.lex_state = 226, .external_lex_state = 16}, - [1305] = {.lex_state = 103}, - [1306] = {.lex_state = 241, .external_lex_state = 2}, - [1307] = {.lex_state = 103}, - [1308] = {.lex_state = 249, .external_lex_state = 2}, - [1309] = {.lex_state = 103}, - [1310] = {.lex_state = 241, .external_lex_state = 2}, - [1311] = {.lex_state = 103}, - [1312] = {.lex_state = 313, .external_lex_state = 4}, - [1313] = {.lex_state = 283, .external_lex_state = 4}, - [1314] = {.lex_state = 262, .external_lex_state = 2}, - [1315] = {.lex_state = 262, .external_lex_state = 2}, - [1316] = {.lex_state = 253, .external_lex_state = 7}, - [1317] = {.lex_state = 262, .external_lex_state = 2}, - [1318] = {.lex_state = 103}, - [1319] = {.lex_state = 315, .external_lex_state = 2}, - [1320] = {.lex_state = 153, .external_lex_state = 4}, - [1321] = {.lex_state = 182, .external_lex_state = 8}, - [1322] = {.lex_state = 315, .external_lex_state = 2}, - [1323] = {.lex_state = 268, .external_lex_state = 2}, - [1324] = {.lex_state = 283, .external_lex_state = 4}, - [1325] = {.lex_state = 103}, - [1326] = {.lex_state = 268, .external_lex_state = 2}, - [1327] = {.lex_state = 103}, - [1328] = {.lex_state = 103}, - [1329] = {.lex_state = 283, .external_lex_state = 4}, - [1330] = {.lex_state = 333, .external_lex_state = 13}, - [1331] = {.lex_state = 165}, - [1332] = {.lex_state = 170}, - [1333] = {.lex_state = 333, .external_lex_state = 13}, - [1334] = {.lex_state = 175, .external_lex_state = 6}, - [1335] = {.lex_state = 20, .external_lex_state = 2}, - [1336] = {.lex_state = 20, .external_lex_state = 2}, - [1337] = {.lex_state = 20, .external_lex_state = 2}, - [1338] = {.lex_state = 141}, - [1339] = {.lex_state = 103}, - [1340] = {.lex_state = 137}, - [1341] = {.lex_state = 141}, - [1342] = {.lex_state = 317}, - [1343] = {.lex_state = 283, .external_lex_state = 4}, - [1344] = {.lex_state = 103}, - [1345] = {.lex_state = 141}, - [1346] = {.lex_state = 317}, - [1347] = {.lex_state = 190, .external_lex_state = 10}, - [1348] = {.lex_state = 327, .external_lex_state = 22}, - [1349] = {.lex_state = 327, .external_lex_state = 22}, - [1350] = {.lex_state = 103, .external_lex_state = 16}, - [1351] = {.lex_state = 291, .external_lex_state = 16}, - [1352] = {.lex_state = 190, .external_lex_state = 10}, - [1353] = {.lex_state = 289, .external_lex_state = 16}, - [1354] = {.lex_state = 190, .external_lex_state = 10}, - [1355] = {.lex_state = 293}, - [1356] = {.lex_state = 291, .external_lex_state = 16}, - [1357] = {.lex_state = 190, .external_lex_state = 10}, - [1358] = {.lex_state = 293}, - [1359] = {.lex_state = 291, .external_lex_state = 16}, - [1360] = {.lex_state = 293}, - [1361] = {.lex_state = 291, .external_lex_state = 16}, - [1362] = {.lex_state = 291, .external_lex_state = 16}, - [1363] = {.lex_state = 190, .external_lex_state = 10}, - [1364] = {.lex_state = 291, .external_lex_state = 16}, - [1365] = {.lex_state = 280, .external_lex_state = 7}, - [1366] = {.lex_state = 278, .external_lex_state = 21}, - [1367] = {.lex_state = 323, .external_lex_state = 7}, - [1368] = {.lex_state = 278, .external_lex_state = 21}, - [1369] = {.lex_state = 141}, - [1370] = {.lex_state = 335, .external_lex_state = 10}, - [1371] = {.lex_state = 165}, - [1372] = {.lex_state = 170}, - [1373] = {.lex_state = 335, .external_lex_state = 10}, - [1374] = {.lex_state = 175, .external_lex_state = 6}, - [1375] = {.lex_state = 20, .external_lex_state = 2}, - [1376] = {.lex_state = 20, .external_lex_state = 2}, - [1377] = {.lex_state = 20, .external_lex_state = 2}, - [1378] = {.lex_state = 283, .external_lex_state = 4}, - [1379] = {.lex_state = 141}, - [1380] = {.lex_state = 188, .external_lex_state = 20}, - [1381] = {.lex_state = 188, .external_lex_state = 20}, - [1382] = {.lex_state = 165}, - [1383] = {.lex_state = 188, .external_lex_state = 20}, - [1384] = {.lex_state = 188, .external_lex_state = 20}, - [1385] = {.lex_state = 188, .external_lex_state = 20}, - [1386] = {.lex_state = 103}, - [1387] = {.lex_state = 226, .external_lex_state = 16}, - [1388] = {.lex_state = 235, .external_lex_state = 6}, - [1389] = {.lex_state = 226, .external_lex_state = 16}, - [1390] = {.lex_state = 226, .external_lex_state = 16}, - [1391] = {.lex_state = 103}, - [1392] = {.lex_state = 241, .external_lex_state = 2}, - [1393] = {.lex_state = 103}, - [1394] = {.lex_state = 249, .external_lex_state = 2}, - [1395] = {.lex_state = 103}, - [1396] = {.lex_state = 241, .external_lex_state = 2}, - [1397] = {.lex_state = 287, .external_lex_state = 7}, - [1398] = {.lex_state = 103}, - [1399] = {.lex_state = 20}, - [1400] = {.lex_state = 141}, - [1401] = {.lex_state = 287, .external_lex_state = 7}, - [1402] = {.lex_state = 193, .external_lex_state = 14}, - [1403] = {.lex_state = 193, .external_lex_state = 14}, - [1404] = {.lex_state = 193, .external_lex_state = 14}, - [1405] = {.lex_state = 193, .external_lex_state = 14}, - [1406] = {.lex_state = 193, .external_lex_state = 14}, - [1407] = {.lex_state = 289, .external_lex_state = 16}, - [1408] = {.lex_state = 193, .external_lex_state = 14}, - [1409] = {.lex_state = 293}, - [1410] = {.lex_state = 291, .external_lex_state = 16}, - [1411] = {.lex_state = 103}, - [1412] = {.lex_state = 226, .external_lex_state = 16}, - [1413] = {.lex_state = 226, .external_lex_state = 16}, - [1414] = {.lex_state = 226, .external_lex_state = 16}, - [1415] = {.lex_state = 193, .external_lex_state = 14}, - [1416] = {.lex_state = 293}, - [1417] = {.lex_state = 291, .external_lex_state = 16}, - [1418] = {.lex_state = 193, .external_lex_state = 14}, - [1419] = {.lex_state = 293}, - [1420] = {.lex_state = 291, .external_lex_state = 16}, - [1421] = {.lex_state = 193, .external_lex_state = 14}, - [1422] = {.lex_state = 193, .external_lex_state = 14}, - [1423] = {.lex_state = 193, .external_lex_state = 10}, - [1424] = {.lex_state = 193, .external_lex_state = 10}, - [1425] = {.lex_state = 193, .external_lex_state = 10}, - [1426] = {.lex_state = 289, .external_lex_state = 16}, - [1427] = {.lex_state = 193, .external_lex_state = 10}, - [1428] = {.lex_state = 293}, - [1429] = {.lex_state = 291, .external_lex_state = 16}, - [1430] = {.lex_state = 103}, - [1431] = {.lex_state = 226, .external_lex_state = 16}, - [1432] = {.lex_state = 226, .external_lex_state = 16}, - [1433] = {.lex_state = 226, .external_lex_state = 16}, - [1434] = {.lex_state = 193, .external_lex_state = 10}, - [1435] = {.lex_state = 293}, - [1436] = {.lex_state = 291, .external_lex_state = 16}, - [1437] = {.lex_state = 193, .external_lex_state = 10}, - [1438] = {.lex_state = 293}, - [1439] = {.lex_state = 291, .external_lex_state = 16}, - [1440] = {.lex_state = 193, .external_lex_state = 10}, - [1441] = {.lex_state = 193, .external_lex_state = 10}, - [1442] = {.lex_state = 184, .external_lex_state = 5}, - [1443] = {.lex_state = 327, .external_lex_state = 22}, - [1444] = {.lex_state = 327, .external_lex_state = 22}, - [1445] = {.lex_state = 103, .external_lex_state = 16}, - [1446] = {.lex_state = 291, .external_lex_state = 16}, - [1447] = {.lex_state = 184, .external_lex_state = 5}, - [1448] = {.lex_state = 289, .external_lex_state = 16}, - [1449] = {.lex_state = 184, .external_lex_state = 5}, - [1450] = {.lex_state = 293}, - [1451] = {.lex_state = 291, .external_lex_state = 16}, - [1452] = {.lex_state = 184, .external_lex_state = 5}, - [1453] = {.lex_state = 293}, - [1454] = {.lex_state = 291, .external_lex_state = 16}, - [1455] = {.lex_state = 293}, - [1456] = {.lex_state = 291, .external_lex_state = 16}, - [1457] = {.lex_state = 291, .external_lex_state = 16}, - [1458] = {.lex_state = 184, .external_lex_state = 5}, - [1459] = {.lex_state = 291, .external_lex_state = 16}, - [1460] = {.lex_state = 325, .external_lex_state = 7}, - [1461] = {.lex_state = 287, .external_lex_state = 5}, - [1462] = {.lex_state = 287, .external_lex_state = 5}, - [1463] = {.lex_state = 141}, - [1464] = {.lex_state = 287, .external_lex_state = 5}, - [1465] = {.lex_state = 287, .external_lex_state = 5}, - [1466] = {.lex_state = 165}, - [1467] = {.lex_state = 287, .external_lex_state = 5}, - [1468] = {.lex_state = 287, .external_lex_state = 5}, - [1469] = {.lex_state = 287, .external_lex_state = 5}, - [1470] = {.lex_state = 103}, - [1471] = {.lex_state = 226, .external_lex_state = 16}, - [1472] = {.lex_state = 235, .external_lex_state = 6}, - [1473] = {.lex_state = 226, .external_lex_state = 16}, - [1474] = {.lex_state = 226, .external_lex_state = 16}, - [1475] = {.lex_state = 103}, - [1476] = {.lex_state = 241, .external_lex_state = 2}, - [1477] = {.lex_state = 103}, - [1478] = {.lex_state = 249, .external_lex_state = 2}, - [1479] = {.lex_state = 103}, - [1480] = {.lex_state = 241, .external_lex_state = 2}, - [1481] = {.lex_state = 283, .external_lex_state = 4}, - [1482] = {.lex_state = 287, .external_lex_state = 7}, - [1483] = {.lex_state = 217, .external_lex_state = 11}, - [1484] = {.lex_state = 327, .external_lex_state = 22}, - [1485] = {.lex_state = 327, .external_lex_state = 22}, - [1486] = {.lex_state = 103, .external_lex_state = 16}, - [1487] = {.lex_state = 291, .external_lex_state = 16}, - [1488] = {.lex_state = 217, .external_lex_state = 11}, - [1489] = {.lex_state = 289, .external_lex_state = 16}, - [1490] = {.lex_state = 217, .external_lex_state = 11}, - [1491] = {.lex_state = 293}, - [1492] = {.lex_state = 291, .external_lex_state = 16}, - [1493] = {.lex_state = 217, .external_lex_state = 11}, - [1494] = {.lex_state = 293}, - [1495] = {.lex_state = 291, .external_lex_state = 16}, - [1496] = {.lex_state = 293}, - [1497] = {.lex_state = 291, .external_lex_state = 16}, - [1498] = {.lex_state = 291, .external_lex_state = 16}, - [1499] = {.lex_state = 217, .external_lex_state = 11}, - [1500] = {.lex_state = 291, .external_lex_state = 16}, - [1501] = {.lex_state = 219, .external_lex_state = 13}, - [1502] = {.lex_state = 327, .external_lex_state = 22}, - [1503] = {.lex_state = 327, .external_lex_state = 22}, - [1504] = {.lex_state = 103, .external_lex_state = 16}, - [1505] = {.lex_state = 291, .external_lex_state = 16}, - [1506] = {.lex_state = 219, .external_lex_state = 13}, - [1507] = {.lex_state = 289, .external_lex_state = 16}, - [1508] = {.lex_state = 219, .external_lex_state = 13}, - [1509] = {.lex_state = 293}, - [1510] = {.lex_state = 291, .external_lex_state = 16}, - [1511] = {.lex_state = 219, .external_lex_state = 13}, - [1512] = {.lex_state = 293}, - [1513] = {.lex_state = 291, .external_lex_state = 16}, - [1514] = {.lex_state = 293}, - [1515] = {.lex_state = 291, .external_lex_state = 16}, - [1516] = {.lex_state = 291, .external_lex_state = 16}, - [1517] = {.lex_state = 219, .external_lex_state = 13}, - [1518] = {.lex_state = 291, .external_lex_state = 16}, - [1519] = {.lex_state = 193, .external_lex_state = 3}, - [1520] = {.lex_state = 241}, - [1521] = {.lex_state = 153, .external_lex_state = 14}, - [1522] = {.lex_state = 327, .external_lex_state = 22}, - [1523] = {.lex_state = 327, .external_lex_state = 22}, - [1524] = {.lex_state = 103, .external_lex_state = 16}, - [1525] = {.lex_state = 291, .external_lex_state = 16}, - [1526] = {.lex_state = 153, .external_lex_state = 14}, - [1527] = {.lex_state = 289, .external_lex_state = 16}, - [1528] = {.lex_state = 153, .external_lex_state = 14}, - [1529] = {.lex_state = 293}, - [1530] = {.lex_state = 291, .external_lex_state = 16}, - [1531] = {.lex_state = 153, .external_lex_state = 14}, - [1532] = {.lex_state = 293}, - [1533] = {.lex_state = 291, .external_lex_state = 16}, - [1534] = {.lex_state = 293}, - [1535] = {.lex_state = 291, .external_lex_state = 16}, - [1536] = {.lex_state = 291, .external_lex_state = 16}, - [1537] = {.lex_state = 153, .external_lex_state = 14}, - [1538] = {.lex_state = 291, .external_lex_state = 16}, - [1539] = {.lex_state = 153, .external_lex_state = 10}, - [1540] = {.lex_state = 327, .external_lex_state = 22}, - [1541] = {.lex_state = 327, .external_lex_state = 22}, - [1542] = {.lex_state = 103, .external_lex_state = 16}, - [1543] = {.lex_state = 291, .external_lex_state = 16}, - [1544] = {.lex_state = 153, .external_lex_state = 10}, - [1545] = {.lex_state = 289, .external_lex_state = 16}, - [1546] = {.lex_state = 153, .external_lex_state = 10}, - [1547] = {.lex_state = 293}, - [1548] = {.lex_state = 291, .external_lex_state = 16}, - [1549] = {.lex_state = 153, .external_lex_state = 10}, - [1550] = {.lex_state = 293}, - [1551] = {.lex_state = 291, .external_lex_state = 16}, - [1552] = {.lex_state = 293}, - [1553] = {.lex_state = 291, .external_lex_state = 16}, - [1554] = {.lex_state = 291, .external_lex_state = 16}, - [1555] = {.lex_state = 153, .external_lex_state = 10}, - [1556] = {.lex_state = 291, .external_lex_state = 16}, - [1557] = {.lex_state = 141, .external_lex_state = 15}, - [1558] = {.lex_state = 327, .external_lex_state = 22}, - [1559] = {.lex_state = 327, .external_lex_state = 22}, - [1560] = {.lex_state = 103, .external_lex_state = 16}, - [1561] = {.lex_state = 291, .external_lex_state = 16}, - [1562] = {.lex_state = 141, .external_lex_state = 15}, - [1563] = {.lex_state = 289, .external_lex_state = 16}, - [1564] = {.lex_state = 141, .external_lex_state = 15}, - [1565] = {.lex_state = 293}, - [1566] = {.lex_state = 291, .external_lex_state = 16}, - [1567] = {.lex_state = 141, .external_lex_state = 15}, - [1568] = {.lex_state = 293}, - [1569] = {.lex_state = 291, .external_lex_state = 16}, - [1570] = {.lex_state = 293}, - [1571] = {.lex_state = 291, .external_lex_state = 16}, - [1572] = {.lex_state = 291, .external_lex_state = 16}, - [1573] = {.lex_state = 141, .external_lex_state = 15}, - [1574] = {.lex_state = 291, .external_lex_state = 16}, - [1575] = {.lex_state = 165, .external_lex_state = 13}, - [1576] = {.lex_state = 327, .external_lex_state = 22}, - [1577] = {.lex_state = 327, .external_lex_state = 22}, - [1578] = {.lex_state = 103, .external_lex_state = 16}, - [1579] = {.lex_state = 291, .external_lex_state = 16}, - [1580] = {.lex_state = 165, .external_lex_state = 13}, - [1581] = {.lex_state = 289, .external_lex_state = 16}, - [1582] = {.lex_state = 165, .external_lex_state = 13}, - [1583] = {.lex_state = 293}, - [1584] = {.lex_state = 291, .external_lex_state = 16}, - [1585] = {.lex_state = 165, .external_lex_state = 13}, - [1586] = {.lex_state = 293}, - [1587] = {.lex_state = 291, .external_lex_state = 16}, - [1588] = {.lex_state = 293}, - [1589] = {.lex_state = 291, .external_lex_state = 16}, - [1590] = {.lex_state = 291, .external_lex_state = 16}, - [1591] = {.lex_state = 165, .external_lex_state = 13}, - [1592] = {.lex_state = 291, .external_lex_state = 16}, - [1593] = {.lex_state = 307, .external_lex_state = 12}, - [1594] = {.lex_state = 226, .external_lex_state = 22}, - [1595] = {.lex_state = 307, .external_lex_state = 12}, - [1596] = {.lex_state = 226, .external_lex_state = 22}, - [1597] = {.lex_state = 103, .external_lex_state = 12}, - [1598] = {.lex_state = 141}, - [1599] = {.lex_state = 162, .external_lex_state = 5}, - [1600] = {.lex_state = 327, .external_lex_state = 22}, - [1601] = {.lex_state = 327, .external_lex_state = 22}, - [1602] = {.lex_state = 165}, - [1603] = {.lex_state = 327, .external_lex_state = 22}, - [1604] = {.lex_state = 327, .external_lex_state = 22}, - [1605] = {.lex_state = 327, .external_lex_state = 22}, - [1606] = {.lex_state = 162, .external_lex_state = 5}, - [1607] = {.lex_state = 103}, - [1608] = {.lex_state = 226, .external_lex_state = 16}, - [1609] = {.lex_state = 235, .external_lex_state = 6}, - [1610] = {.lex_state = 226, .external_lex_state = 16}, - [1611] = {.lex_state = 226, .external_lex_state = 16}, - [1612] = {.lex_state = 103}, - [1613] = {.lex_state = 241, .external_lex_state = 2}, - [1614] = {.lex_state = 103}, - [1615] = {.lex_state = 249, .external_lex_state = 2}, - [1616] = {.lex_state = 103}, - [1617] = {.lex_state = 241, .external_lex_state = 2}, - [1618] = {.lex_state = 291, .external_lex_state = 22}, - [1619] = {.lex_state = 291, .external_lex_state = 22}, - [1620] = {.lex_state = 291, .external_lex_state = 22}, - [1621] = {.lex_state = 289, .external_lex_state = 16}, - [1622] = {.lex_state = 291, .external_lex_state = 22}, - [1623] = {.lex_state = 293}, - [1624] = {.lex_state = 291, .external_lex_state = 16}, - [1625] = {.lex_state = 103}, - [1626] = {.lex_state = 226, .external_lex_state = 16}, - [1627] = {.lex_state = 226, .external_lex_state = 16}, - [1628] = {.lex_state = 226, .external_lex_state = 16}, - [1629] = {.lex_state = 291, .external_lex_state = 22}, - [1630] = {.lex_state = 293}, - [1631] = {.lex_state = 291, .external_lex_state = 16}, - [1632] = {.lex_state = 291, .external_lex_state = 22}, - [1633] = {.lex_state = 293}, - [1634] = {.lex_state = 291, .external_lex_state = 16}, - [1635] = {.lex_state = 162, .external_lex_state = 5}, - [1636] = {.lex_state = 291, .external_lex_state = 16}, - [1637] = {.lex_state = 291, .external_lex_state = 22}, - [1638] = {.lex_state = 291, .external_lex_state = 22}, - [1639] = {.lex_state = 327, .external_lex_state = 22}, - [1640] = {.lex_state = 327, .external_lex_state = 22}, - [1641] = {.lex_state = 103, .external_lex_state = 16}, - [1642] = {.lex_state = 291, .external_lex_state = 16}, - [1643] = {.lex_state = 162, .external_lex_state = 5}, - [1644] = {.lex_state = 291, .external_lex_state = 16}, - [1645] = {.lex_state = 162, .external_lex_state = 5}, - [1646] = {.lex_state = 291, .external_lex_state = 16}, - [1647] = {.lex_state = 162, .external_lex_state = 5}, - [1648] = {.lex_state = 291, .external_lex_state = 16}, - [1649] = {.lex_state = 162, .external_lex_state = 5}, - [1650] = {.lex_state = 291, .external_lex_state = 16}, - [1651] = {.lex_state = 241, .external_lex_state = 2}, - [1652] = {.lex_state = 241}, - [1653] = {.lex_state = 141}, - [1654] = {.lex_state = 241, .external_lex_state = 15}, - [1655] = {.lex_state = 241, .external_lex_state = 15}, - [1656] = {.lex_state = 165}, - [1657] = {.lex_state = 241, .external_lex_state = 15}, - [1658] = {.lex_state = 241, .external_lex_state = 15}, - [1659] = {.lex_state = 241, .external_lex_state = 15}, - [1660] = {.lex_state = 103}, - [1661] = {.lex_state = 226, .external_lex_state = 16}, - [1662] = {.lex_state = 235, .external_lex_state = 6}, - [1663] = {.lex_state = 226, .external_lex_state = 16}, - [1664] = {.lex_state = 226, .external_lex_state = 16}, - [1665] = {.lex_state = 103}, - [1666] = {.lex_state = 241, .external_lex_state = 2}, - [1667] = {.lex_state = 103}, - [1668] = {.lex_state = 249, .external_lex_state = 2}, - [1669] = {.lex_state = 103}, - [1670] = {.lex_state = 241, .external_lex_state = 2}, - [1671] = {.lex_state = 313, .external_lex_state = 4}, - [1672] = {.lex_state = 262, .external_lex_state = 2}, - [1673] = {.lex_state = 103}, - [1674] = {.lex_state = 298, .external_lex_state = 18}, - [1675] = {.lex_state = 262, .external_lex_state = 2}, - [1676] = {.lex_state = 300, .external_lex_state = 18}, - [1677] = {.lex_state = 103}, - [1678] = {.lex_state = 103}, - [1679] = {.lex_state = 268, .external_lex_state = 2}, - [1680] = {.lex_state = 103}, - [1681] = {.lex_state = 317}, - [1682] = {.lex_state = 190, .external_lex_state = 4}, - [1683] = {.lex_state = 317}, - [1684] = {.lex_state = 190, .external_lex_state = 4}, - [1685] = {.lex_state = 103}, - [1686] = {.lex_state = 337, .external_lex_state = 18}, - [1687] = {.lex_state = 278, .external_lex_state = 21}, - [1688] = {.lex_state = 20}, - [1689] = {.lex_state = 141}, - [1690] = {.lex_state = 103}, - [1691] = {.lex_state = 103}, - [1692] = {.lex_state = 285, .external_lex_state = 2}, - [1693] = {.lex_state = 300, .external_lex_state = 18}, - [1694] = {.lex_state = 237, .external_lex_state = 6}, - [1695] = {.lex_state = 241}, - [1696] = {.lex_state = 237, .external_lex_state = 23}, - [1697] = {.lex_state = 237, .external_lex_state = 23}, - [1698] = {.lex_state = 237, .external_lex_state = 23}, - [1699] = {.lex_state = 237, .external_lex_state = 23}, - [1700] = {.lex_state = 237, .external_lex_state = 23}, - [1701] = {.lex_state = 289, .external_lex_state = 16}, - [1702] = {.lex_state = 237, .external_lex_state = 23}, - [1703] = {.lex_state = 293}, - [1704] = {.lex_state = 291, .external_lex_state = 16}, - [1705] = {.lex_state = 103}, - [1706] = {.lex_state = 226, .external_lex_state = 16}, - [1707] = {.lex_state = 226, .external_lex_state = 16}, - [1708] = {.lex_state = 226, .external_lex_state = 16}, - [1709] = {.lex_state = 237, .external_lex_state = 23}, - [1710] = {.lex_state = 293}, - [1711] = {.lex_state = 291, .external_lex_state = 16}, - [1712] = {.lex_state = 237, .external_lex_state = 23}, - [1713] = {.lex_state = 293}, - [1714] = {.lex_state = 291, .external_lex_state = 16}, - [1715] = {.lex_state = 237, .external_lex_state = 23}, - [1716] = {.lex_state = 237, .external_lex_state = 23}, - [1717] = {.lex_state = 237, .external_lex_state = 13}, - [1718] = {.lex_state = 237, .external_lex_state = 13}, - [1719] = {.lex_state = 237, .external_lex_state = 13}, - [1720] = {.lex_state = 289, .external_lex_state = 16}, - [1721] = {.lex_state = 237, .external_lex_state = 13}, - [1722] = {.lex_state = 293}, - [1723] = {.lex_state = 291, .external_lex_state = 16}, - [1724] = {.lex_state = 103}, - [1725] = {.lex_state = 226, .external_lex_state = 16}, - [1726] = {.lex_state = 226, .external_lex_state = 16}, - [1727] = {.lex_state = 226, .external_lex_state = 16}, - [1728] = {.lex_state = 237, .external_lex_state = 13}, - [1729] = {.lex_state = 293}, - [1730] = {.lex_state = 291, .external_lex_state = 16}, - [1731] = {.lex_state = 237, .external_lex_state = 13}, - [1732] = {.lex_state = 293}, - [1733] = {.lex_state = 291, .external_lex_state = 16}, - [1734] = {.lex_state = 237, .external_lex_state = 13}, - [1735] = {.lex_state = 237, .external_lex_state = 13}, - [1736] = {.lex_state = 143, .external_lex_state = 17}, - [1737] = {.lex_state = 327, .external_lex_state = 22}, - [1738] = {.lex_state = 327, .external_lex_state = 22}, - [1739] = {.lex_state = 103, .external_lex_state = 16}, - [1740] = {.lex_state = 291, .external_lex_state = 16}, - [1741] = {.lex_state = 143, .external_lex_state = 17}, - [1742] = {.lex_state = 289, .external_lex_state = 16}, - [1743] = {.lex_state = 143, .external_lex_state = 17}, - [1744] = {.lex_state = 293}, - [1745] = {.lex_state = 291, .external_lex_state = 16}, - [1746] = {.lex_state = 143, .external_lex_state = 17}, - [1747] = {.lex_state = 293}, - [1748] = {.lex_state = 291, .external_lex_state = 16}, - [1749] = {.lex_state = 293}, - [1750] = {.lex_state = 291, .external_lex_state = 16}, - [1751] = {.lex_state = 291, .external_lex_state = 16}, - [1752] = {.lex_state = 143, .external_lex_state = 17}, - [1753] = {.lex_state = 291, .external_lex_state = 16}, - [1754] = {.lex_state = 329, .external_lex_state = 18}, - [1755] = {.lex_state = 300, .external_lex_state = 17}, - [1756] = {.lex_state = 300, .external_lex_state = 17}, - [1757] = {.lex_state = 298, .external_lex_state = 18}, - [1758] = {.lex_state = 141}, - [1759] = {.lex_state = 300, .external_lex_state = 17}, - [1760] = {.lex_state = 300, .external_lex_state = 17}, - [1761] = {.lex_state = 165}, - [1762] = {.lex_state = 300, .external_lex_state = 17}, - [1763] = {.lex_state = 300, .external_lex_state = 17}, - [1764] = {.lex_state = 300, .external_lex_state = 17}, - [1765] = {.lex_state = 103}, - [1766] = {.lex_state = 226, .external_lex_state = 16}, - [1767] = {.lex_state = 235, .external_lex_state = 6}, - [1768] = {.lex_state = 226, .external_lex_state = 16}, - [1769] = {.lex_state = 226, .external_lex_state = 16}, - [1770] = {.lex_state = 103}, - [1771] = {.lex_state = 241, .external_lex_state = 2}, - [1772] = {.lex_state = 103}, - [1773] = {.lex_state = 249, .external_lex_state = 2}, - [1774] = {.lex_state = 103}, - [1775] = {.lex_state = 241, .external_lex_state = 2}, - [1776] = {.lex_state = 298, .external_lex_state = 18}, - [1777] = {.lex_state = 304, .external_lex_state = 24}, - [1778] = {.lex_state = 300, .external_lex_state = 18}, - [1779] = {.lex_state = 141}, - [1780] = {.lex_state = 249, .external_lex_state = 15}, - [1781] = {.lex_state = 249, .external_lex_state = 15}, - [1782] = {.lex_state = 165}, - [1783] = {.lex_state = 249, .external_lex_state = 15}, - [1784] = {.lex_state = 249, .external_lex_state = 15}, - [1785] = {.lex_state = 249, .external_lex_state = 15}, - [1786] = {.lex_state = 103}, - [1787] = {.lex_state = 226, .external_lex_state = 16}, - [1788] = {.lex_state = 235, .external_lex_state = 6}, - [1789] = {.lex_state = 226, .external_lex_state = 16}, - [1790] = {.lex_state = 226, .external_lex_state = 16}, - [1791] = {.lex_state = 103}, - [1792] = {.lex_state = 241, .external_lex_state = 2}, - [1793] = {.lex_state = 103}, - [1794] = {.lex_state = 249, .external_lex_state = 2}, - [1795] = {.lex_state = 103}, - [1796] = {.lex_state = 241, .external_lex_state = 2}, - [1797] = {.lex_state = 302, .external_lex_state = 18}, - [1798] = {.lex_state = 103}, - [1799] = {.lex_state = 20}, - [1800] = {.lex_state = 141}, - [1801] = {.lex_state = 302, .external_lex_state = 18}, - [1802] = {.lex_state = 243, .external_lex_state = 23}, - [1803] = {.lex_state = 243, .external_lex_state = 23}, - [1804] = {.lex_state = 243, .external_lex_state = 23}, - [1805] = {.lex_state = 243, .external_lex_state = 23}, - [1806] = {.lex_state = 243, .external_lex_state = 23}, - [1807] = {.lex_state = 289, .external_lex_state = 16}, - [1808] = {.lex_state = 243, .external_lex_state = 23}, - [1809] = {.lex_state = 293}, - [1810] = {.lex_state = 291, .external_lex_state = 16}, - [1811] = {.lex_state = 103}, - [1812] = {.lex_state = 226, .external_lex_state = 16}, - [1813] = {.lex_state = 226, .external_lex_state = 16}, - [1814] = {.lex_state = 226, .external_lex_state = 16}, - [1815] = {.lex_state = 243, .external_lex_state = 23}, - [1816] = {.lex_state = 293}, - [1817] = {.lex_state = 291, .external_lex_state = 16}, - [1818] = {.lex_state = 243, .external_lex_state = 23}, - [1819] = {.lex_state = 293}, - [1820] = {.lex_state = 291, .external_lex_state = 16}, - [1821] = {.lex_state = 243, .external_lex_state = 23}, - [1822] = {.lex_state = 243, .external_lex_state = 23}, - [1823] = {.lex_state = 243, .external_lex_state = 13}, - [1824] = {.lex_state = 243, .external_lex_state = 13}, - [1825] = {.lex_state = 243, .external_lex_state = 13}, - [1826] = {.lex_state = 289, .external_lex_state = 16}, - [1827] = {.lex_state = 243, .external_lex_state = 13}, - [1828] = {.lex_state = 293}, - [1829] = {.lex_state = 291, .external_lex_state = 16}, - [1830] = {.lex_state = 103}, - [1831] = {.lex_state = 226, .external_lex_state = 16}, - [1832] = {.lex_state = 226, .external_lex_state = 16}, - [1833] = {.lex_state = 226, .external_lex_state = 16}, - [1834] = {.lex_state = 243, .external_lex_state = 13}, - [1835] = {.lex_state = 293}, - [1836] = {.lex_state = 291, .external_lex_state = 16}, - [1837] = {.lex_state = 243, .external_lex_state = 13}, - [1838] = {.lex_state = 293}, - [1839] = {.lex_state = 291, .external_lex_state = 16}, - [1840] = {.lex_state = 243, .external_lex_state = 13}, - [1841] = {.lex_state = 243, .external_lex_state = 13}, - [1842] = {.lex_state = 245, .external_lex_state = 17}, - [1843] = {.lex_state = 327, .external_lex_state = 22}, - [1844] = {.lex_state = 327, .external_lex_state = 22}, - [1845] = {.lex_state = 103, .external_lex_state = 16}, - [1846] = {.lex_state = 291, .external_lex_state = 16}, - [1847] = {.lex_state = 245, .external_lex_state = 17}, - [1848] = {.lex_state = 289, .external_lex_state = 16}, - [1849] = {.lex_state = 245, .external_lex_state = 17}, - [1850] = {.lex_state = 293}, - [1851] = {.lex_state = 291, .external_lex_state = 16}, - [1852] = {.lex_state = 245, .external_lex_state = 17}, - [1853] = {.lex_state = 293}, - [1854] = {.lex_state = 291, .external_lex_state = 16}, - [1855] = {.lex_state = 293}, - [1856] = {.lex_state = 291, .external_lex_state = 16}, - [1857] = {.lex_state = 291, .external_lex_state = 16}, - [1858] = {.lex_state = 245, .external_lex_state = 17}, - [1859] = {.lex_state = 291, .external_lex_state = 16}, - [1860] = {.lex_state = 331, .external_lex_state = 18}, - [1861] = {.lex_state = 302, .external_lex_state = 17}, - [1862] = {.lex_state = 302, .external_lex_state = 17}, - [1863] = {.lex_state = 141}, - [1864] = {.lex_state = 302, .external_lex_state = 17}, - [1865] = {.lex_state = 302, .external_lex_state = 17}, - [1866] = {.lex_state = 165}, - [1867] = {.lex_state = 302, .external_lex_state = 17}, - [1868] = {.lex_state = 302, .external_lex_state = 17}, - [1869] = {.lex_state = 302, .external_lex_state = 17}, - [1870] = {.lex_state = 103}, - [1871] = {.lex_state = 226, .external_lex_state = 16}, - [1872] = {.lex_state = 235, .external_lex_state = 6}, - [1873] = {.lex_state = 226, .external_lex_state = 16}, - [1874] = {.lex_state = 226, .external_lex_state = 16}, - [1875] = {.lex_state = 103}, - [1876] = {.lex_state = 241, .external_lex_state = 2}, - [1877] = {.lex_state = 103}, - [1878] = {.lex_state = 249, .external_lex_state = 2}, - [1879] = {.lex_state = 103}, - [1880] = {.lex_state = 241, .external_lex_state = 2}, - [1881] = {.lex_state = 302, .external_lex_state = 18}, - [1882] = {.lex_state = 283, .external_lex_state = 4}, - [1883] = {.lex_state = 258, .external_lex_state = 5}, - [1884] = {.lex_state = 258, .external_lex_state = 5}, - [1885] = {.lex_state = 258, .external_lex_state = 5}, - [1886] = {.lex_state = 289, .external_lex_state = 16}, - [1887] = {.lex_state = 258, .external_lex_state = 5}, - [1888] = {.lex_state = 293}, - [1889] = {.lex_state = 291, .external_lex_state = 16}, - [1890] = {.lex_state = 103}, - [1891] = {.lex_state = 226, .external_lex_state = 16}, - [1892] = {.lex_state = 226, .external_lex_state = 16}, - [1893] = {.lex_state = 226, .external_lex_state = 16}, - [1894] = {.lex_state = 258, .external_lex_state = 5}, - [1895] = {.lex_state = 293}, - [1896] = {.lex_state = 291, .external_lex_state = 16}, - [1897] = {.lex_state = 258, .external_lex_state = 5}, - [1898] = {.lex_state = 293}, - [1899] = {.lex_state = 291, .external_lex_state = 16}, - [1900] = {.lex_state = 258, .external_lex_state = 5}, - [1901] = {.lex_state = 258, .external_lex_state = 5}, - [1902] = {.lex_state = 304, .external_lex_state = 24}, - [1903] = {.lex_state = 304, .external_lex_state = 24}, - [1904] = {.lex_state = 103}, - [1905] = {.lex_state = 226, .external_lex_state = 16}, - [1906] = {.lex_state = 235, .external_lex_state = 6}, - [1907] = {.lex_state = 226, .external_lex_state = 16}, - [1908] = {.lex_state = 226, .external_lex_state = 16}, - [1909] = {.lex_state = 253, .external_lex_state = 7}, - [1910] = {.lex_state = 304, .external_lex_state = 24}, - [1911] = {.lex_state = 103}, - [1912] = {.lex_state = 103}, - [1913] = {.lex_state = 260, .external_lex_state = 11}, - [1914] = {.lex_state = 327, .external_lex_state = 22}, - [1915] = {.lex_state = 327, .external_lex_state = 22}, - [1916] = {.lex_state = 103, .external_lex_state = 16}, - [1917] = {.lex_state = 291, .external_lex_state = 16}, - [1918] = {.lex_state = 260, .external_lex_state = 11}, - [1919] = {.lex_state = 289, .external_lex_state = 16}, - [1920] = {.lex_state = 260, .external_lex_state = 11}, - [1921] = {.lex_state = 293}, - [1922] = {.lex_state = 291, .external_lex_state = 16}, - [1923] = {.lex_state = 260, .external_lex_state = 11}, - [1924] = {.lex_state = 293}, - [1925] = {.lex_state = 291, .external_lex_state = 16}, - [1926] = {.lex_state = 293}, - [1927] = {.lex_state = 291, .external_lex_state = 16}, - [1928] = {.lex_state = 291, .external_lex_state = 16}, - [1929] = {.lex_state = 260, .external_lex_state = 11}, - [1930] = {.lex_state = 291, .external_lex_state = 16}, - [1931] = {.lex_state = 311, .external_lex_state = 13}, - [1932] = {.lex_state = 311, .external_lex_state = 13}, - [1933] = {.lex_state = 311, .external_lex_state = 13}, - [1934] = {.lex_state = 289, .external_lex_state = 16}, - [1935] = {.lex_state = 311, .external_lex_state = 13}, - [1936] = {.lex_state = 293}, - [1937] = {.lex_state = 291, .external_lex_state = 16}, - [1938] = {.lex_state = 103}, - [1939] = {.lex_state = 226, .external_lex_state = 16}, - [1940] = {.lex_state = 226, .external_lex_state = 16}, - [1941] = {.lex_state = 226, .external_lex_state = 16}, - [1942] = {.lex_state = 311, .external_lex_state = 13}, - [1943] = {.lex_state = 293}, - [1944] = {.lex_state = 291, .external_lex_state = 16}, - [1945] = {.lex_state = 311, .external_lex_state = 13}, - [1946] = {.lex_state = 293}, - [1947] = {.lex_state = 291, .external_lex_state = 16}, - [1948] = {.lex_state = 311, .external_lex_state = 13}, - [1949] = {.lex_state = 311, .external_lex_state = 13}, - [1950] = {.lex_state = 182, .external_lex_state = 20}, - [1951] = {.lex_state = 327, .external_lex_state = 22}, - [1952] = {.lex_state = 327, .external_lex_state = 22}, - [1953] = {.lex_state = 103, .external_lex_state = 16}, - [1954] = {.lex_state = 291, .external_lex_state = 16}, - [1955] = {.lex_state = 182, .external_lex_state = 20}, - [1956] = {.lex_state = 289, .external_lex_state = 16}, - [1957] = {.lex_state = 182, .external_lex_state = 20}, - [1958] = {.lex_state = 293}, - [1959] = {.lex_state = 291, .external_lex_state = 16}, - [1960] = {.lex_state = 182, .external_lex_state = 20}, - [1961] = {.lex_state = 293}, - [1962] = {.lex_state = 291, .external_lex_state = 16}, - [1963] = {.lex_state = 293}, - [1964] = {.lex_state = 291, .external_lex_state = 16}, - [1965] = {.lex_state = 291, .external_lex_state = 16}, - [1966] = {.lex_state = 182, .external_lex_state = 20}, - [1967] = {.lex_state = 291, .external_lex_state = 16}, - [1968] = {.lex_state = 313, .external_lex_state = 10}, - [1969] = {.lex_state = 313, .external_lex_state = 10}, - [1970] = {.lex_state = 313, .external_lex_state = 10}, - [1971] = {.lex_state = 289, .external_lex_state = 16}, - [1972] = {.lex_state = 313, .external_lex_state = 10}, - [1973] = {.lex_state = 293}, - [1974] = {.lex_state = 291, .external_lex_state = 16}, - [1975] = {.lex_state = 103}, - [1976] = {.lex_state = 226, .external_lex_state = 16}, - [1977] = {.lex_state = 226, .external_lex_state = 16}, - [1978] = {.lex_state = 226, .external_lex_state = 16}, - [1979] = {.lex_state = 313, .external_lex_state = 10}, - [1980] = {.lex_state = 293}, - [1981] = {.lex_state = 291, .external_lex_state = 16}, - [1982] = {.lex_state = 313, .external_lex_state = 10}, - [1983] = {.lex_state = 293}, - [1984] = {.lex_state = 291, .external_lex_state = 16}, - [1985] = {.lex_state = 313, .external_lex_state = 10}, - [1986] = {.lex_state = 313, .external_lex_state = 10}, - [1987] = {.lex_state = 283, .external_lex_state = 4}, - [1988] = {.lex_state = 283, .external_lex_state = 4}, - [1989] = {.lex_state = 268, .external_lex_state = 2}, - [1990] = {.lex_state = 315, .external_lex_state = 2}, - [1991] = {.lex_state = 315, .external_lex_state = 2}, - [1992] = {.lex_state = 283, .external_lex_state = 4}, - [1993] = {.lex_state = 103}, - [1994] = {.lex_state = 141}, - [1995] = {.lex_state = 141}, - [1996] = {.lex_state = 339, .external_lex_state = 2}, - [1997] = {.lex_state = 137}, - [1998] = {.lex_state = 333, .external_lex_state = 13}, - [1999] = {.lex_state = 333, .external_lex_state = 13}, - [2000] = {.lex_state = 165}, - [2001] = {.lex_state = 333, .external_lex_state = 13}, - [2002] = {.lex_state = 333, .external_lex_state = 13}, - [2003] = {.lex_state = 333, .external_lex_state = 13}, - [2004] = {.lex_state = 339, .external_lex_state = 2}, - [2005] = {.lex_state = 137}, - [2006] = {.lex_state = 103}, - [2007] = {.lex_state = 226, .external_lex_state = 16}, - [2008] = {.lex_state = 235, .external_lex_state = 6}, - [2009] = {.lex_state = 226, .external_lex_state = 16}, - [2010] = {.lex_state = 226, .external_lex_state = 16}, - [2011] = {.lex_state = 103}, - [2012] = {.lex_state = 241, .external_lex_state = 2}, - [2013] = {.lex_state = 103}, - [2014] = {.lex_state = 249, .external_lex_state = 2}, - [2015] = {.lex_state = 103}, - [2016] = {.lex_state = 241, .external_lex_state = 2}, - [2017] = {.lex_state = 283, .external_lex_state = 4}, - [2018] = {.lex_state = 103}, - [2019] = {.lex_state = 141}, - [2020] = {.lex_state = 283, .external_lex_state = 4}, - [2021] = {.lex_state = 141}, - [2022] = {.lex_state = 283, .external_lex_state = 4}, - [2023] = {.lex_state = 103}, - [2024] = {.lex_state = 283, .external_lex_state = 4}, - [2025] = {.lex_state = 141}, - [2026] = {.lex_state = 190, .external_lex_state = 10}, - [2027] = {.lex_state = 190, .external_lex_state = 10}, - [2028] = {.lex_state = 190, .external_lex_state = 10}, - [2029] = {.lex_state = 291, .external_lex_state = 16}, - [2030] = {.lex_state = 327, .external_lex_state = 22}, - [2031] = {.lex_state = 327, .external_lex_state = 22}, - [2032] = {.lex_state = 103, .external_lex_state = 16}, - [2033] = {.lex_state = 291, .external_lex_state = 16}, - [2034] = {.lex_state = 190, .external_lex_state = 10}, - [2035] = {.lex_state = 291, .external_lex_state = 16}, - [2036] = {.lex_state = 190, .external_lex_state = 10}, - [2037] = {.lex_state = 291, .external_lex_state = 16}, - [2038] = {.lex_state = 190, .external_lex_state = 10}, - [2039] = {.lex_state = 291, .external_lex_state = 16}, - [2040] = {.lex_state = 190, .external_lex_state = 10}, - [2041] = {.lex_state = 291, .external_lex_state = 16}, - [2042] = {.lex_state = 283, .external_lex_state = 4}, - [2043] = {.lex_state = 335, .external_lex_state = 10}, - [2044] = {.lex_state = 335, .external_lex_state = 10}, - [2045] = {.lex_state = 283, .external_lex_state = 4}, - [2046] = {.lex_state = 141}, - [2047] = {.lex_state = 335, .external_lex_state = 10}, - [2048] = {.lex_state = 335, .external_lex_state = 10}, - [2049] = {.lex_state = 165}, - [2050] = {.lex_state = 335, .external_lex_state = 10}, - [2051] = {.lex_state = 335, .external_lex_state = 10}, - [2052] = {.lex_state = 335, .external_lex_state = 10}, - [2053] = {.lex_state = 103}, - [2054] = {.lex_state = 226, .external_lex_state = 16}, - [2055] = {.lex_state = 235, .external_lex_state = 6}, - [2056] = {.lex_state = 226, .external_lex_state = 16}, - [2057] = {.lex_state = 226, .external_lex_state = 16}, - [2058] = {.lex_state = 103}, - [2059] = {.lex_state = 241, .external_lex_state = 2}, - [2060] = {.lex_state = 103}, - [2061] = {.lex_state = 249, .external_lex_state = 2}, - [2062] = {.lex_state = 103}, - [2063] = {.lex_state = 241, .external_lex_state = 2}, - [2064] = {.lex_state = 188, .external_lex_state = 20}, - [2065] = {.lex_state = 188, .external_lex_state = 20}, - [2066] = {.lex_state = 188, .external_lex_state = 20}, - [2067] = {.lex_state = 289, .external_lex_state = 16}, - [2068] = {.lex_state = 188, .external_lex_state = 20}, - [2069] = {.lex_state = 293}, - [2070] = {.lex_state = 291, .external_lex_state = 16}, - [2071] = {.lex_state = 103}, - [2072] = {.lex_state = 226, .external_lex_state = 16}, - [2073] = {.lex_state = 226, .external_lex_state = 16}, - [2074] = {.lex_state = 226, .external_lex_state = 16}, - [2075] = {.lex_state = 188, .external_lex_state = 20}, - [2076] = {.lex_state = 293}, - [2077] = {.lex_state = 291, .external_lex_state = 16}, - [2078] = {.lex_state = 188, .external_lex_state = 20}, - [2079] = {.lex_state = 293}, - [2080] = {.lex_state = 291, .external_lex_state = 16}, - [2081] = {.lex_state = 188, .external_lex_state = 20}, - [2082] = {.lex_state = 188, .external_lex_state = 20}, - [2083] = {.lex_state = 325, .external_lex_state = 7}, - [2084] = {.lex_state = 141}, - [2085] = {.lex_state = 342, .external_lex_state = 10}, - [2086] = {.lex_state = 165}, - [2087] = {.lex_state = 170}, - [2088] = {.lex_state = 342, .external_lex_state = 10}, - [2089] = {.lex_state = 175, .external_lex_state = 6}, - [2090] = {.lex_state = 20, .external_lex_state = 2}, - [2091] = {.lex_state = 20, .external_lex_state = 2}, - [2092] = {.lex_state = 20, .external_lex_state = 2}, - [2093] = {.lex_state = 193, .external_lex_state = 14}, - [2094] = {.lex_state = 327, .external_lex_state = 22}, - [2095] = {.lex_state = 327, .external_lex_state = 22}, - [2096] = {.lex_state = 103, .external_lex_state = 16}, - [2097] = {.lex_state = 291, .external_lex_state = 16}, - [2098] = {.lex_state = 193, .external_lex_state = 14}, - [2099] = {.lex_state = 289, .external_lex_state = 16}, - [2100] = {.lex_state = 193, .external_lex_state = 14}, - [2101] = {.lex_state = 293}, - [2102] = {.lex_state = 291, .external_lex_state = 16}, - [2103] = {.lex_state = 193, .external_lex_state = 14}, - [2104] = {.lex_state = 293}, - [2105] = {.lex_state = 291, .external_lex_state = 16}, - [2106] = {.lex_state = 293}, - [2107] = {.lex_state = 291, .external_lex_state = 16}, - [2108] = {.lex_state = 291, .external_lex_state = 16}, - [2109] = {.lex_state = 193, .external_lex_state = 14}, - [2110] = {.lex_state = 291, .external_lex_state = 16}, - [2111] = {.lex_state = 193, .external_lex_state = 10}, - [2112] = {.lex_state = 327, .external_lex_state = 22}, - [2113] = {.lex_state = 327, .external_lex_state = 22}, - [2114] = {.lex_state = 103, .external_lex_state = 16}, - [2115] = {.lex_state = 291, .external_lex_state = 16}, - [2116] = {.lex_state = 193, .external_lex_state = 10}, - [2117] = {.lex_state = 289, .external_lex_state = 16}, - [2118] = {.lex_state = 193, .external_lex_state = 10}, - [2119] = {.lex_state = 293}, - [2120] = {.lex_state = 291, .external_lex_state = 16}, - [2121] = {.lex_state = 193, .external_lex_state = 10}, - [2122] = {.lex_state = 293}, - [2123] = {.lex_state = 291, .external_lex_state = 16}, - [2124] = {.lex_state = 293}, - [2125] = {.lex_state = 291, .external_lex_state = 16}, - [2126] = {.lex_state = 291, .external_lex_state = 16}, - [2127] = {.lex_state = 193, .external_lex_state = 10}, - [2128] = {.lex_state = 291, .external_lex_state = 16}, - [2129] = {.lex_state = 184, .external_lex_state = 5}, - [2130] = {.lex_state = 184, .external_lex_state = 5}, - [2131] = {.lex_state = 184, .external_lex_state = 5}, - [2132] = {.lex_state = 291, .external_lex_state = 16}, - [2133] = {.lex_state = 327, .external_lex_state = 22}, - [2134] = {.lex_state = 327, .external_lex_state = 22}, - [2135] = {.lex_state = 103, .external_lex_state = 16}, - [2136] = {.lex_state = 291, .external_lex_state = 16}, - [2137] = {.lex_state = 184, .external_lex_state = 5}, - [2138] = {.lex_state = 291, .external_lex_state = 16}, - [2139] = {.lex_state = 184, .external_lex_state = 5}, - [2140] = {.lex_state = 291, .external_lex_state = 16}, - [2141] = {.lex_state = 184, .external_lex_state = 5}, - [2142] = {.lex_state = 291, .external_lex_state = 16}, - [2143] = {.lex_state = 184, .external_lex_state = 5}, - [2144] = {.lex_state = 291, .external_lex_state = 16}, - [2145] = {.lex_state = 287, .external_lex_state = 5}, - [2146] = {.lex_state = 287, .external_lex_state = 5}, - [2147] = {.lex_state = 287, .external_lex_state = 5}, - [2148] = {.lex_state = 289, .external_lex_state = 16}, - [2149] = {.lex_state = 287, .external_lex_state = 5}, - [2150] = {.lex_state = 293}, - [2151] = {.lex_state = 291, .external_lex_state = 16}, - [2152] = {.lex_state = 103}, - [2153] = {.lex_state = 226, .external_lex_state = 16}, - [2154] = {.lex_state = 226, .external_lex_state = 16}, - [2155] = {.lex_state = 226, .external_lex_state = 16}, - [2156] = {.lex_state = 287, .external_lex_state = 5}, - [2157] = {.lex_state = 293}, - [2158] = {.lex_state = 291, .external_lex_state = 16}, - [2159] = {.lex_state = 287, .external_lex_state = 5}, - [2160] = {.lex_state = 293}, - [2161] = {.lex_state = 291, .external_lex_state = 16}, - [2162] = {.lex_state = 287, .external_lex_state = 5}, - [2163] = {.lex_state = 287, .external_lex_state = 5}, - [2164] = {.lex_state = 217, .external_lex_state = 11}, - [2165] = {.lex_state = 217, .external_lex_state = 11}, - [2166] = {.lex_state = 217, .external_lex_state = 11}, - [2167] = {.lex_state = 291, .external_lex_state = 16}, - [2168] = {.lex_state = 327, .external_lex_state = 22}, - [2169] = {.lex_state = 327, .external_lex_state = 22}, - [2170] = {.lex_state = 103, .external_lex_state = 16}, - [2171] = {.lex_state = 291, .external_lex_state = 16}, - [2172] = {.lex_state = 217, .external_lex_state = 11}, - [2173] = {.lex_state = 291, .external_lex_state = 16}, - [2174] = {.lex_state = 217, .external_lex_state = 11}, - [2175] = {.lex_state = 291, .external_lex_state = 16}, - [2176] = {.lex_state = 217, .external_lex_state = 11}, - [2177] = {.lex_state = 291, .external_lex_state = 16}, - [2178] = {.lex_state = 217, .external_lex_state = 11}, - [2179] = {.lex_state = 291, .external_lex_state = 16}, - [2180] = {.lex_state = 219, .external_lex_state = 13}, - [2181] = {.lex_state = 219, .external_lex_state = 13}, - [2182] = {.lex_state = 219, .external_lex_state = 13}, - [2183] = {.lex_state = 291, .external_lex_state = 16}, - [2184] = {.lex_state = 327, .external_lex_state = 22}, - [2185] = {.lex_state = 327, .external_lex_state = 22}, - [2186] = {.lex_state = 103, .external_lex_state = 16}, - [2187] = {.lex_state = 291, .external_lex_state = 16}, - [2188] = {.lex_state = 219, .external_lex_state = 13}, - [2189] = {.lex_state = 291, .external_lex_state = 16}, - [2190] = {.lex_state = 219, .external_lex_state = 13}, - [2191] = {.lex_state = 291, .external_lex_state = 16}, - [2192] = {.lex_state = 219, .external_lex_state = 13}, - [2193] = {.lex_state = 291, .external_lex_state = 16}, - [2194] = {.lex_state = 219, .external_lex_state = 13}, - [2195] = {.lex_state = 291, .external_lex_state = 16}, - [2196] = {.lex_state = 193, .external_lex_state = 3}, - [2197] = {.lex_state = 153, .external_lex_state = 14}, - [2198] = {.lex_state = 153, .external_lex_state = 14}, - [2199] = {.lex_state = 153, .external_lex_state = 14}, - [2200] = {.lex_state = 291, .external_lex_state = 16}, - [2201] = {.lex_state = 327, .external_lex_state = 22}, - [2202] = {.lex_state = 327, .external_lex_state = 22}, - [2203] = {.lex_state = 103, .external_lex_state = 16}, - [2204] = {.lex_state = 291, .external_lex_state = 16}, - [2205] = {.lex_state = 153, .external_lex_state = 14}, - [2206] = {.lex_state = 291, .external_lex_state = 16}, - [2207] = {.lex_state = 153, .external_lex_state = 14}, - [2208] = {.lex_state = 291, .external_lex_state = 16}, - [2209] = {.lex_state = 153, .external_lex_state = 14}, - [2210] = {.lex_state = 291, .external_lex_state = 16}, - [2211] = {.lex_state = 153, .external_lex_state = 14}, - [2212] = {.lex_state = 291, .external_lex_state = 16}, - [2213] = {.lex_state = 153, .external_lex_state = 10}, - [2214] = {.lex_state = 153, .external_lex_state = 10}, - [2215] = {.lex_state = 153, .external_lex_state = 10}, - [2216] = {.lex_state = 291, .external_lex_state = 16}, - [2217] = {.lex_state = 327, .external_lex_state = 22}, - [2218] = {.lex_state = 327, .external_lex_state = 22}, - [2219] = {.lex_state = 103, .external_lex_state = 16}, - [2220] = {.lex_state = 291, .external_lex_state = 16}, - [2221] = {.lex_state = 153, .external_lex_state = 10}, - [2222] = {.lex_state = 291, .external_lex_state = 16}, - [2223] = {.lex_state = 153, .external_lex_state = 10}, - [2224] = {.lex_state = 291, .external_lex_state = 16}, - [2225] = {.lex_state = 153, .external_lex_state = 10}, - [2226] = {.lex_state = 291, .external_lex_state = 16}, - [2227] = {.lex_state = 153, .external_lex_state = 10}, - [2228] = {.lex_state = 291, .external_lex_state = 16}, - [2229] = {.lex_state = 141, .external_lex_state = 15}, - [2230] = {.lex_state = 141, .external_lex_state = 15}, - [2231] = {.lex_state = 141, .external_lex_state = 15}, - [2232] = {.lex_state = 291, .external_lex_state = 16}, - [2233] = {.lex_state = 327, .external_lex_state = 22}, - [2234] = {.lex_state = 327, .external_lex_state = 22}, - [2235] = {.lex_state = 103, .external_lex_state = 16}, - [2236] = {.lex_state = 291, .external_lex_state = 16}, - [2237] = {.lex_state = 141, .external_lex_state = 15}, - [2238] = {.lex_state = 291, .external_lex_state = 16}, - [2239] = {.lex_state = 141, .external_lex_state = 15}, - [2240] = {.lex_state = 291, .external_lex_state = 16}, - [2241] = {.lex_state = 141, .external_lex_state = 15}, - [2242] = {.lex_state = 291, .external_lex_state = 16}, - [2243] = {.lex_state = 141, .external_lex_state = 15}, - [2244] = {.lex_state = 291, .external_lex_state = 16}, - [2245] = {.lex_state = 165, .external_lex_state = 13}, - [2246] = {.lex_state = 165, .external_lex_state = 13}, - [2247] = {.lex_state = 165, .external_lex_state = 13}, - [2248] = {.lex_state = 291, .external_lex_state = 16}, - [2249] = {.lex_state = 327, .external_lex_state = 22}, - [2250] = {.lex_state = 327, .external_lex_state = 22}, - [2251] = {.lex_state = 103, .external_lex_state = 16}, - [2252] = {.lex_state = 291, .external_lex_state = 16}, - [2253] = {.lex_state = 165, .external_lex_state = 13}, - [2254] = {.lex_state = 291, .external_lex_state = 16}, - [2255] = {.lex_state = 165, .external_lex_state = 13}, - [2256] = {.lex_state = 291, .external_lex_state = 16}, - [2257] = {.lex_state = 165, .external_lex_state = 13}, - [2258] = {.lex_state = 291, .external_lex_state = 16}, - [2259] = {.lex_state = 165, .external_lex_state = 13}, - [2260] = {.lex_state = 291, .external_lex_state = 16}, - [2261] = {.lex_state = 226, .external_lex_state = 22}, - [2262] = {.lex_state = 226, .external_lex_state = 16}, - [2263] = {.lex_state = 226, .external_lex_state = 22}, - [2264] = {.lex_state = 226, .external_lex_state = 16}, - [2265] = {.lex_state = 327, .external_lex_state = 22}, - [2266] = {.lex_state = 327, .external_lex_state = 22}, - [2267] = {.lex_state = 327, .external_lex_state = 22}, - [2268] = {.lex_state = 289, .external_lex_state = 16}, - [2269] = {.lex_state = 327, .external_lex_state = 22}, - [2270] = {.lex_state = 293}, - [2271] = {.lex_state = 291, .external_lex_state = 16}, - [2272] = {.lex_state = 103}, - [2273] = {.lex_state = 226, .external_lex_state = 16}, - [2274] = {.lex_state = 226, .external_lex_state = 16}, - [2275] = {.lex_state = 226, .external_lex_state = 16}, - [2276] = {.lex_state = 327, .external_lex_state = 22}, - [2277] = {.lex_state = 293}, - [2278] = {.lex_state = 291, .external_lex_state = 16}, - [2279] = {.lex_state = 327, .external_lex_state = 22}, - [2280] = {.lex_state = 293}, - [2281] = {.lex_state = 291, .external_lex_state = 16}, - [2282] = {.lex_state = 327, .external_lex_state = 22}, - [2283] = {.lex_state = 327, .external_lex_state = 22}, - [2284] = {.lex_state = 291, .external_lex_state = 22}, - [2285] = {.lex_state = 327, .external_lex_state = 22}, - [2286] = {.lex_state = 327, .external_lex_state = 22}, - [2287] = {.lex_state = 103, .external_lex_state = 16}, - [2288] = {.lex_state = 291, .external_lex_state = 16}, - [2289] = {.lex_state = 291, .external_lex_state = 22}, - [2290] = {.lex_state = 289, .external_lex_state = 16}, - [2291] = {.lex_state = 291, .external_lex_state = 22}, - [2292] = {.lex_state = 293}, - [2293] = {.lex_state = 291, .external_lex_state = 16}, - [2294] = {.lex_state = 291, .external_lex_state = 22}, - [2295] = {.lex_state = 293}, - [2296] = {.lex_state = 291, .external_lex_state = 16}, - [2297] = {.lex_state = 293}, - [2298] = {.lex_state = 291, .external_lex_state = 16}, - [2299] = {.lex_state = 291, .external_lex_state = 16}, - [2300] = {.lex_state = 291, .external_lex_state = 22}, - [2301] = {.lex_state = 291, .external_lex_state = 16}, - [2302] = {.lex_state = 162, .external_lex_state = 5}, - [2303] = {.lex_state = 162, .external_lex_state = 5}, - [2304] = {.lex_state = 162, .external_lex_state = 5}, - [2305] = {.lex_state = 162, .external_lex_state = 5}, - [2306] = {.lex_state = 291, .external_lex_state = 16}, - [2307] = {.lex_state = 162, .external_lex_state = 5}, - [2308] = {.lex_state = 291, .external_lex_state = 16}, - [2309] = {.lex_state = 162, .external_lex_state = 5}, - [2310] = {.lex_state = 291, .external_lex_state = 16}, - [2311] = {.lex_state = 162, .external_lex_state = 5}, - [2312] = {.lex_state = 162, .external_lex_state = 5}, - [2313] = {.lex_state = 241, .external_lex_state = 2}, - [2314] = {.lex_state = 241, .external_lex_state = 15}, - [2315] = {.lex_state = 241, .external_lex_state = 15}, - [2316] = {.lex_state = 241, .external_lex_state = 15}, - [2317] = {.lex_state = 289, .external_lex_state = 16}, - [2318] = {.lex_state = 241, .external_lex_state = 15}, - [2319] = {.lex_state = 293}, - [2320] = {.lex_state = 291, .external_lex_state = 16}, - [2321] = {.lex_state = 103}, - [2322] = {.lex_state = 226, .external_lex_state = 16}, - [2323] = {.lex_state = 226, .external_lex_state = 16}, - [2324] = {.lex_state = 226, .external_lex_state = 16}, - [2325] = {.lex_state = 241, .external_lex_state = 15}, - [2326] = {.lex_state = 293}, - [2327] = {.lex_state = 291, .external_lex_state = 16}, - [2328] = {.lex_state = 241, .external_lex_state = 15}, - [2329] = {.lex_state = 293}, - [2330] = {.lex_state = 291, .external_lex_state = 16}, - [2331] = {.lex_state = 241, .external_lex_state = 15}, - [2332] = {.lex_state = 241, .external_lex_state = 15}, - [2333] = {.lex_state = 103}, - [2334] = {.lex_state = 103}, - [2335] = {.lex_state = 262, .external_lex_state = 2}, - [2336] = {.lex_state = 298, .external_lex_state = 18}, - [2337] = {.lex_state = 103}, - [2338] = {.lex_state = 103}, - [2339] = {.lex_state = 103}, - [2340] = {.lex_state = 103}, - [2341] = {.lex_state = 103}, - [2342] = {.lex_state = 141}, - [2343] = {.lex_state = 317}, - [2344] = {.lex_state = 103}, - [2345] = {.lex_state = 103}, - [2346] = {.lex_state = 141}, - [2347] = {.lex_state = 317}, - [2348] = {.lex_state = 329, .external_lex_state = 18}, - [2349] = {.lex_state = 337, .external_lex_state = 18}, - [2350] = {.lex_state = 141}, - [2351] = {.lex_state = 344, .external_lex_state = 13}, - [2352] = {.lex_state = 165}, - [2353] = {.lex_state = 170}, - [2354] = {.lex_state = 344, .external_lex_state = 13}, - [2355] = {.lex_state = 175, .external_lex_state = 6}, - [2356] = {.lex_state = 20, .external_lex_state = 2}, - [2357] = {.lex_state = 20, .external_lex_state = 2}, - [2358] = {.lex_state = 20, .external_lex_state = 2}, - [2359] = {.lex_state = 103}, - [2360] = {.lex_state = 103}, - [2361] = {.lex_state = 237, .external_lex_state = 6}, - [2362] = {.lex_state = 241}, - [2363] = {.lex_state = 237, .external_lex_state = 23}, - [2364] = {.lex_state = 327, .external_lex_state = 22}, - [2365] = {.lex_state = 327, .external_lex_state = 22}, - [2366] = {.lex_state = 103, .external_lex_state = 16}, - [2367] = {.lex_state = 291, .external_lex_state = 16}, - [2368] = {.lex_state = 237, .external_lex_state = 23}, - [2369] = {.lex_state = 289, .external_lex_state = 16}, - [2370] = {.lex_state = 237, .external_lex_state = 23}, - [2371] = {.lex_state = 293}, - [2372] = {.lex_state = 291, .external_lex_state = 16}, - [2373] = {.lex_state = 237, .external_lex_state = 23}, - [2374] = {.lex_state = 293}, - [2375] = {.lex_state = 291, .external_lex_state = 16}, - [2376] = {.lex_state = 293}, - [2377] = {.lex_state = 291, .external_lex_state = 16}, - [2378] = {.lex_state = 291, .external_lex_state = 16}, - [2379] = {.lex_state = 237, .external_lex_state = 23}, - [2380] = {.lex_state = 291, .external_lex_state = 16}, - [2381] = {.lex_state = 237, .external_lex_state = 13}, - [2382] = {.lex_state = 327, .external_lex_state = 22}, - [2383] = {.lex_state = 327, .external_lex_state = 22}, - [2384] = {.lex_state = 103, .external_lex_state = 16}, - [2385] = {.lex_state = 291, .external_lex_state = 16}, - [2386] = {.lex_state = 237, .external_lex_state = 13}, - [2387] = {.lex_state = 289, .external_lex_state = 16}, - [2388] = {.lex_state = 237, .external_lex_state = 13}, - [2389] = {.lex_state = 293}, - [2390] = {.lex_state = 291, .external_lex_state = 16}, - [2391] = {.lex_state = 237, .external_lex_state = 13}, - [2392] = {.lex_state = 293}, - [2393] = {.lex_state = 291, .external_lex_state = 16}, - [2394] = {.lex_state = 293}, - [2395] = {.lex_state = 291, .external_lex_state = 16}, - [2396] = {.lex_state = 291, .external_lex_state = 16}, - [2397] = {.lex_state = 237, .external_lex_state = 13}, - [2398] = {.lex_state = 291, .external_lex_state = 16}, - [2399] = {.lex_state = 143, .external_lex_state = 17}, - [2400] = {.lex_state = 143, .external_lex_state = 17}, - [2401] = {.lex_state = 143, .external_lex_state = 17}, - [2402] = {.lex_state = 291, .external_lex_state = 16}, - [2403] = {.lex_state = 327, .external_lex_state = 22}, - [2404] = {.lex_state = 327, .external_lex_state = 22}, - [2405] = {.lex_state = 103, .external_lex_state = 16}, - [2406] = {.lex_state = 291, .external_lex_state = 16}, - [2407] = {.lex_state = 143, .external_lex_state = 17}, - [2408] = {.lex_state = 291, .external_lex_state = 16}, - [2409] = {.lex_state = 143, .external_lex_state = 17}, - [2410] = {.lex_state = 291, .external_lex_state = 16}, - [2411] = {.lex_state = 143, .external_lex_state = 17}, - [2412] = {.lex_state = 291, .external_lex_state = 16}, - [2413] = {.lex_state = 143, .external_lex_state = 17}, - [2414] = {.lex_state = 291, .external_lex_state = 16}, - [2415] = {.lex_state = 103}, - [2416] = {.lex_state = 300, .external_lex_state = 17}, - [2417] = {.lex_state = 300, .external_lex_state = 17}, - [2418] = {.lex_state = 300, .external_lex_state = 17}, - [2419] = {.lex_state = 289, .external_lex_state = 16}, - [2420] = {.lex_state = 300, .external_lex_state = 17}, - [2421] = {.lex_state = 293}, - [2422] = {.lex_state = 291, .external_lex_state = 16}, - [2423] = {.lex_state = 103}, - [2424] = {.lex_state = 226, .external_lex_state = 16}, - [2425] = {.lex_state = 226, .external_lex_state = 16}, - [2426] = {.lex_state = 226, .external_lex_state = 16}, - [2427] = {.lex_state = 300, .external_lex_state = 17}, - [2428] = {.lex_state = 293}, - [2429] = {.lex_state = 291, .external_lex_state = 16}, - [2430] = {.lex_state = 300, .external_lex_state = 17}, - [2431] = {.lex_state = 293}, - [2432] = {.lex_state = 291, .external_lex_state = 16}, - [2433] = {.lex_state = 300, .external_lex_state = 17}, - [2434] = {.lex_state = 300, .external_lex_state = 17}, - [2435] = {.lex_state = 298, .external_lex_state = 18}, - [2436] = {.lex_state = 249, .external_lex_state = 15}, - [2437] = {.lex_state = 249, .external_lex_state = 15}, - [2438] = {.lex_state = 249, .external_lex_state = 15}, - [2439] = {.lex_state = 289, .external_lex_state = 16}, - [2440] = {.lex_state = 249, .external_lex_state = 15}, - [2441] = {.lex_state = 293}, - [2442] = {.lex_state = 291, .external_lex_state = 16}, - [2443] = {.lex_state = 103}, - [2444] = {.lex_state = 226, .external_lex_state = 16}, - [2445] = {.lex_state = 226, .external_lex_state = 16}, - [2446] = {.lex_state = 226, .external_lex_state = 16}, - [2447] = {.lex_state = 249, .external_lex_state = 15}, - [2448] = {.lex_state = 293}, - [2449] = {.lex_state = 291, .external_lex_state = 16}, - [2450] = {.lex_state = 249, .external_lex_state = 15}, - [2451] = {.lex_state = 293}, - [2452] = {.lex_state = 291, .external_lex_state = 16}, - [2453] = {.lex_state = 249, .external_lex_state = 15}, - [2454] = {.lex_state = 249, .external_lex_state = 15}, - [2455] = {.lex_state = 331, .external_lex_state = 18}, - [2456] = {.lex_state = 141}, - [2457] = {.lex_state = 346, .external_lex_state = 13}, - [2458] = {.lex_state = 165}, - [2459] = {.lex_state = 170}, - [2460] = {.lex_state = 346, .external_lex_state = 13}, - [2461] = {.lex_state = 175, .external_lex_state = 6}, - [2462] = {.lex_state = 20, .external_lex_state = 2}, - [2463] = {.lex_state = 20, .external_lex_state = 2}, - [2464] = {.lex_state = 20, .external_lex_state = 2}, - [2465] = {.lex_state = 243, .external_lex_state = 23}, - [2466] = {.lex_state = 327, .external_lex_state = 22}, - [2467] = {.lex_state = 327, .external_lex_state = 22}, - [2468] = {.lex_state = 103, .external_lex_state = 16}, - [2469] = {.lex_state = 291, .external_lex_state = 16}, - [2470] = {.lex_state = 243, .external_lex_state = 23}, - [2471] = {.lex_state = 289, .external_lex_state = 16}, - [2472] = {.lex_state = 243, .external_lex_state = 23}, - [2473] = {.lex_state = 293}, - [2474] = {.lex_state = 291, .external_lex_state = 16}, - [2475] = {.lex_state = 243, .external_lex_state = 23}, - [2476] = {.lex_state = 293}, - [2477] = {.lex_state = 291, .external_lex_state = 16}, - [2478] = {.lex_state = 293}, - [2479] = {.lex_state = 291, .external_lex_state = 16}, - [2480] = {.lex_state = 291, .external_lex_state = 16}, - [2481] = {.lex_state = 243, .external_lex_state = 23}, - [2482] = {.lex_state = 291, .external_lex_state = 16}, - [2483] = {.lex_state = 243, .external_lex_state = 13}, - [2484] = {.lex_state = 327, .external_lex_state = 22}, - [2485] = {.lex_state = 327, .external_lex_state = 22}, - [2486] = {.lex_state = 103, .external_lex_state = 16}, - [2487] = {.lex_state = 291, .external_lex_state = 16}, - [2488] = {.lex_state = 243, .external_lex_state = 13}, - [2489] = {.lex_state = 289, .external_lex_state = 16}, - [2490] = {.lex_state = 243, .external_lex_state = 13}, - [2491] = {.lex_state = 293}, - [2492] = {.lex_state = 291, .external_lex_state = 16}, - [2493] = {.lex_state = 243, .external_lex_state = 13}, - [2494] = {.lex_state = 293}, - [2495] = {.lex_state = 291, .external_lex_state = 16}, - [2496] = {.lex_state = 293}, - [2497] = {.lex_state = 291, .external_lex_state = 16}, - [2498] = {.lex_state = 291, .external_lex_state = 16}, - [2499] = {.lex_state = 243, .external_lex_state = 13}, - [2500] = {.lex_state = 291, .external_lex_state = 16}, - [2501] = {.lex_state = 245, .external_lex_state = 17}, - [2502] = {.lex_state = 245, .external_lex_state = 17}, - [2503] = {.lex_state = 245, .external_lex_state = 17}, - [2504] = {.lex_state = 291, .external_lex_state = 16}, - [2505] = {.lex_state = 327, .external_lex_state = 22}, - [2506] = {.lex_state = 327, .external_lex_state = 22}, - [2507] = {.lex_state = 103, .external_lex_state = 16}, - [2508] = {.lex_state = 291, .external_lex_state = 16}, - [2509] = {.lex_state = 245, .external_lex_state = 17}, - [2510] = {.lex_state = 291, .external_lex_state = 16}, - [2511] = {.lex_state = 245, .external_lex_state = 17}, - [2512] = {.lex_state = 291, .external_lex_state = 16}, - [2513] = {.lex_state = 245, .external_lex_state = 17}, - [2514] = {.lex_state = 291, .external_lex_state = 16}, - [2515] = {.lex_state = 245, .external_lex_state = 17}, - [2516] = {.lex_state = 291, .external_lex_state = 16}, - [2517] = {.lex_state = 302, .external_lex_state = 17}, - [2518] = {.lex_state = 302, .external_lex_state = 17}, - [2519] = {.lex_state = 302, .external_lex_state = 17}, - [2520] = {.lex_state = 289, .external_lex_state = 16}, - [2521] = {.lex_state = 302, .external_lex_state = 17}, - [2522] = {.lex_state = 293}, - [2523] = {.lex_state = 291, .external_lex_state = 16}, - [2524] = {.lex_state = 103}, - [2525] = {.lex_state = 226, .external_lex_state = 16}, - [2526] = {.lex_state = 226, .external_lex_state = 16}, - [2527] = {.lex_state = 226, .external_lex_state = 16}, - [2528] = {.lex_state = 302, .external_lex_state = 17}, - [2529] = {.lex_state = 293}, - [2530] = {.lex_state = 291, .external_lex_state = 16}, - [2531] = {.lex_state = 302, .external_lex_state = 17}, - [2532] = {.lex_state = 293}, - [2533] = {.lex_state = 291, .external_lex_state = 16}, - [2534] = {.lex_state = 302, .external_lex_state = 17}, - [2535] = {.lex_state = 302, .external_lex_state = 17}, - [2536] = {.lex_state = 258, .external_lex_state = 5}, - [2537] = {.lex_state = 327, .external_lex_state = 22}, - [2538] = {.lex_state = 327, .external_lex_state = 22}, - [2539] = {.lex_state = 103, .external_lex_state = 16}, - [2540] = {.lex_state = 291, .external_lex_state = 16}, - [2541] = {.lex_state = 258, .external_lex_state = 5}, - [2542] = {.lex_state = 289, .external_lex_state = 16}, - [2543] = {.lex_state = 258, .external_lex_state = 5}, - [2544] = {.lex_state = 293}, - [2545] = {.lex_state = 291, .external_lex_state = 16}, - [2546] = {.lex_state = 258, .external_lex_state = 5}, - [2547] = {.lex_state = 293}, - [2548] = {.lex_state = 291, .external_lex_state = 16}, - [2549] = {.lex_state = 293}, - [2550] = {.lex_state = 291, .external_lex_state = 16}, - [2551] = {.lex_state = 291, .external_lex_state = 16}, - [2552] = {.lex_state = 258, .external_lex_state = 5}, - [2553] = {.lex_state = 291, .external_lex_state = 16}, - [2554] = {.lex_state = 289, .external_lex_state = 16}, - [2555] = {.lex_state = 304, .external_lex_state = 24}, - [2556] = {.lex_state = 293}, - [2557] = {.lex_state = 291, .external_lex_state = 16}, - [2558] = {.lex_state = 103}, - [2559] = {.lex_state = 226, .external_lex_state = 16}, - [2560] = {.lex_state = 226, .external_lex_state = 16}, - [2561] = {.lex_state = 226, .external_lex_state = 16}, - [2562] = {.lex_state = 304, .external_lex_state = 24}, - [2563] = {.lex_state = 293}, - [2564] = {.lex_state = 291, .external_lex_state = 16}, - [2565] = {.lex_state = 304, .external_lex_state = 24}, - [2566] = {.lex_state = 293}, - [2567] = {.lex_state = 291, .external_lex_state = 16}, - [2568] = {.lex_state = 260, .external_lex_state = 11}, - [2569] = {.lex_state = 260, .external_lex_state = 11}, - [2570] = {.lex_state = 260, .external_lex_state = 11}, - [2571] = {.lex_state = 291, .external_lex_state = 16}, - [2572] = {.lex_state = 327, .external_lex_state = 22}, - [2573] = {.lex_state = 327, .external_lex_state = 22}, - [2574] = {.lex_state = 103, .external_lex_state = 16}, - [2575] = {.lex_state = 291, .external_lex_state = 16}, - [2576] = {.lex_state = 260, .external_lex_state = 11}, - [2577] = {.lex_state = 291, .external_lex_state = 16}, - [2578] = {.lex_state = 260, .external_lex_state = 11}, - [2579] = {.lex_state = 291, .external_lex_state = 16}, - [2580] = {.lex_state = 260, .external_lex_state = 11}, - [2581] = {.lex_state = 291, .external_lex_state = 16}, - [2582] = {.lex_state = 260, .external_lex_state = 11}, - [2583] = {.lex_state = 291, .external_lex_state = 16}, - [2584] = {.lex_state = 311, .external_lex_state = 13}, - [2585] = {.lex_state = 327, .external_lex_state = 22}, - [2586] = {.lex_state = 327, .external_lex_state = 22}, - [2587] = {.lex_state = 103, .external_lex_state = 16}, - [2588] = {.lex_state = 291, .external_lex_state = 16}, - [2589] = {.lex_state = 311, .external_lex_state = 13}, - [2590] = {.lex_state = 289, .external_lex_state = 16}, - [2591] = {.lex_state = 311, .external_lex_state = 13}, - [2592] = {.lex_state = 293}, - [2593] = {.lex_state = 291, .external_lex_state = 16}, - [2594] = {.lex_state = 311, .external_lex_state = 13}, - [2595] = {.lex_state = 293}, - [2596] = {.lex_state = 291, .external_lex_state = 16}, - [2597] = {.lex_state = 293}, - [2598] = {.lex_state = 291, .external_lex_state = 16}, - [2599] = {.lex_state = 291, .external_lex_state = 16}, - [2600] = {.lex_state = 311, .external_lex_state = 13}, - [2601] = {.lex_state = 291, .external_lex_state = 16}, - [2602] = {.lex_state = 182, .external_lex_state = 20}, - [2603] = {.lex_state = 182, .external_lex_state = 20}, - [2604] = {.lex_state = 182, .external_lex_state = 20}, - [2605] = {.lex_state = 291, .external_lex_state = 16}, - [2606] = {.lex_state = 327, .external_lex_state = 22}, - [2607] = {.lex_state = 327, .external_lex_state = 22}, - [2608] = {.lex_state = 103, .external_lex_state = 16}, - [2609] = {.lex_state = 291, .external_lex_state = 16}, - [2610] = {.lex_state = 182, .external_lex_state = 20}, - [2611] = {.lex_state = 291, .external_lex_state = 16}, - [2612] = {.lex_state = 182, .external_lex_state = 20}, - [2613] = {.lex_state = 291, .external_lex_state = 16}, - [2614] = {.lex_state = 182, .external_lex_state = 20}, - [2615] = {.lex_state = 291, .external_lex_state = 16}, - [2616] = {.lex_state = 182, .external_lex_state = 20}, - [2617] = {.lex_state = 291, .external_lex_state = 16}, - [2618] = {.lex_state = 313, .external_lex_state = 10}, - [2619] = {.lex_state = 327, .external_lex_state = 22}, - [2620] = {.lex_state = 327, .external_lex_state = 22}, - [2621] = {.lex_state = 103, .external_lex_state = 16}, - [2622] = {.lex_state = 291, .external_lex_state = 16}, - [2623] = {.lex_state = 313, .external_lex_state = 10}, - [2624] = {.lex_state = 289, .external_lex_state = 16}, - [2625] = {.lex_state = 313, .external_lex_state = 10}, - [2626] = {.lex_state = 293}, - [2627] = {.lex_state = 291, .external_lex_state = 16}, - [2628] = {.lex_state = 313, .external_lex_state = 10}, - [2629] = {.lex_state = 293}, - [2630] = {.lex_state = 291, .external_lex_state = 16}, - [2631] = {.lex_state = 293}, - [2632] = {.lex_state = 291, .external_lex_state = 16}, - [2633] = {.lex_state = 291, .external_lex_state = 16}, - [2634] = {.lex_state = 313, .external_lex_state = 10}, - [2635] = {.lex_state = 291, .external_lex_state = 16}, - [2636] = {.lex_state = 268, .external_lex_state = 2}, - [2637] = {.lex_state = 283, .external_lex_state = 4}, - [2638] = {.lex_state = 333, .external_lex_state = 13}, - [2639] = {.lex_state = 333, .external_lex_state = 13}, - [2640] = {.lex_state = 333, .external_lex_state = 13}, - [2641] = {.lex_state = 137}, - [2642] = {.lex_state = 103}, - [2643] = {.lex_state = 20, .external_lex_state = 2}, - [2644] = {.lex_state = 317}, - [2645] = {.lex_state = 141}, - [2646] = {.lex_state = 143}, - [2647] = {.lex_state = 143}, - [2648] = {.lex_state = 348, .external_lex_state = 3}, - [2649] = {.lex_state = 348, .external_lex_state = 4}, - [2650] = {.lex_state = 354, .external_lex_state = 5}, - [2651] = {.lex_state = 165}, - [2652] = {.lex_state = 170}, - [2653] = {.lex_state = 354, .external_lex_state = 5}, - [2654] = {.lex_state = 175, .external_lex_state = 6}, - [2655] = {.lex_state = 20, .external_lex_state = 2}, - [2656] = {.lex_state = 20, .external_lex_state = 2}, - [2657] = {.lex_state = 20, .external_lex_state = 2}, - [2658] = {.lex_state = 356, .external_lex_state = 5}, - [2659] = {.lex_state = 339, .external_lex_state = 2}, - [2660] = {.lex_state = 283, .external_lex_state = 4}, - [2661] = {.lex_state = 354, .external_lex_state = 7}, - [2662] = {.lex_state = 358, .external_lex_state = 8}, - [2663] = {.lex_state = 103}, - [2664] = {.lex_state = 354, .external_lex_state = 7}, - [2665] = {.lex_state = 339, .external_lex_state = 2}, - [2666] = {.lex_state = 141, .external_lex_state = 2}, - [2667] = {.lex_state = 339, .external_lex_state = 2}, - [2668] = {.lex_state = 137}, - [2669] = {.lex_state = 333, .external_lex_state = 13}, - [2670] = {.lex_state = 333, .external_lex_state = 13}, - [2671] = {.lex_state = 317}, - [2672] = {.lex_state = 283, .external_lex_state = 4}, - [2673] = {.lex_state = 358, .external_lex_state = 8}, - [2674] = {.lex_state = 339, .external_lex_state = 2}, - [2675] = {.lex_state = 339, .external_lex_state = 2}, - [2676] = {.lex_state = 289, .external_lex_state = 16}, - [2677] = {.lex_state = 333, .external_lex_state = 13}, - [2678] = {.lex_state = 293}, - [2679] = {.lex_state = 291, .external_lex_state = 16}, - [2680] = {.lex_state = 103}, - [2681] = {.lex_state = 226, .external_lex_state = 16}, - [2682] = {.lex_state = 226, .external_lex_state = 16}, - [2683] = {.lex_state = 226, .external_lex_state = 16}, - [2684] = {.lex_state = 333, .external_lex_state = 13}, - [2685] = {.lex_state = 293}, - [2686] = {.lex_state = 291, .external_lex_state = 16}, - [2687] = {.lex_state = 333, .external_lex_state = 13}, - [2688] = {.lex_state = 293}, - [2689] = {.lex_state = 291, .external_lex_state = 16}, - [2690] = {.lex_state = 333, .external_lex_state = 13}, - [2691] = {.lex_state = 333, .external_lex_state = 13}, - [2692] = {.lex_state = 283, .external_lex_state = 4}, - [2693] = {.lex_state = 333, .external_lex_state = 13}, - [2694] = {.lex_state = 333, .external_lex_state = 13}, - [2695] = {.lex_state = 137}, - [2696] = {.lex_state = 103}, - [2697] = {.lex_state = 283, .external_lex_state = 4}, - [2698] = {.lex_state = 103}, - [2699] = {.lex_state = 190, .external_lex_state = 10}, - [2700] = {.lex_state = 190, .external_lex_state = 10}, - [2701] = {.lex_state = 190, .external_lex_state = 10}, - [2702] = {.lex_state = 190, .external_lex_state = 10}, - [2703] = {.lex_state = 291, .external_lex_state = 16}, - [2704] = {.lex_state = 190, .external_lex_state = 10}, - [2705] = {.lex_state = 291, .external_lex_state = 16}, - [2706] = {.lex_state = 190, .external_lex_state = 10}, - [2707] = {.lex_state = 291, .external_lex_state = 16}, - [2708] = {.lex_state = 190, .external_lex_state = 10}, - [2709] = {.lex_state = 190, .external_lex_state = 10}, - [2710] = {.lex_state = 335, .external_lex_state = 10}, - [2711] = {.lex_state = 335, .external_lex_state = 10}, - [2712] = {.lex_state = 335, .external_lex_state = 10}, - [2713] = {.lex_state = 289, .external_lex_state = 16}, - [2714] = {.lex_state = 335, .external_lex_state = 10}, - [2715] = {.lex_state = 293}, - [2716] = {.lex_state = 291, .external_lex_state = 16}, - [2717] = {.lex_state = 103}, - [2718] = {.lex_state = 226, .external_lex_state = 16}, - [2719] = {.lex_state = 226, .external_lex_state = 16}, - [2720] = {.lex_state = 226, .external_lex_state = 16}, - [2721] = {.lex_state = 335, .external_lex_state = 10}, - [2722] = {.lex_state = 293}, - [2723] = {.lex_state = 291, .external_lex_state = 16}, - [2724] = {.lex_state = 335, .external_lex_state = 10}, - [2725] = {.lex_state = 293}, - [2726] = {.lex_state = 291, .external_lex_state = 16}, - [2727] = {.lex_state = 335, .external_lex_state = 10}, - [2728] = {.lex_state = 335, .external_lex_state = 10}, - [2729] = {.lex_state = 188, .external_lex_state = 20}, - [2730] = {.lex_state = 327, .external_lex_state = 22}, - [2731] = {.lex_state = 327, .external_lex_state = 22}, - [2732] = {.lex_state = 103, .external_lex_state = 16}, - [2733] = {.lex_state = 291, .external_lex_state = 16}, - [2734] = {.lex_state = 188, .external_lex_state = 20}, - [2735] = {.lex_state = 289, .external_lex_state = 16}, - [2736] = {.lex_state = 188, .external_lex_state = 20}, - [2737] = {.lex_state = 293}, - [2738] = {.lex_state = 291, .external_lex_state = 16}, - [2739] = {.lex_state = 188, .external_lex_state = 20}, - [2740] = {.lex_state = 293}, - [2741] = {.lex_state = 291, .external_lex_state = 16}, - [2742] = {.lex_state = 293}, - [2743] = {.lex_state = 291, .external_lex_state = 16}, - [2744] = {.lex_state = 291, .external_lex_state = 16}, - [2745] = {.lex_state = 188, .external_lex_state = 20}, - [2746] = {.lex_state = 291, .external_lex_state = 16}, - [2747] = {.lex_state = 342, .external_lex_state = 10}, - [2748] = {.lex_state = 342, .external_lex_state = 10}, - [2749] = {.lex_state = 141}, - [2750] = {.lex_state = 342, .external_lex_state = 10}, - [2751] = {.lex_state = 342, .external_lex_state = 10}, - [2752] = {.lex_state = 165}, - [2753] = {.lex_state = 342, .external_lex_state = 10}, - [2754] = {.lex_state = 342, .external_lex_state = 10}, - [2755] = {.lex_state = 342, .external_lex_state = 10}, - [2756] = {.lex_state = 103}, - [2757] = {.lex_state = 226, .external_lex_state = 16}, - [2758] = {.lex_state = 235, .external_lex_state = 6}, - [2759] = {.lex_state = 226, .external_lex_state = 16}, - [2760] = {.lex_state = 226, .external_lex_state = 16}, - [2761] = {.lex_state = 103}, - [2762] = {.lex_state = 241, .external_lex_state = 2}, - [2763] = {.lex_state = 103}, - [2764] = {.lex_state = 249, .external_lex_state = 2}, - [2765] = {.lex_state = 103}, - [2766] = {.lex_state = 241, .external_lex_state = 2}, - [2767] = {.lex_state = 193, .external_lex_state = 14}, - [2768] = {.lex_state = 193, .external_lex_state = 14}, - [2769] = {.lex_state = 193, .external_lex_state = 14}, - [2770] = {.lex_state = 291, .external_lex_state = 16}, - [2771] = {.lex_state = 327, .external_lex_state = 22}, - [2772] = {.lex_state = 327, .external_lex_state = 22}, - [2773] = {.lex_state = 103, .external_lex_state = 16}, - [2774] = {.lex_state = 291, .external_lex_state = 16}, - [2775] = {.lex_state = 193, .external_lex_state = 14}, - [2776] = {.lex_state = 291, .external_lex_state = 16}, - [2777] = {.lex_state = 193, .external_lex_state = 14}, - [2778] = {.lex_state = 291, .external_lex_state = 16}, - [2779] = {.lex_state = 193, .external_lex_state = 14}, - [2780] = {.lex_state = 291, .external_lex_state = 16}, - [2781] = {.lex_state = 193, .external_lex_state = 14}, - [2782] = {.lex_state = 291, .external_lex_state = 16}, - [2783] = {.lex_state = 193, .external_lex_state = 10}, - [2784] = {.lex_state = 193, .external_lex_state = 10}, - [2785] = {.lex_state = 193, .external_lex_state = 10}, - [2786] = {.lex_state = 291, .external_lex_state = 16}, - [2787] = {.lex_state = 327, .external_lex_state = 22}, - [2788] = {.lex_state = 327, .external_lex_state = 22}, - [2789] = {.lex_state = 103, .external_lex_state = 16}, - [2790] = {.lex_state = 291, .external_lex_state = 16}, - [2791] = {.lex_state = 193, .external_lex_state = 10}, - [2792] = {.lex_state = 291, .external_lex_state = 16}, - [2793] = {.lex_state = 193, .external_lex_state = 10}, - [2794] = {.lex_state = 291, .external_lex_state = 16}, - [2795] = {.lex_state = 193, .external_lex_state = 10}, - [2796] = {.lex_state = 291, .external_lex_state = 16}, - [2797] = {.lex_state = 193, .external_lex_state = 10}, - [2798] = {.lex_state = 291, .external_lex_state = 16}, - [2799] = {.lex_state = 184, .external_lex_state = 5}, - [2800] = {.lex_state = 184, .external_lex_state = 5}, - [2801] = {.lex_state = 184, .external_lex_state = 5}, - [2802] = {.lex_state = 184, .external_lex_state = 5}, - [2803] = {.lex_state = 291, .external_lex_state = 16}, - [2804] = {.lex_state = 184, .external_lex_state = 5}, - [2805] = {.lex_state = 291, .external_lex_state = 16}, - [2806] = {.lex_state = 184, .external_lex_state = 5}, - [2807] = {.lex_state = 291, .external_lex_state = 16}, - [2808] = {.lex_state = 184, .external_lex_state = 5}, - [2809] = {.lex_state = 184, .external_lex_state = 5}, - [2810] = {.lex_state = 287, .external_lex_state = 5}, - [2811] = {.lex_state = 327, .external_lex_state = 22}, - [2812] = {.lex_state = 327, .external_lex_state = 22}, - [2813] = {.lex_state = 103, .external_lex_state = 16}, - [2814] = {.lex_state = 291, .external_lex_state = 16}, - [2815] = {.lex_state = 287, .external_lex_state = 5}, - [2816] = {.lex_state = 289, .external_lex_state = 16}, - [2817] = {.lex_state = 287, .external_lex_state = 5}, - [2818] = {.lex_state = 293}, - [2819] = {.lex_state = 291, .external_lex_state = 16}, - [2820] = {.lex_state = 287, .external_lex_state = 5}, - [2821] = {.lex_state = 293}, - [2822] = {.lex_state = 291, .external_lex_state = 16}, - [2823] = {.lex_state = 293}, - [2824] = {.lex_state = 291, .external_lex_state = 16}, - [2825] = {.lex_state = 291, .external_lex_state = 16}, - [2826] = {.lex_state = 287, .external_lex_state = 5}, - [2827] = {.lex_state = 291, .external_lex_state = 16}, - [2828] = {.lex_state = 217, .external_lex_state = 11}, - [2829] = {.lex_state = 217, .external_lex_state = 11}, - [2830] = {.lex_state = 217, .external_lex_state = 11}, - [2831] = {.lex_state = 217, .external_lex_state = 11}, - [2832] = {.lex_state = 291, .external_lex_state = 16}, - [2833] = {.lex_state = 217, .external_lex_state = 11}, - [2834] = {.lex_state = 291, .external_lex_state = 16}, - [2835] = {.lex_state = 217, .external_lex_state = 11}, - [2836] = {.lex_state = 291, .external_lex_state = 16}, - [2837] = {.lex_state = 217, .external_lex_state = 11}, - [2838] = {.lex_state = 217, .external_lex_state = 11}, - [2839] = {.lex_state = 219, .external_lex_state = 13}, - [2840] = {.lex_state = 219, .external_lex_state = 13}, - [2841] = {.lex_state = 219, .external_lex_state = 13}, - [2842] = {.lex_state = 219, .external_lex_state = 13}, - [2843] = {.lex_state = 291, .external_lex_state = 16}, - [2844] = {.lex_state = 219, .external_lex_state = 13}, - [2845] = {.lex_state = 291, .external_lex_state = 16}, - [2846] = {.lex_state = 219, .external_lex_state = 13}, - [2847] = {.lex_state = 291, .external_lex_state = 16}, - [2848] = {.lex_state = 219, .external_lex_state = 13}, - [2849] = {.lex_state = 219, .external_lex_state = 13}, - [2850] = {.lex_state = 153, .external_lex_state = 14}, - [2851] = {.lex_state = 153, .external_lex_state = 14}, - [2852] = {.lex_state = 153, .external_lex_state = 14}, - [2853] = {.lex_state = 153, .external_lex_state = 14}, - [2854] = {.lex_state = 291, .external_lex_state = 16}, - [2855] = {.lex_state = 153, .external_lex_state = 14}, - [2856] = {.lex_state = 291, .external_lex_state = 16}, - [2857] = {.lex_state = 153, .external_lex_state = 14}, - [2858] = {.lex_state = 291, .external_lex_state = 16}, - [2859] = {.lex_state = 153, .external_lex_state = 14}, - [2860] = {.lex_state = 153, .external_lex_state = 14}, - [2861] = {.lex_state = 153, .external_lex_state = 10}, - [2862] = {.lex_state = 153, .external_lex_state = 10}, - [2863] = {.lex_state = 153, .external_lex_state = 10}, - [2864] = {.lex_state = 153, .external_lex_state = 10}, - [2865] = {.lex_state = 291, .external_lex_state = 16}, - [2866] = {.lex_state = 153, .external_lex_state = 10}, - [2867] = {.lex_state = 291, .external_lex_state = 16}, - [2868] = {.lex_state = 153, .external_lex_state = 10}, - [2869] = {.lex_state = 291, .external_lex_state = 16}, - [2870] = {.lex_state = 153, .external_lex_state = 10}, - [2871] = {.lex_state = 153, .external_lex_state = 10}, - [2872] = {.lex_state = 141, .external_lex_state = 15}, - [2873] = {.lex_state = 141, .external_lex_state = 15}, - [2874] = {.lex_state = 141, .external_lex_state = 15}, - [2875] = {.lex_state = 141, .external_lex_state = 15}, - [2876] = {.lex_state = 291, .external_lex_state = 16}, - [2877] = {.lex_state = 141, .external_lex_state = 15}, - [2878] = {.lex_state = 291, .external_lex_state = 16}, - [2879] = {.lex_state = 141, .external_lex_state = 15}, - [2880] = {.lex_state = 291, .external_lex_state = 16}, - [2881] = {.lex_state = 141, .external_lex_state = 15}, - [2882] = {.lex_state = 141, .external_lex_state = 15}, - [2883] = {.lex_state = 165, .external_lex_state = 13}, - [2884] = {.lex_state = 165, .external_lex_state = 13}, - [2885] = {.lex_state = 165, .external_lex_state = 13}, - [2886] = {.lex_state = 165, .external_lex_state = 13}, - [2887] = {.lex_state = 291, .external_lex_state = 16}, - [2888] = {.lex_state = 165, .external_lex_state = 13}, - [2889] = {.lex_state = 291, .external_lex_state = 16}, - [2890] = {.lex_state = 165, .external_lex_state = 13}, - [2891] = {.lex_state = 291, .external_lex_state = 16}, - [2892] = {.lex_state = 165, .external_lex_state = 13}, - [2893] = {.lex_state = 165, .external_lex_state = 13}, - [2894] = {.lex_state = 226, .external_lex_state = 16}, - [2895] = {.lex_state = 226, .external_lex_state = 16}, - [2896] = {.lex_state = 327, .external_lex_state = 22}, - [2897] = {.lex_state = 327, .external_lex_state = 22}, - [2898] = {.lex_state = 327, .external_lex_state = 22}, - [2899] = {.lex_state = 103, .external_lex_state = 16}, - [2900] = {.lex_state = 291, .external_lex_state = 16}, - [2901] = {.lex_state = 327, .external_lex_state = 22}, - [2902] = {.lex_state = 289, .external_lex_state = 16}, - [2903] = {.lex_state = 327, .external_lex_state = 22}, - [2904] = {.lex_state = 293}, - [2905] = {.lex_state = 291, .external_lex_state = 16}, - [2906] = {.lex_state = 327, .external_lex_state = 22}, - [2907] = {.lex_state = 293}, - [2908] = {.lex_state = 291, .external_lex_state = 16}, - [2909] = {.lex_state = 293}, - [2910] = {.lex_state = 291, .external_lex_state = 16}, - [2911] = {.lex_state = 291, .external_lex_state = 16}, - [2912] = {.lex_state = 327, .external_lex_state = 22}, - [2913] = {.lex_state = 291, .external_lex_state = 16}, - [2914] = {.lex_state = 291, .external_lex_state = 22}, - [2915] = {.lex_state = 291, .external_lex_state = 22}, - [2916] = {.lex_state = 291, .external_lex_state = 22}, - [2917] = {.lex_state = 291, .external_lex_state = 16}, - [2918] = {.lex_state = 327, .external_lex_state = 22}, - [2919] = {.lex_state = 327, .external_lex_state = 22}, - [2920] = {.lex_state = 103, .external_lex_state = 16}, - [2921] = {.lex_state = 291, .external_lex_state = 16}, - [2922] = {.lex_state = 291, .external_lex_state = 22}, - [2923] = {.lex_state = 291, .external_lex_state = 16}, - [2924] = {.lex_state = 291, .external_lex_state = 22}, - [2925] = {.lex_state = 291, .external_lex_state = 16}, - [2926] = {.lex_state = 291, .external_lex_state = 22}, - [2927] = {.lex_state = 291, .external_lex_state = 16}, - [2928] = {.lex_state = 291, .external_lex_state = 22}, - [2929] = {.lex_state = 291, .external_lex_state = 16}, - [2930] = {.lex_state = 162, .external_lex_state = 5}, - [2931] = {.lex_state = 162, .external_lex_state = 5}, - [2932] = {.lex_state = 162, .external_lex_state = 5}, - [2933] = {.lex_state = 241, .external_lex_state = 15}, - [2934] = {.lex_state = 327, .external_lex_state = 22}, - [2935] = {.lex_state = 327, .external_lex_state = 22}, - [2936] = {.lex_state = 103, .external_lex_state = 16}, - [2937] = {.lex_state = 291, .external_lex_state = 16}, - [2938] = {.lex_state = 241, .external_lex_state = 15}, - [2939] = {.lex_state = 289, .external_lex_state = 16}, - [2940] = {.lex_state = 241, .external_lex_state = 15}, - [2941] = {.lex_state = 293}, - [2942] = {.lex_state = 291, .external_lex_state = 16}, - [2943] = {.lex_state = 241, .external_lex_state = 15}, - [2944] = {.lex_state = 293}, - [2945] = {.lex_state = 291, .external_lex_state = 16}, - [2946] = {.lex_state = 293}, - [2947] = {.lex_state = 291, .external_lex_state = 16}, - [2948] = {.lex_state = 291, .external_lex_state = 16}, - [2949] = {.lex_state = 241, .external_lex_state = 15}, - [2950] = {.lex_state = 291, .external_lex_state = 16}, - [2951] = {.lex_state = 103}, - [2952] = {.lex_state = 103}, - [2953] = {.lex_state = 103}, - [2954] = {.lex_state = 103}, - [2955] = {.lex_state = 103}, - [2956] = {.lex_state = 103}, - [2957] = {.lex_state = 103}, - [2958] = {.lex_state = 141}, - [2959] = {.lex_state = 103}, - [2960] = {.lex_state = 103}, - [2961] = {.lex_state = 103}, - [2962] = {.lex_state = 141}, - [2963] = {.lex_state = 103}, - [2964] = {.lex_state = 344, .external_lex_state = 13}, - [2965] = {.lex_state = 344, .external_lex_state = 13}, - [2966] = {.lex_state = 103}, - [2967] = {.lex_state = 141}, - [2968] = {.lex_state = 344, .external_lex_state = 13}, - [2969] = {.lex_state = 344, .external_lex_state = 13}, - [2970] = {.lex_state = 165}, - [2971] = {.lex_state = 344, .external_lex_state = 13}, - [2972] = {.lex_state = 344, .external_lex_state = 13}, - [2973] = {.lex_state = 344, .external_lex_state = 13}, - [2974] = {.lex_state = 103}, - [2975] = {.lex_state = 226, .external_lex_state = 16}, - [2976] = {.lex_state = 235, .external_lex_state = 6}, - [2977] = {.lex_state = 226, .external_lex_state = 16}, - [2978] = {.lex_state = 226, .external_lex_state = 16}, - [2979] = {.lex_state = 103}, - [2980] = {.lex_state = 241, .external_lex_state = 2}, - [2981] = {.lex_state = 103}, - [2982] = {.lex_state = 249, .external_lex_state = 2}, - [2983] = {.lex_state = 103}, - [2984] = {.lex_state = 241, .external_lex_state = 2}, - [2985] = {.lex_state = 237, .external_lex_state = 6}, - [2986] = {.lex_state = 237, .external_lex_state = 23}, - [2987] = {.lex_state = 237, .external_lex_state = 23}, - [2988] = {.lex_state = 237, .external_lex_state = 23}, - [2989] = {.lex_state = 291, .external_lex_state = 16}, - [2990] = {.lex_state = 327, .external_lex_state = 22}, - [2991] = {.lex_state = 327, .external_lex_state = 22}, - [2992] = {.lex_state = 103, .external_lex_state = 16}, - [2993] = {.lex_state = 291, .external_lex_state = 16}, - [2994] = {.lex_state = 237, .external_lex_state = 23}, - [2995] = {.lex_state = 291, .external_lex_state = 16}, - [2996] = {.lex_state = 237, .external_lex_state = 23}, - [2997] = {.lex_state = 291, .external_lex_state = 16}, - [2998] = {.lex_state = 237, .external_lex_state = 23}, - [2999] = {.lex_state = 291, .external_lex_state = 16}, - [3000] = {.lex_state = 237, .external_lex_state = 23}, - [3001] = {.lex_state = 291, .external_lex_state = 16}, - [3002] = {.lex_state = 237, .external_lex_state = 13}, - [3003] = {.lex_state = 237, .external_lex_state = 13}, - [3004] = {.lex_state = 237, .external_lex_state = 13}, - [3005] = {.lex_state = 291, .external_lex_state = 16}, - [3006] = {.lex_state = 327, .external_lex_state = 22}, - [3007] = {.lex_state = 327, .external_lex_state = 22}, - [3008] = {.lex_state = 103, .external_lex_state = 16}, - [3009] = {.lex_state = 291, .external_lex_state = 16}, - [3010] = {.lex_state = 237, .external_lex_state = 13}, - [3011] = {.lex_state = 291, .external_lex_state = 16}, - [3012] = {.lex_state = 237, .external_lex_state = 13}, - [3013] = {.lex_state = 291, .external_lex_state = 16}, - [3014] = {.lex_state = 237, .external_lex_state = 13}, - [3015] = {.lex_state = 291, .external_lex_state = 16}, - [3016] = {.lex_state = 237, .external_lex_state = 13}, - [3017] = {.lex_state = 291, .external_lex_state = 16}, - [3018] = {.lex_state = 143, .external_lex_state = 17}, - [3019] = {.lex_state = 143, .external_lex_state = 17}, - [3020] = {.lex_state = 143, .external_lex_state = 17}, - [3021] = {.lex_state = 143, .external_lex_state = 17}, - [3022] = {.lex_state = 291, .external_lex_state = 16}, - [3023] = {.lex_state = 143, .external_lex_state = 17}, - [3024] = {.lex_state = 291, .external_lex_state = 16}, - [3025] = {.lex_state = 143, .external_lex_state = 17}, - [3026] = {.lex_state = 291, .external_lex_state = 16}, - [3027] = {.lex_state = 143, .external_lex_state = 17}, - [3028] = {.lex_state = 143, .external_lex_state = 17}, - [3029] = {.lex_state = 300, .external_lex_state = 17}, - [3030] = {.lex_state = 327, .external_lex_state = 22}, - [3031] = {.lex_state = 327, .external_lex_state = 22}, - [3032] = {.lex_state = 103, .external_lex_state = 16}, - [3033] = {.lex_state = 291, .external_lex_state = 16}, - [3034] = {.lex_state = 300, .external_lex_state = 17}, - [3035] = {.lex_state = 289, .external_lex_state = 16}, - [3036] = {.lex_state = 300, .external_lex_state = 17}, - [3037] = {.lex_state = 293}, - [3038] = {.lex_state = 291, .external_lex_state = 16}, - [3039] = {.lex_state = 300, .external_lex_state = 17}, - [3040] = {.lex_state = 293}, - [3041] = {.lex_state = 291, .external_lex_state = 16}, - [3042] = {.lex_state = 293}, - [3043] = {.lex_state = 291, .external_lex_state = 16}, - [3044] = {.lex_state = 291, .external_lex_state = 16}, - [3045] = {.lex_state = 300, .external_lex_state = 17}, - [3046] = {.lex_state = 291, .external_lex_state = 16}, - [3047] = {.lex_state = 249, .external_lex_state = 15}, - [3048] = {.lex_state = 327, .external_lex_state = 22}, - [3049] = {.lex_state = 327, .external_lex_state = 22}, - [3050] = {.lex_state = 103, .external_lex_state = 16}, - [3051] = {.lex_state = 291, .external_lex_state = 16}, - [3052] = {.lex_state = 249, .external_lex_state = 15}, - [3053] = {.lex_state = 289, .external_lex_state = 16}, - [3054] = {.lex_state = 249, .external_lex_state = 15}, - [3055] = {.lex_state = 293}, - [3056] = {.lex_state = 291, .external_lex_state = 16}, - [3057] = {.lex_state = 249, .external_lex_state = 15}, - [3058] = {.lex_state = 293}, - [3059] = {.lex_state = 291, .external_lex_state = 16}, - [3060] = {.lex_state = 293}, - [3061] = {.lex_state = 291, .external_lex_state = 16}, - [3062] = {.lex_state = 291, .external_lex_state = 16}, - [3063] = {.lex_state = 249, .external_lex_state = 15}, - [3064] = {.lex_state = 291, .external_lex_state = 16}, - [3065] = {.lex_state = 346, .external_lex_state = 13}, - [3066] = {.lex_state = 346, .external_lex_state = 13}, - [3067] = {.lex_state = 141}, - [3068] = {.lex_state = 346, .external_lex_state = 13}, - [3069] = {.lex_state = 346, .external_lex_state = 13}, - [3070] = {.lex_state = 165}, - [3071] = {.lex_state = 346, .external_lex_state = 13}, - [3072] = {.lex_state = 346, .external_lex_state = 13}, - [3073] = {.lex_state = 346, .external_lex_state = 13}, - [3074] = {.lex_state = 103}, - [3075] = {.lex_state = 226, .external_lex_state = 16}, - [3076] = {.lex_state = 235, .external_lex_state = 6}, - [3077] = {.lex_state = 226, .external_lex_state = 16}, - [3078] = {.lex_state = 226, .external_lex_state = 16}, - [3079] = {.lex_state = 103}, - [3080] = {.lex_state = 241, .external_lex_state = 2}, - [3081] = {.lex_state = 103}, - [3082] = {.lex_state = 249, .external_lex_state = 2}, - [3083] = {.lex_state = 103}, - [3084] = {.lex_state = 241, .external_lex_state = 2}, - [3085] = {.lex_state = 243, .external_lex_state = 23}, - [3086] = {.lex_state = 243, .external_lex_state = 23}, - [3087] = {.lex_state = 243, .external_lex_state = 23}, - [3088] = {.lex_state = 291, .external_lex_state = 16}, - [3089] = {.lex_state = 327, .external_lex_state = 22}, - [3090] = {.lex_state = 327, .external_lex_state = 22}, - [3091] = {.lex_state = 103, .external_lex_state = 16}, - [3092] = {.lex_state = 291, .external_lex_state = 16}, - [3093] = {.lex_state = 243, .external_lex_state = 23}, - [3094] = {.lex_state = 291, .external_lex_state = 16}, - [3095] = {.lex_state = 243, .external_lex_state = 23}, - [3096] = {.lex_state = 291, .external_lex_state = 16}, - [3097] = {.lex_state = 243, .external_lex_state = 23}, - [3098] = {.lex_state = 291, .external_lex_state = 16}, - [3099] = {.lex_state = 243, .external_lex_state = 23}, - [3100] = {.lex_state = 291, .external_lex_state = 16}, - [3101] = {.lex_state = 243, .external_lex_state = 13}, - [3102] = {.lex_state = 243, .external_lex_state = 13}, - [3103] = {.lex_state = 243, .external_lex_state = 13}, - [3104] = {.lex_state = 291, .external_lex_state = 16}, - [3105] = {.lex_state = 327, .external_lex_state = 22}, - [3106] = {.lex_state = 327, .external_lex_state = 22}, - [3107] = {.lex_state = 103, .external_lex_state = 16}, - [3108] = {.lex_state = 291, .external_lex_state = 16}, - [3109] = {.lex_state = 243, .external_lex_state = 13}, - [3110] = {.lex_state = 291, .external_lex_state = 16}, - [3111] = {.lex_state = 243, .external_lex_state = 13}, - [3112] = {.lex_state = 291, .external_lex_state = 16}, - [3113] = {.lex_state = 243, .external_lex_state = 13}, - [3114] = {.lex_state = 291, .external_lex_state = 16}, - [3115] = {.lex_state = 243, .external_lex_state = 13}, - [3116] = {.lex_state = 291, .external_lex_state = 16}, - [3117] = {.lex_state = 245, .external_lex_state = 17}, - [3118] = {.lex_state = 245, .external_lex_state = 17}, - [3119] = {.lex_state = 245, .external_lex_state = 17}, - [3120] = {.lex_state = 245, .external_lex_state = 17}, - [3121] = {.lex_state = 291, .external_lex_state = 16}, - [3122] = {.lex_state = 245, .external_lex_state = 17}, - [3123] = {.lex_state = 291, .external_lex_state = 16}, - [3124] = {.lex_state = 245, .external_lex_state = 17}, - [3125] = {.lex_state = 291, .external_lex_state = 16}, - [3126] = {.lex_state = 245, .external_lex_state = 17}, - [3127] = {.lex_state = 245, .external_lex_state = 17}, - [3128] = {.lex_state = 302, .external_lex_state = 17}, - [3129] = {.lex_state = 327, .external_lex_state = 22}, - [3130] = {.lex_state = 327, .external_lex_state = 22}, - [3131] = {.lex_state = 103, .external_lex_state = 16}, - [3132] = {.lex_state = 291, .external_lex_state = 16}, - [3133] = {.lex_state = 302, .external_lex_state = 17}, - [3134] = {.lex_state = 289, .external_lex_state = 16}, - [3135] = {.lex_state = 302, .external_lex_state = 17}, - [3136] = {.lex_state = 293}, - [3137] = {.lex_state = 291, .external_lex_state = 16}, - [3138] = {.lex_state = 302, .external_lex_state = 17}, - [3139] = {.lex_state = 293}, - [3140] = {.lex_state = 291, .external_lex_state = 16}, - [3141] = {.lex_state = 293}, - [3142] = {.lex_state = 291, .external_lex_state = 16}, - [3143] = {.lex_state = 291, .external_lex_state = 16}, - [3144] = {.lex_state = 302, .external_lex_state = 17}, - [3145] = {.lex_state = 291, .external_lex_state = 16}, - [3146] = {.lex_state = 258, .external_lex_state = 5}, - [3147] = {.lex_state = 258, .external_lex_state = 5}, - [3148] = {.lex_state = 258, .external_lex_state = 5}, - [3149] = {.lex_state = 291, .external_lex_state = 16}, - [3150] = {.lex_state = 327, .external_lex_state = 22}, - [3151] = {.lex_state = 327, .external_lex_state = 22}, - [3152] = {.lex_state = 103, .external_lex_state = 16}, - [3153] = {.lex_state = 291, .external_lex_state = 16}, - [3154] = {.lex_state = 258, .external_lex_state = 5}, - [3155] = {.lex_state = 291, .external_lex_state = 16}, - [3156] = {.lex_state = 258, .external_lex_state = 5}, - [3157] = {.lex_state = 291, .external_lex_state = 16}, - [3158] = {.lex_state = 258, .external_lex_state = 5}, - [3159] = {.lex_state = 291, .external_lex_state = 16}, - [3160] = {.lex_state = 258, .external_lex_state = 5}, - [3161] = {.lex_state = 291, .external_lex_state = 16}, - [3162] = {.lex_state = 304, .external_lex_state = 24}, - [3163] = {.lex_state = 327, .external_lex_state = 22}, - [3164] = {.lex_state = 327, .external_lex_state = 22}, - [3165] = {.lex_state = 103, .external_lex_state = 16}, - [3166] = {.lex_state = 291, .external_lex_state = 16}, - [3167] = {.lex_state = 304, .external_lex_state = 24}, - [3168] = {.lex_state = 289, .external_lex_state = 16}, - [3169] = {.lex_state = 304, .external_lex_state = 24}, - [3170] = {.lex_state = 293}, - [3171] = {.lex_state = 291, .external_lex_state = 16}, - [3172] = {.lex_state = 304, .external_lex_state = 24}, - [3173] = {.lex_state = 293}, - [3174] = {.lex_state = 291, .external_lex_state = 16}, - [3175] = {.lex_state = 293}, - [3176] = {.lex_state = 291, .external_lex_state = 16}, - [3177] = {.lex_state = 291, .external_lex_state = 16}, - [3178] = {.lex_state = 304, .external_lex_state = 24}, - [3179] = {.lex_state = 291, .external_lex_state = 16}, - [3180] = {.lex_state = 260, .external_lex_state = 11}, - [3181] = {.lex_state = 260, .external_lex_state = 11}, - [3182] = {.lex_state = 260, .external_lex_state = 11}, - [3183] = {.lex_state = 260, .external_lex_state = 11}, - [3184] = {.lex_state = 291, .external_lex_state = 16}, - [3185] = {.lex_state = 260, .external_lex_state = 11}, - [3186] = {.lex_state = 291, .external_lex_state = 16}, - [3187] = {.lex_state = 260, .external_lex_state = 11}, - [3188] = {.lex_state = 291, .external_lex_state = 16}, - [3189] = {.lex_state = 260, .external_lex_state = 11}, - [3190] = {.lex_state = 260, .external_lex_state = 11}, - [3191] = {.lex_state = 311, .external_lex_state = 13}, - [3192] = {.lex_state = 311, .external_lex_state = 13}, - [3193] = {.lex_state = 311, .external_lex_state = 13}, - [3194] = {.lex_state = 291, .external_lex_state = 16}, - [3195] = {.lex_state = 327, .external_lex_state = 22}, - [3196] = {.lex_state = 327, .external_lex_state = 22}, - [3197] = {.lex_state = 103, .external_lex_state = 16}, - [3198] = {.lex_state = 291, .external_lex_state = 16}, - [3199] = {.lex_state = 311, .external_lex_state = 13}, - [3200] = {.lex_state = 291, .external_lex_state = 16}, - [3201] = {.lex_state = 311, .external_lex_state = 13}, - [3202] = {.lex_state = 291, .external_lex_state = 16}, - [3203] = {.lex_state = 311, .external_lex_state = 13}, - [3204] = {.lex_state = 291, .external_lex_state = 16}, - [3205] = {.lex_state = 311, .external_lex_state = 13}, - [3206] = {.lex_state = 291, .external_lex_state = 16}, - [3207] = {.lex_state = 182, .external_lex_state = 20}, - [3208] = {.lex_state = 182, .external_lex_state = 20}, - [3209] = {.lex_state = 182, .external_lex_state = 20}, - [3210] = {.lex_state = 182, .external_lex_state = 20}, - [3211] = {.lex_state = 291, .external_lex_state = 16}, - [3212] = {.lex_state = 182, .external_lex_state = 20}, - [3213] = {.lex_state = 291, .external_lex_state = 16}, - [3214] = {.lex_state = 182, .external_lex_state = 20}, - [3215] = {.lex_state = 291, .external_lex_state = 16}, - [3216] = {.lex_state = 182, .external_lex_state = 20}, - [3217] = {.lex_state = 182, .external_lex_state = 20}, - [3218] = {.lex_state = 313, .external_lex_state = 10}, - [3219] = {.lex_state = 313, .external_lex_state = 10}, - [3220] = {.lex_state = 313, .external_lex_state = 10}, - [3221] = {.lex_state = 291, .external_lex_state = 16}, - [3222] = {.lex_state = 327, .external_lex_state = 22}, - [3223] = {.lex_state = 327, .external_lex_state = 22}, - [3224] = {.lex_state = 103, .external_lex_state = 16}, - [3225] = {.lex_state = 291, .external_lex_state = 16}, - [3226] = {.lex_state = 313, .external_lex_state = 10}, - [3227] = {.lex_state = 291, .external_lex_state = 16}, - [3228] = {.lex_state = 313, .external_lex_state = 10}, - [3229] = {.lex_state = 291, .external_lex_state = 16}, - [3230] = {.lex_state = 313, .external_lex_state = 10}, - [3231] = {.lex_state = 291, .external_lex_state = 16}, - [3232] = {.lex_state = 313, .external_lex_state = 10}, - [3233] = {.lex_state = 291, .external_lex_state = 16}, - [3234] = {.lex_state = 186, .external_lex_state = 9}, - [3235] = {.lex_state = 358, .external_lex_state = 8}, - [3236] = {.lex_state = 103}, - [3237] = {.lex_state = 103}, - [3238] = {.lex_state = 217, .external_lex_state = 12}, - [3239] = {.lex_state = 219}, - [3240] = {.lex_state = 103}, - [3241] = {.lex_state = 348, .external_lex_state = 14}, - [3242] = {.lex_state = 165}, - [3243] = {.lex_state = 170}, - [3244] = {.lex_state = 348, .external_lex_state = 14}, - [3245] = {.lex_state = 175, .external_lex_state = 6}, - [3246] = {.lex_state = 20, .external_lex_state = 2}, - [3247] = {.lex_state = 20, .external_lex_state = 2}, - [3248] = {.lex_state = 20, .external_lex_state = 2}, - [3249] = {.lex_state = 348, .external_lex_state = 3}, - [3250] = {.lex_state = 348, .external_lex_state = 3}, - [3251] = {.lex_state = 103}, - [3252] = {.lex_state = 348, .external_lex_state = 3}, - [3253] = {.lex_state = 348, .external_lex_state = 10}, - [3254] = {.lex_state = 165}, - [3255] = {.lex_state = 170}, - [3256] = {.lex_state = 348, .external_lex_state = 10}, - [3257] = {.lex_state = 175, .external_lex_state = 6}, - [3258] = {.lex_state = 20, .external_lex_state = 2}, - [3259] = {.lex_state = 20, .external_lex_state = 2}, - [3260] = {.lex_state = 20, .external_lex_state = 2}, - [3261] = {.lex_state = 348, .external_lex_state = 4}, - [3262] = {.lex_state = 348, .external_lex_state = 4}, - [3263] = {.lex_state = 348, .external_lex_state = 4}, - [3264] = {.lex_state = 141}, - [3265] = {.lex_state = 354, .external_lex_state = 5}, - [3266] = {.lex_state = 354, .external_lex_state = 5}, - [3267] = {.lex_state = 165}, - [3268] = {.lex_state = 354, .external_lex_state = 5}, - [3269] = {.lex_state = 354, .external_lex_state = 5}, - [3270] = {.lex_state = 354, .external_lex_state = 5}, - [3271] = {.lex_state = 103}, - [3272] = {.lex_state = 226, .external_lex_state = 16}, - [3273] = {.lex_state = 235, .external_lex_state = 6}, - [3274] = {.lex_state = 226, .external_lex_state = 16}, - [3275] = {.lex_state = 226, .external_lex_state = 16}, - [3276] = {.lex_state = 103}, - [3277] = {.lex_state = 241, .external_lex_state = 2}, - [3278] = {.lex_state = 103}, - [3279] = {.lex_state = 249, .external_lex_state = 2}, - [3280] = {.lex_state = 103}, - [3281] = {.lex_state = 241, .external_lex_state = 2}, - [3282] = {.lex_state = 103}, - [3283] = {.lex_state = 20, .external_lex_state = 2}, - [3284] = {.lex_state = 339, .external_lex_state = 2}, - [3285] = {.lex_state = 20, .external_lex_state = 2}, - [3286] = {.lex_state = 339, .external_lex_state = 2}, - [3287] = {.lex_state = 20}, - [3288] = {.lex_state = 197}, - [3289] = {.lex_state = 141}, - [3290] = {.lex_state = 141}, - [3291] = {.lex_state = 354, .external_lex_state = 5}, - [3292] = {.lex_state = 354, .external_lex_state = 5}, - [3293] = {.lex_state = 354, .external_lex_state = 7}, - [3294] = {.lex_state = 360, .external_lex_state = 7}, - [3295] = {.lex_state = 354, .external_lex_state = 7}, - [3296] = {.lex_state = 317}, - [3297] = {.lex_state = 283, .external_lex_state = 4}, - [3298] = {.lex_state = 358, .external_lex_state = 8}, - [3299] = {.lex_state = 339, .external_lex_state = 2}, - [3300] = {.lex_state = 354, .external_lex_state = 7}, - [3301] = {.lex_state = 339, .external_lex_state = 2}, - [3302] = {.lex_state = 339, .external_lex_state = 2}, - [3303] = {.lex_state = 317}, - [3304] = {.lex_state = 283, .external_lex_state = 4}, - [3305] = {.lex_state = 358, .external_lex_state = 8}, - [3306] = {.lex_state = 339, .external_lex_state = 2}, - [3307] = {.lex_state = 333, .external_lex_state = 13}, - [3308] = {.lex_state = 327, .external_lex_state = 22}, - [3309] = {.lex_state = 327, .external_lex_state = 22}, - [3310] = {.lex_state = 103, .external_lex_state = 16}, - [3311] = {.lex_state = 291, .external_lex_state = 16}, - [3312] = {.lex_state = 333, .external_lex_state = 13}, - [3313] = {.lex_state = 289, .external_lex_state = 16}, - [3314] = {.lex_state = 333, .external_lex_state = 13}, - [3315] = {.lex_state = 293}, - [3316] = {.lex_state = 291, .external_lex_state = 16}, - [3317] = {.lex_state = 333, .external_lex_state = 13}, - [3318] = {.lex_state = 293}, - [3319] = {.lex_state = 291, .external_lex_state = 16}, - [3320] = {.lex_state = 293}, - [3321] = {.lex_state = 291, .external_lex_state = 16}, - [3322] = {.lex_state = 291, .external_lex_state = 16}, - [3323] = {.lex_state = 333, .external_lex_state = 13}, - [3324] = {.lex_state = 291, .external_lex_state = 16}, - [3325] = {.lex_state = 179, .external_lex_state = 2}, - [3326] = {.lex_state = 137}, - [3327] = {.lex_state = 179, .external_lex_state = 2}, - [3328] = {.lex_state = 137}, - [3329] = {.lex_state = 283, .external_lex_state = 4}, - [3330] = {.lex_state = 283, .external_lex_state = 4}, - [3331] = {.lex_state = 190, .external_lex_state = 10}, - [3332] = {.lex_state = 190, .external_lex_state = 10}, - [3333] = {.lex_state = 190, .external_lex_state = 10}, - [3334] = {.lex_state = 335, .external_lex_state = 10}, - [3335] = {.lex_state = 327, .external_lex_state = 22}, - [3336] = {.lex_state = 327, .external_lex_state = 22}, - [3337] = {.lex_state = 103, .external_lex_state = 16}, - [3338] = {.lex_state = 291, .external_lex_state = 16}, - [3339] = {.lex_state = 335, .external_lex_state = 10}, - [3340] = {.lex_state = 289, .external_lex_state = 16}, - [3341] = {.lex_state = 335, .external_lex_state = 10}, - [3342] = {.lex_state = 293}, - [3343] = {.lex_state = 291, .external_lex_state = 16}, - [3344] = {.lex_state = 335, .external_lex_state = 10}, - [3345] = {.lex_state = 293}, - [3346] = {.lex_state = 291, .external_lex_state = 16}, - [3347] = {.lex_state = 293}, - [3348] = {.lex_state = 291, .external_lex_state = 16}, - [3349] = {.lex_state = 291, .external_lex_state = 16}, - [3350] = {.lex_state = 335, .external_lex_state = 10}, - [3351] = {.lex_state = 291, .external_lex_state = 16}, - [3352] = {.lex_state = 188, .external_lex_state = 20}, - [3353] = {.lex_state = 188, .external_lex_state = 20}, - [3354] = {.lex_state = 188, .external_lex_state = 20}, - [3355] = {.lex_state = 291, .external_lex_state = 16}, - [3356] = {.lex_state = 327, .external_lex_state = 22}, - [3357] = {.lex_state = 327, .external_lex_state = 22}, - [3358] = {.lex_state = 103, .external_lex_state = 16}, - [3359] = {.lex_state = 291, .external_lex_state = 16}, - [3360] = {.lex_state = 188, .external_lex_state = 20}, - [3361] = {.lex_state = 291, .external_lex_state = 16}, - [3362] = {.lex_state = 188, .external_lex_state = 20}, - [3363] = {.lex_state = 291, .external_lex_state = 16}, - [3364] = {.lex_state = 188, .external_lex_state = 20}, - [3365] = {.lex_state = 291, .external_lex_state = 16}, - [3366] = {.lex_state = 188, .external_lex_state = 20}, - [3367] = {.lex_state = 291, .external_lex_state = 16}, - [3368] = {.lex_state = 342, .external_lex_state = 10}, - [3369] = {.lex_state = 342, .external_lex_state = 10}, - [3370] = {.lex_state = 342, .external_lex_state = 10}, - [3371] = {.lex_state = 289, .external_lex_state = 16}, - [3372] = {.lex_state = 342, .external_lex_state = 10}, - [3373] = {.lex_state = 293}, - [3374] = {.lex_state = 291, .external_lex_state = 16}, - [3375] = {.lex_state = 103}, - [3376] = {.lex_state = 226, .external_lex_state = 16}, - [3377] = {.lex_state = 226, .external_lex_state = 16}, - [3378] = {.lex_state = 226, .external_lex_state = 16}, - [3379] = {.lex_state = 342, .external_lex_state = 10}, - [3380] = {.lex_state = 293}, - [3381] = {.lex_state = 291, .external_lex_state = 16}, - [3382] = {.lex_state = 342, .external_lex_state = 10}, - [3383] = {.lex_state = 293}, - [3384] = {.lex_state = 291, .external_lex_state = 16}, - [3385] = {.lex_state = 342, .external_lex_state = 10}, - [3386] = {.lex_state = 342, .external_lex_state = 10}, - [3387] = {.lex_state = 193, .external_lex_state = 14}, - [3388] = {.lex_state = 193, .external_lex_state = 14}, - [3389] = {.lex_state = 193, .external_lex_state = 14}, - [3390] = {.lex_state = 193, .external_lex_state = 14}, - [3391] = {.lex_state = 291, .external_lex_state = 16}, - [3392] = {.lex_state = 193, .external_lex_state = 14}, - [3393] = {.lex_state = 291, .external_lex_state = 16}, - [3394] = {.lex_state = 193, .external_lex_state = 14}, - [3395] = {.lex_state = 291, .external_lex_state = 16}, - [3396] = {.lex_state = 193, .external_lex_state = 14}, - [3397] = {.lex_state = 193, .external_lex_state = 14}, - [3398] = {.lex_state = 193, .external_lex_state = 10}, - [3399] = {.lex_state = 193, .external_lex_state = 10}, - [3400] = {.lex_state = 193, .external_lex_state = 10}, - [3401] = {.lex_state = 193, .external_lex_state = 10}, - [3402] = {.lex_state = 291, .external_lex_state = 16}, - [3403] = {.lex_state = 193, .external_lex_state = 10}, - [3404] = {.lex_state = 291, .external_lex_state = 16}, - [3405] = {.lex_state = 193, .external_lex_state = 10}, - [3406] = {.lex_state = 291, .external_lex_state = 16}, - [3407] = {.lex_state = 193, .external_lex_state = 10}, - [3408] = {.lex_state = 193, .external_lex_state = 10}, - [3409] = {.lex_state = 184, .external_lex_state = 5}, - [3410] = {.lex_state = 184, .external_lex_state = 5}, - [3411] = {.lex_state = 184, .external_lex_state = 5}, - [3412] = {.lex_state = 287, .external_lex_state = 5}, - [3413] = {.lex_state = 287, .external_lex_state = 5}, - [3414] = {.lex_state = 287, .external_lex_state = 5}, - [3415] = {.lex_state = 291, .external_lex_state = 16}, - [3416] = {.lex_state = 327, .external_lex_state = 22}, - [3417] = {.lex_state = 327, .external_lex_state = 22}, - [3418] = {.lex_state = 103, .external_lex_state = 16}, - [3419] = {.lex_state = 291, .external_lex_state = 16}, - [3420] = {.lex_state = 287, .external_lex_state = 5}, - [3421] = {.lex_state = 291, .external_lex_state = 16}, - [3422] = {.lex_state = 287, .external_lex_state = 5}, - [3423] = {.lex_state = 291, .external_lex_state = 16}, - [3424] = {.lex_state = 287, .external_lex_state = 5}, - [3425] = {.lex_state = 291, .external_lex_state = 16}, - [3426] = {.lex_state = 287, .external_lex_state = 5}, - [3427] = {.lex_state = 291, .external_lex_state = 16}, - [3428] = {.lex_state = 217, .external_lex_state = 11}, - [3429] = {.lex_state = 217, .external_lex_state = 11}, - [3430] = {.lex_state = 217, .external_lex_state = 11}, - [3431] = {.lex_state = 219, .external_lex_state = 13}, - [3432] = {.lex_state = 219, .external_lex_state = 13}, - [3433] = {.lex_state = 219, .external_lex_state = 13}, - [3434] = {.lex_state = 153, .external_lex_state = 14}, - [3435] = {.lex_state = 153, .external_lex_state = 14}, - [3436] = {.lex_state = 153, .external_lex_state = 14}, - [3437] = {.lex_state = 153, .external_lex_state = 10}, - [3438] = {.lex_state = 153, .external_lex_state = 10}, - [3439] = {.lex_state = 153, .external_lex_state = 10}, - [3440] = {.lex_state = 141, .external_lex_state = 15}, - [3441] = {.lex_state = 141, .external_lex_state = 15}, - [3442] = {.lex_state = 141, .external_lex_state = 15}, - [3443] = {.lex_state = 165, .external_lex_state = 13}, - [3444] = {.lex_state = 165, .external_lex_state = 13}, - [3445] = {.lex_state = 165, .external_lex_state = 13}, - [3446] = {.lex_state = 327, .external_lex_state = 22}, - [3447] = {.lex_state = 327, .external_lex_state = 22}, - [3448] = {.lex_state = 327, .external_lex_state = 22}, - [3449] = {.lex_state = 291, .external_lex_state = 16}, - [3450] = {.lex_state = 327, .external_lex_state = 22}, - [3451] = {.lex_state = 327, .external_lex_state = 22}, - [3452] = {.lex_state = 103, .external_lex_state = 16}, - [3453] = {.lex_state = 291, .external_lex_state = 16}, - [3454] = {.lex_state = 327, .external_lex_state = 22}, - [3455] = {.lex_state = 291, .external_lex_state = 16}, - [3456] = {.lex_state = 327, .external_lex_state = 22}, - [3457] = {.lex_state = 291, .external_lex_state = 16}, - [3458] = {.lex_state = 327, .external_lex_state = 22}, - [3459] = {.lex_state = 291, .external_lex_state = 16}, - [3460] = {.lex_state = 327, .external_lex_state = 22}, - [3461] = {.lex_state = 291, .external_lex_state = 16}, - [3462] = {.lex_state = 291, .external_lex_state = 22}, - [3463] = {.lex_state = 291, .external_lex_state = 22}, - [3464] = {.lex_state = 291, .external_lex_state = 22}, - [3465] = {.lex_state = 291, .external_lex_state = 22}, - [3466] = {.lex_state = 291, .external_lex_state = 16}, - [3467] = {.lex_state = 291, .external_lex_state = 22}, - [3468] = {.lex_state = 291, .external_lex_state = 16}, - [3469] = {.lex_state = 291, .external_lex_state = 22}, - [3470] = {.lex_state = 291, .external_lex_state = 16}, - [3471] = {.lex_state = 291, .external_lex_state = 22}, - [3472] = {.lex_state = 291, .external_lex_state = 22}, - [3473] = {.lex_state = 241, .external_lex_state = 15}, - [3474] = {.lex_state = 241, .external_lex_state = 15}, - [3475] = {.lex_state = 241, .external_lex_state = 15}, - [3476] = {.lex_state = 291, .external_lex_state = 16}, - [3477] = {.lex_state = 327, .external_lex_state = 22}, - [3478] = {.lex_state = 327, .external_lex_state = 22}, - [3479] = {.lex_state = 103, .external_lex_state = 16}, - [3480] = {.lex_state = 291, .external_lex_state = 16}, - [3481] = {.lex_state = 241, .external_lex_state = 15}, - [3482] = {.lex_state = 291, .external_lex_state = 16}, - [3483] = {.lex_state = 241, .external_lex_state = 15}, - [3484] = {.lex_state = 291, .external_lex_state = 16}, - [3485] = {.lex_state = 241, .external_lex_state = 15}, - [3486] = {.lex_state = 291, .external_lex_state = 16}, - [3487] = {.lex_state = 241, .external_lex_state = 15}, - [3488] = {.lex_state = 291, .external_lex_state = 16}, - [3489] = {.lex_state = 103}, - [3490] = {.lex_state = 103}, - [3491] = {.lex_state = 103}, - [3492] = {.lex_state = 103}, - [3493] = {.lex_state = 103}, - [3494] = {.lex_state = 344, .external_lex_state = 13}, - [3495] = {.lex_state = 344, .external_lex_state = 13}, - [3496] = {.lex_state = 344, .external_lex_state = 13}, - [3497] = {.lex_state = 289, .external_lex_state = 16}, - [3498] = {.lex_state = 344, .external_lex_state = 13}, - [3499] = {.lex_state = 293}, - [3500] = {.lex_state = 291, .external_lex_state = 16}, - [3501] = {.lex_state = 103}, - [3502] = {.lex_state = 226, .external_lex_state = 16}, - [3503] = {.lex_state = 226, .external_lex_state = 16}, - [3504] = {.lex_state = 226, .external_lex_state = 16}, - [3505] = {.lex_state = 344, .external_lex_state = 13}, - [3506] = {.lex_state = 293}, - [3507] = {.lex_state = 291, .external_lex_state = 16}, - [3508] = {.lex_state = 344, .external_lex_state = 13}, - [3509] = {.lex_state = 293}, - [3510] = {.lex_state = 291, .external_lex_state = 16}, - [3511] = {.lex_state = 344, .external_lex_state = 13}, - [3512] = {.lex_state = 344, .external_lex_state = 13}, - [3513] = {.lex_state = 237, .external_lex_state = 23}, - [3514] = {.lex_state = 237, .external_lex_state = 23}, - [3515] = {.lex_state = 237, .external_lex_state = 23}, - [3516] = {.lex_state = 237, .external_lex_state = 23}, - [3517] = {.lex_state = 291, .external_lex_state = 16}, - [3518] = {.lex_state = 237, .external_lex_state = 23}, - [3519] = {.lex_state = 291, .external_lex_state = 16}, - [3520] = {.lex_state = 237, .external_lex_state = 23}, - [3521] = {.lex_state = 291, .external_lex_state = 16}, - [3522] = {.lex_state = 237, .external_lex_state = 23}, - [3523] = {.lex_state = 237, .external_lex_state = 23}, - [3524] = {.lex_state = 237, .external_lex_state = 13}, - [3525] = {.lex_state = 237, .external_lex_state = 13}, - [3526] = {.lex_state = 237, .external_lex_state = 13}, - [3527] = {.lex_state = 237, .external_lex_state = 13}, - [3528] = {.lex_state = 291, .external_lex_state = 16}, - [3529] = {.lex_state = 237, .external_lex_state = 13}, - [3530] = {.lex_state = 291, .external_lex_state = 16}, - [3531] = {.lex_state = 237, .external_lex_state = 13}, - [3532] = {.lex_state = 291, .external_lex_state = 16}, - [3533] = {.lex_state = 237, .external_lex_state = 13}, - [3534] = {.lex_state = 237, .external_lex_state = 13}, - [3535] = {.lex_state = 143, .external_lex_state = 17}, - [3536] = {.lex_state = 143, .external_lex_state = 17}, - [3537] = {.lex_state = 143, .external_lex_state = 17}, - [3538] = {.lex_state = 300, .external_lex_state = 17}, - [3539] = {.lex_state = 300, .external_lex_state = 17}, - [3540] = {.lex_state = 300, .external_lex_state = 17}, - [3541] = {.lex_state = 291, .external_lex_state = 16}, - [3542] = {.lex_state = 327, .external_lex_state = 22}, - [3543] = {.lex_state = 327, .external_lex_state = 22}, - [3544] = {.lex_state = 103, .external_lex_state = 16}, - [3545] = {.lex_state = 291, .external_lex_state = 16}, - [3546] = {.lex_state = 300, .external_lex_state = 17}, - [3547] = {.lex_state = 291, .external_lex_state = 16}, - [3548] = {.lex_state = 300, .external_lex_state = 17}, - [3549] = {.lex_state = 291, .external_lex_state = 16}, - [3550] = {.lex_state = 300, .external_lex_state = 17}, - [3551] = {.lex_state = 291, .external_lex_state = 16}, - [3552] = {.lex_state = 300, .external_lex_state = 17}, - [3553] = {.lex_state = 291, .external_lex_state = 16}, - [3554] = {.lex_state = 249, .external_lex_state = 15}, - [3555] = {.lex_state = 249, .external_lex_state = 15}, - [3556] = {.lex_state = 249, .external_lex_state = 15}, - [3557] = {.lex_state = 291, .external_lex_state = 16}, - [3558] = {.lex_state = 327, .external_lex_state = 22}, - [3559] = {.lex_state = 327, .external_lex_state = 22}, - [3560] = {.lex_state = 103, .external_lex_state = 16}, - [3561] = {.lex_state = 291, .external_lex_state = 16}, - [3562] = {.lex_state = 249, .external_lex_state = 15}, - [3563] = {.lex_state = 291, .external_lex_state = 16}, - [3564] = {.lex_state = 249, .external_lex_state = 15}, - [3565] = {.lex_state = 291, .external_lex_state = 16}, - [3566] = {.lex_state = 249, .external_lex_state = 15}, - [3567] = {.lex_state = 291, .external_lex_state = 16}, - [3568] = {.lex_state = 249, .external_lex_state = 15}, - [3569] = {.lex_state = 291, .external_lex_state = 16}, - [3570] = {.lex_state = 346, .external_lex_state = 13}, - [3571] = {.lex_state = 346, .external_lex_state = 13}, - [3572] = {.lex_state = 346, .external_lex_state = 13}, - [3573] = {.lex_state = 289, .external_lex_state = 16}, - [3574] = {.lex_state = 346, .external_lex_state = 13}, - [3575] = {.lex_state = 293}, - [3576] = {.lex_state = 291, .external_lex_state = 16}, - [3577] = {.lex_state = 103}, - [3578] = {.lex_state = 226, .external_lex_state = 16}, - [3579] = {.lex_state = 226, .external_lex_state = 16}, - [3580] = {.lex_state = 226, .external_lex_state = 16}, - [3581] = {.lex_state = 346, .external_lex_state = 13}, - [3582] = {.lex_state = 293}, - [3583] = {.lex_state = 291, .external_lex_state = 16}, - [3584] = {.lex_state = 346, .external_lex_state = 13}, - [3585] = {.lex_state = 293}, - [3586] = {.lex_state = 291, .external_lex_state = 16}, - [3587] = {.lex_state = 346, .external_lex_state = 13}, - [3588] = {.lex_state = 346, .external_lex_state = 13}, - [3589] = {.lex_state = 243, .external_lex_state = 23}, - [3590] = {.lex_state = 243, .external_lex_state = 23}, - [3591] = {.lex_state = 243, .external_lex_state = 23}, - [3592] = {.lex_state = 243, .external_lex_state = 23}, - [3593] = {.lex_state = 291, .external_lex_state = 16}, - [3594] = {.lex_state = 243, .external_lex_state = 23}, - [3595] = {.lex_state = 291, .external_lex_state = 16}, - [3596] = {.lex_state = 243, .external_lex_state = 23}, - [3597] = {.lex_state = 291, .external_lex_state = 16}, - [3598] = {.lex_state = 243, .external_lex_state = 23}, - [3599] = {.lex_state = 243, .external_lex_state = 23}, - [3600] = {.lex_state = 243, .external_lex_state = 13}, - [3601] = {.lex_state = 243, .external_lex_state = 13}, - [3602] = {.lex_state = 243, .external_lex_state = 13}, - [3603] = {.lex_state = 243, .external_lex_state = 13}, - [3604] = {.lex_state = 291, .external_lex_state = 16}, - [3605] = {.lex_state = 243, .external_lex_state = 13}, - [3606] = {.lex_state = 291, .external_lex_state = 16}, - [3607] = {.lex_state = 243, .external_lex_state = 13}, - [3608] = {.lex_state = 291, .external_lex_state = 16}, - [3609] = {.lex_state = 243, .external_lex_state = 13}, - [3610] = {.lex_state = 243, .external_lex_state = 13}, - [3611] = {.lex_state = 245, .external_lex_state = 17}, - [3612] = {.lex_state = 245, .external_lex_state = 17}, - [3613] = {.lex_state = 245, .external_lex_state = 17}, - [3614] = {.lex_state = 302, .external_lex_state = 17}, - [3615] = {.lex_state = 302, .external_lex_state = 17}, - [3616] = {.lex_state = 302, .external_lex_state = 17}, - [3617] = {.lex_state = 291, .external_lex_state = 16}, - [3618] = {.lex_state = 327, .external_lex_state = 22}, - [3619] = {.lex_state = 327, .external_lex_state = 22}, - [3620] = {.lex_state = 103, .external_lex_state = 16}, - [3621] = {.lex_state = 291, .external_lex_state = 16}, - [3622] = {.lex_state = 302, .external_lex_state = 17}, - [3623] = {.lex_state = 291, .external_lex_state = 16}, - [3624] = {.lex_state = 302, .external_lex_state = 17}, - [3625] = {.lex_state = 291, .external_lex_state = 16}, - [3626] = {.lex_state = 302, .external_lex_state = 17}, - [3627] = {.lex_state = 291, .external_lex_state = 16}, - [3628] = {.lex_state = 302, .external_lex_state = 17}, - [3629] = {.lex_state = 291, .external_lex_state = 16}, - [3630] = {.lex_state = 258, .external_lex_state = 5}, - [3631] = {.lex_state = 258, .external_lex_state = 5}, - [3632] = {.lex_state = 258, .external_lex_state = 5}, - [3633] = {.lex_state = 258, .external_lex_state = 5}, - [3634] = {.lex_state = 291, .external_lex_state = 16}, - [3635] = {.lex_state = 258, .external_lex_state = 5}, - [3636] = {.lex_state = 291, .external_lex_state = 16}, - [3637] = {.lex_state = 258, .external_lex_state = 5}, - [3638] = {.lex_state = 291, .external_lex_state = 16}, - [3639] = {.lex_state = 258, .external_lex_state = 5}, - [3640] = {.lex_state = 258, .external_lex_state = 5}, - [3641] = {.lex_state = 304, .external_lex_state = 24}, - [3642] = {.lex_state = 304, .external_lex_state = 24}, - [3643] = {.lex_state = 304, .external_lex_state = 24}, - [3644] = {.lex_state = 291, .external_lex_state = 16}, - [3645] = {.lex_state = 327, .external_lex_state = 22}, - [3646] = {.lex_state = 327, .external_lex_state = 22}, - [3647] = {.lex_state = 103, .external_lex_state = 16}, - [3648] = {.lex_state = 291, .external_lex_state = 16}, - [3649] = {.lex_state = 304, .external_lex_state = 24}, - [3650] = {.lex_state = 291, .external_lex_state = 16}, - [3651] = {.lex_state = 304, .external_lex_state = 24}, - [3652] = {.lex_state = 291, .external_lex_state = 16}, - [3653] = {.lex_state = 304, .external_lex_state = 24}, - [3654] = {.lex_state = 291, .external_lex_state = 16}, - [3655] = {.lex_state = 304, .external_lex_state = 24}, - [3656] = {.lex_state = 291, .external_lex_state = 16}, - [3657] = {.lex_state = 260, .external_lex_state = 11}, - [3658] = {.lex_state = 260, .external_lex_state = 11}, - [3659] = {.lex_state = 260, .external_lex_state = 11}, - [3660] = {.lex_state = 311, .external_lex_state = 13}, - [3661] = {.lex_state = 311, .external_lex_state = 13}, - [3662] = {.lex_state = 311, .external_lex_state = 13}, - [3663] = {.lex_state = 311, .external_lex_state = 13}, - [3664] = {.lex_state = 291, .external_lex_state = 16}, - [3665] = {.lex_state = 311, .external_lex_state = 13}, - [3666] = {.lex_state = 291, .external_lex_state = 16}, - [3667] = {.lex_state = 311, .external_lex_state = 13}, - [3668] = {.lex_state = 291, .external_lex_state = 16}, - [3669] = {.lex_state = 311, .external_lex_state = 13}, - [3670] = {.lex_state = 311, .external_lex_state = 13}, - [3671] = {.lex_state = 182, .external_lex_state = 20}, - [3672] = {.lex_state = 182, .external_lex_state = 20}, - [3673] = {.lex_state = 182, .external_lex_state = 20}, - [3674] = {.lex_state = 313, .external_lex_state = 10}, - [3675] = {.lex_state = 313, .external_lex_state = 10}, - [3676] = {.lex_state = 313, .external_lex_state = 10}, - [3677] = {.lex_state = 313, .external_lex_state = 10}, - [3678] = {.lex_state = 291, .external_lex_state = 16}, - [3679] = {.lex_state = 313, .external_lex_state = 10}, - [3680] = {.lex_state = 291, .external_lex_state = 16}, - [3681] = {.lex_state = 313, .external_lex_state = 10}, - [3682] = {.lex_state = 291, .external_lex_state = 16}, - [3683] = {.lex_state = 313, .external_lex_state = 10}, - [3684] = {.lex_state = 313, .external_lex_state = 10}, - [3685] = {.lex_state = 358, .external_lex_state = 8}, - [3686] = {.lex_state = 241}, - [3687] = {.lex_state = 358, .external_lex_state = 20}, - [3688] = {.lex_state = 165}, - [3689] = {.lex_state = 170}, - [3690] = {.lex_state = 358, .external_lex_state = 20}, - [3691] = {.lex_state = 175, .external_lex_state = 6}, - [3692] = {.lex_state = 20, .external_lex_state = 2}, - [3693] = {.lex_state = 20, .external_lex_state = 2}, - [3694] = {.lex_state = 20, .external_lex_state = 2}, - [3695] = {.lex_state = 360, .external_lex_state = 7}, - [3696] = {.lex_state = 103}, - [3697] = {.lex_state = 362, .external_lex_state = 7}, - [3698] = {.lex_state = 360, .external_lex_state = 7}, - [3699] = {.lex_state = 186, .external_lex_state = 9}, - [3700] = {.lex_state = 348, .external_lex_state = 3}, - [3701] = {.lex_state = 141}, - [3702] = {.lex_state = 348, .external_lex_state = 14}, - [3703] = {.lex_state = 348, .external_lex_state = 14}, - [3704] = {.lex_state = 165}, - [3705] = {.lex_state = 348, .external_lex_state = 14}, - [3706] = {.lex_state = 348, .external_lex_state = 14}, - [3707] = {.lex_state = 348, .external_lex_state = 14}, - [3708] = {.lex_state = 103}, - [3709] = {.lex_state = 226, .external_lex_state = 16}, - [3710] = {.lex_state = 235, .external_lex_state = 6}, - [3711] = {.lex_state = 226, .external_lex_state = 16}, - [3712] = {.lex_state = 226, .external_lex_state = 16}, - [3713] = {.lex_state = 103}, - [3714] = {.lex_state = 241, .external_lex_state = 2}, - [3715] = {.lex_state = 103}, - [3716] = {.lex_state = 249, .external_lex_state = 2}, - [3717] = {.lex_state = 103}, - [3718] = {.lex_state = 241, .external_lex_state = 2}, - [3719] = {.lex_state = 348, .external_lex_state = 3}, - [3720] = {.lex_state = 141}, - [3721] = {.lex_state = 348, .external_lex_state = 10}, - [3722] = {.lex_state = 348, .external_lex_state = 10}, - [3723] = {.lex_state = 165}, - [3724] = {.lex_state = 348, .external_lex_state = 10}, - [3725] = {.lex_state = 348, .external_lex_state = 10}, - [3726] = {.lex_state = 348, .external_lex_state = 10}, - [3727] = {.lex_state = 103}, - [3728] = {.lex_state = 226, .external_lex_state = 16}, - [3729] = {.lex_state = 235, .external_lex_state = 6}, - [3730] = {.lex_state = 226, .external_lex_state = 16}, - [3731] = {.lex_state = 226, .external_lex_state = 16}, - [3732] = {.lex_state = 103}, - [3733] = {.lex_state = 241, .external_lex_state = 2}, - [3734] = {.lex_state = 103}, - [3735] = {.lex_state = 249, .external_lex_state = 2}, - [3736] = {.lex_state = 103}, - [3737] = {.lex_state = 241, .external_lex_state = 2}, - [3738] = {.lex_state = 348, .external_lex_state = 4}, - [3739] = {.lex_state = 354, .external_lex_state = 5}, - [3740] = {.lex_state = 354, .external_lex_state = 5}, - [3741] = {.lex_state = 354, .external_lex_state = 5}, - [3742] = {.lex_state = 289, .external_lex_state = 16}, - [3743] = {.lex_state = 354, .external_lex_state = 5}, - [3744] = {.lex_state = 293}, - [3745] = {.lex_state = 291, .external_lex_state = 16}, - [3746] = {.lex_state = 103}, - [3747] = {.lex_state = 226, .external_lex_state = 16}, - [3748] = {.lex_state = 226, .external_lex_state = 16}, - [3749] = {.lex_state = 226, .external_lex_state = 16}, - [3750] = {.lex_state = 354, .external_lex_state = 5}, - [3751] = {.lex_state = 293}, - [3752] = {.lex_state = 291, .external_lex_state = 16}, - [3753] = {.lex_state = 354, .external_lex_state = 5}, - [3754] = {.lex_state = 293}, - [3755] = {.lex_state = 291, .external_lex_state = 16}, - [3756] = {.lex_state = 354, .external_lex_state = 5}, - [3757] = {.lex_state = 354, .external_lex_state = 5}, - [3758] = {.lex_state = 103}, - [3759] = {.lex_state = 358, .external_lex_state = 8}, - [3760] = {.lex_state = 283, .external_lex_state = 4}, - [3761] = {.lex_state = 358, .external_lex_state = 8}, - [3762] = {.lex_state = 141}, - [3763] = {.lex_state = 354, .external_lex_state = 5}, - [3764] = {.lex_state = 354, .external_lex_state = 5}, - [3765] = {.lex_state = 354, .external_lex_state = 7}, - [3766] = {.lex_state = 360, .external_lex_state = 5}, - [3767] = {.lex_state = 165}, - [3768] = {.lex_state = 170}, - [3769] = {.lex_state = 360, .external_lex_state = 5}, - [3770] = {.lex_state = 175, .external_lex_state = 6}, - [3771] = {.lex_state = 20, .external_lex_state = 2}, - [3772] = {.lex_state = 20, .external_lex_state = 2}, - [3773] = {.lex_state = 20, .external_lex_state = 2}, - [3774] = {.lex_state = 360, .external_lex_state = 5}, - [3775] = {.lex_state = 360, .external_lex_state = 5}, - [3776] = {.lex_state = 360, .external_lex_state = 7}, - [3777] = {.lex_state = 360, .external_lex_state = 7}, - [3778] = {.lex_state = 354, .external_lex_state = 7}, - [3779] = {.lex_state = 339, .external_lex_state = 2}, - [3780] = {.lex_state = 153, .external_lex_state = 4}, - [3781] = {.lex_state = 182, .external_lex_state = 8}, - [3782] = {.lex_state = 354, .external_lex_state = 7}, - [3783] = {.lex_state = 317}, - [3784] = {.lex_state = 283, .external_lex_state = 4}, - [3785] = {.lex_state = 358, .external_lex_state = 8}, - [3786] = {.lex_state = 339, .external_lex_state = 2}, - [3787] = {.lex_state = 317}, - [3788] = {.lex_state = 283, .external_lex_state = 4}, - [3789] = {.lex_state = 358, .external_lex_state = 8}, - [3790] = {.lex_state = 333, .external_lex_state = 13}, - [3791] = {.lex_state = 333, .external_lex_state = 13}, - [3792] = {.lex_state = 333, .external_lex_state = 13}, - [3793] = {.lex_state = 291, .external_lex_state = 16}, - [3794] = {.lex_state = 327, .external_lex_state = 22}, - [3795] = {.lex_state = 327, .external_lex_state = 22}, - [3796] = {.lex_state = 103, .external_lex_state = 16}, - [3797] = {.lex_state = 291, .external_lex_state = 16}, - [3798] = {.lex_state = 333, .external_lex_state = 13}, - [3799] = {.lex_state = 291, .external_lex_state = 16}, - [3800] = {.lex_state = 333, .external_lex_state = 13}, - [3801] = {.lex_state = 291, .external_lex_state = 16}, - [3802] = {.lex_state = 333, .external_lex_state = 13}, - [3803] = {.lex_state = 291, .external_lex_state = 16}, - [3804] = {.lex_state = 333, .external_lex_state = 13}, - [3805] = {.lex_state = 291, .external_lex_state = 16}, - [3806] = {.lex_state = 141}, - [3807] = {.lex_state = 153, .external_lex_state = 4}, - [3808] = {.lex_state = 182, .external_lex_state = 8}, - [3809] = {.lex_state = 179, .external_lex_state = 2}, - [3810] = {.lex_state = 179, .external_lex_state = 2}, - [3811] = {.lex_state = 141}, - [3812] = {.lex_state = 153, .external_lex_state = 4}, - [3813] = {.lex_state = 182, .external_lex_state = 8}, - [3814] = {.lex_state = 179, .external_lex_state = 2}, - [3815] = {.lex_state = 179, .external_lex_state = 2}, - [3816] = {.lex_state = 335, .external_lex_state = 10}, - [3817] = {.lex_state = 335, .external_lex_state = 10}, - [3818] = {.lex_state = 335, .external_lex_state = 10}, - [3819] = {.lex_state = 291, .external_lex_state = 16}, - [3820] = {.lex_state = 327, .external_lex_state = 22}, - [3821] = {.lex_state = 327, .external_lex_state = 22}, - [3822] = {.lex_state = 103, .external_lex_state = 16}, - [3823] = {.lex_state = 291, .external_lex_state = 16}, - [3824] = {.lex_state = 335, .external_lex_state = 10}, - [3825] = {.lex_state = 291, .external_lex_state = 16}, - [3826] = {.lex_state = 335, .external_lex_state = 10}, - [3827] = {.lex_state = 291, .external_lex_state = 16}, - [3828] = {.lex_state = 335, .external_lex_state = 10}, - [3829] = {.lex_state = 291, .external_lex_state = 16}, - [3830] = {.lex_state = 335, .external_lex_state = 10}, - [3831] = {.lex_state = 291, .external_lex_state = 16}, - [3832] = {.lex_state = 188, .external_lex_state = 20}, - [3833] = {.lex_state = 188, .external_lex_state = 20}, - [3834] = {.lex_state = 188, .external_lex_state = 20}, - [3835] = {.lex_state = 188, .external_lex_state = 20}, - [3836] = {.lex_state = 291, .external_lex_state = 16}, - [3837] = {.lex_state = 188, .external_lex_state = 20}, - [3838] = {.lex_state = 291, .external_lex_state = 16}, - [3839] = {.lex_state = 188, .external_lex_state = 20}, - [3840] = {.lex_state = 291, .external_lex_state = 16}, - [3841] = {.lex_state = 188, .external_lex_state = 20}, - [3842] = {.lex_state = 188, .external_lex_state = 20}, - [3843] = {.lex_state = 342, .external_lex_state = 10}, - [3844] = {.lex_state = 327, .external_lex_state = 22}, - [3845] = {.lex_state = 327, .external_lex_state = 22}, - [3846] = {.lex_state = 103, .external_lex_state = 16}, - [3847] = {.lex_state = 291, .external_lex_state = 16}, - [3848] = {.lex_state = 342, .external_lex_state = 10}, - [3849] = {.lex_state = 289, .external_lex_state = 16}, - [3850] = {.lex_state = 342, .external_lex_state = 10}, - [3851] = {.lex_state = 293}, - [3852] = {.lex_state = 291, .external_lex_state = 16}, - [3853] = {.lex_state = 342, .external_lex_state = 10}, - [3854] = {.lex_state = 293}, - [3855] = {.lex_state = 291, .external_lex_state = 16}, - [3856] = {.lex_state = 293}, - [3857] = {.lex_state = 291, .external_lex_state = 16}, - [3858] = {.lex_state = 291, .external_lex_state = 16}, - [3859] = {.lex_state = 342, .external_lex_state = 10}, - [3860] = {.lex_state = 291, .external_lex_state = 16}, - [3861] = {.lex_state = 193, .external_lex_state = 14}, - [3862] = {.lex_state = 193, .external_lex_state = 14}, - [3863] = {.lex_state = 193, .external_lex_state = 14}, - [3864] = {.lex_state = 193, .external_lex_state = 10}, - [3865] = {.lex_state = 193, .external_lex_state = 10}, - [3866] = {.lex_state = 193, .external_lex_state = 10}, - [3867] = {.lex_state = 287, .external_lex_state = 5}, - [3868] = {.lex_state = 287, .external_lex_state = 5}, - [3869] = {.lex_state = 287, .external_lex_state = 5}, - [3870] = {.lex_state = 287, .external_lex_state = 5}, - [3871] = {.lex_state = 291, .external_lex_state = 16}, - [3872] = {.lex_state = 287, .external_lex_state = 5}, - [3873] = {.lex_state = 291, .external_lex_state = 16}, - [3874] = {.lex_state = 287, .external_lex_state = 5}, - [3875] = {.lex_state = 291, .external_lex_state = 16}, - [3876] = {.lex_state = 287, .external_lex_state = 5}, - [3877] = {.lex_state = 287, .external_lex_state = 5}, - [3878] = {.lex_state = 327, .external_lex_state = 22}, - [3879] = {.lex_state = 327, .external_lex_state = 22}, - [3880] = {.lex_state = 327, .external_lex_state = 22}, - [3881] = {.lex_state = 327, .external_lex_state = 22}, - [3882] = {.lex_state = 291, .external_lex_state = 16}, - [3883] = {.lex_state = 327, .external_lex_state = 22}, - [3884] = {.lex_state = 291, .external_lex_state = 16}, - [3885] = {.lex_state = 327, .external_lex_state = 22}, - [3886] = {.lex_state = 291, .external_lex_state = 16}, - [3887] = {.lex_state = 327, .external_lex_state = 22}, - [3888] = {.lex_state = 327, .external_lex_state = 22}, - [3889] = {.lex_state = 291, .external_lex_state = 22}, - [3890] = {.lex_state = 291, .external_lex_state = 22}, - [3891] = {.lex_state = 291, .external_lex_state = 22}, - [3892] = {.lex_state = 241, .external_lex_state = 15}, - [3893] = {.lex_state = 241, .external_lex_state = 15}, - [3894] = {.lex_state = 241, .external_lex_state = 15}, - [3895] = {.lex_state = 241, .external_lex_state = 15}, - [3896] = {.lex_state = 291, .external_lex_state = 16}, - [3897] = {.lex_state = 241, .external_lex_state = 15}, - [3898] = {.lex_state = 291, .external_lex_state = 16}, - [3899] = {.lex_state = 241, .external_lex_state = 15}, - [3900] = {.lex_state = 291, .external_lex_state = 16}, - [3901] = {.lex_state = 241, .external_lex_state = 15}, - [3902] = {.lex_state = 241, .external_lex_state = 15}, - [3903] = {.lex_state = 103}, - [3904] = {.lex_state = 103}, - [3905] = {.lex_state = 344, .external_lex_state = 13}, - [3906] = {.lex_state = 327, .external_lex_state = 22}, - [3907] = {.lex_state = 327, .external_lex_state = 22}, - [3908] = {.lex_state = 103, .external_lex_state = 16}, - [3909] = {.lex_state = 291, .external_lex_state = 16}, - [3910] = {.lex_state = 344, .external_lex_state = 13}, - [3911] = {.lex_state = 289, .external_lex_state = 16}, - [3912] = {.lex_state = 344, .external_lex_state = 13}, - [3913] = {.lex_state = 293}, - [3914] = {.lex_state = 291, .external_lex_state = 16}, - [3915] = {.lex_state = 344, .external_lex_state = 13}, - [3916] = {.lex_state = 293}, - [3917] = {.lex_state = 291, .external_lex_state = 16}, - [3918] = {.lex_state = 293}, - [3919] = {.lex_state = 291, .external_lex_state = 16}, - [3920] = {.lex_state = 291, .external_lex_state = 16}, - [3921] = {.lex_state = 344, .external_lex_state = 13}, - [3922] = {.lex_state = 291, .external_lex_state = 16}, - [3923] = {.lex_state = 237, .external_lex_state = 23}, - [3924] = {.lex_state = 237, .external_lex_state = 23}, - [3925] = {.lex_state = 237, .external_lex_state = 23}, - [3926] = {.lex_state = 237, .external_lex_state = 13}, - [3927] = {.lex_state = 237, .external_lex_state = 13}, - [3928] = {.lex_state = 237, .external_lex_state = 13}, - [3929] = {.lex_state = 300, .external_lex_state = 17}, - [3930] = {.lex_state = 300, .external_lex_state = 17}, - [3931] = {.lex_state = 300, .external_lex_state = 17}, - [3932] = {.lex_state = 300, .external_lex_state = 17}, - [3933] = {.lex_state = 291, .external_lex_state = 16}, - [3934] = {.lex_state = 300, .external_lex_state = 17}, - [3935] = {.lex_state = 291, .external_lex_state = 16}, - [3936] = {.lex_state = 300, .external_lex_state = 17}, - [3937] = {.lex_state = 291, .external_lex_state = 16}, - [3938] = {.lex_state = 300, .external_lex_state = 17}, - [3939] = {.lex_state = 300, .external_lex_state = 17}, - [3940] = {.lex_state = 249, .external_lex_state = 15}, - [3941] = {.lex_state = 249, .external_lex_state = 15}, - [3942] = {.lex_state = 249, .external_lex_state = 15}, - [3943] = {.lex_state = 249, .external_lex_state = 15}, - [3944] = {.lex_state = 291, .external_lex_state = 16}, - [3945] = {.lex_state = 249, .external_lex_state = 15}, - [3946] = {.lex_state = 291, .external_lex_state = 16}, - [3947] = {.lex_state = 249, .external_lex_state = 15}, - [3948] = {.lex_state = 291, .external_lex_state = 16}, - [3949] = {.lex_state = 249, .external_lex_state = 15}, - [3950] = {.lex_state = 249, .external_lex_state = 15}, - [3951] = {.lex_state = 346, .external_lex_state = 13}, - [3952] = {.lex_state = 327, .external_lex_state = 22}, - [3953] = {.lex_state = 327, .external_lex_state = 22}, - [3954] = {.lex_state = 103, .external_lex_state = 16}, - [3955] = {.lex_state = 291, .external_lex_state = 16}, - [3956] = {.lex_state = 346, .external_lex_state = 13}, - [3957] = {.lex_state = 289, .external_lex_state = 16}, - [3958] = {.lex_state = 346, .external_lex_state = 13}, - [3959] = {.lex_state = 293}, - [3960] = {.lex_state = 291, .external_lex_state = 16}, - [3961] = {.lex_state = 346, .external_lex_state = 13}, - [3962] = {.lex_state = 293}, - [3963] = {.lex_state = 291, .external_lex_state = 16}, - [3964] = {.lex_state = 293}, - [3965] = {.lex_state = 291, .external_lex_state = 16}, - [3966] = {.lex_state = 291, .external_lex_state = 16}, - [3967] = {.lex_state = 346, .external_lex_state = 13}, - [3968] = {.lex_state = 291, .external_lex_state = 16}, - [3969] = {.lex_state = 243, .external_lex_state = 23}, - [3970] = {.lex_state = 243, .external_lex_state = 23}, - [3971] = {.lex_state = 243, .external_lex_state = 23}, - [3972] = {.lex_state = 243, .external_lex_state = 13}, - [3973] = {.lex_state = 243, .external_lex_state = 13}, - [3974] = {.lex_state = 243, .external_lex_state = 13}, - [3975] = {.lex_state = 302, .external_lex_state = 17}, - [3976] = {.lex_state = 302, .external_lex_state = 17}, - [3977] = {.lex_state = 302, .external_lex_state = 17}, - [3978] = {.lex_state = 302, .external_lex_state = 17}, - [3979] = {.lex_state = 291, .external_lex_state = 16}, - [3980] = {.lex_state = 302, .external_lex_state = 17}, - [3981] = {.lex_state = 291, .external_lex_state = 16}, - [3982] = {.lex_state = 302, .external_lex_state = 17}, - [3983] = {.lex_state = 291, .external_lex_state = 16}, - [3984] = {.lex_state = 302, .external_lex_state = 17}, - [3985] = {.lex_state = 302, .external_lex_state = 17}, - [3986] = {.lex_state = 258, .external_lex_state = 5}, - [3987] = {.lex_state = 258, .external_lex_state = 5}, - [3988] = {.lex_state = 258, .external_lex_state = 5}, - [3989] = {.lex_state = 304, .external_lex_state = 24}, - [3990] = {.lex_state = 304, .external_lex_state = 24}, - [3991] = {.lex_state = 304, .external_lex_state = 24}, - [3992] = {.lex_state = 304, .external_lex_state = 24}, - [3993] = {.lex_state = 291, .external_lex_state = 16}, - [3994] = {.lex_state = 304, .external_lex_state = 24}, - [3995] = {.lex_state = 291, .external_lex_state = 16}, - [3996] = {.lex_state = 304, .external_lex_state = 24}, - [3997] = {.lex_state = 291, .external_lex_state = 16}, - [3998] = {.lex_state = 304, .external_lex_state = 24}, - [3999] = {.lex_state = 304, .external_lex_state = 24}, - [4000] = {.lex_state = 311, .external_lex_state = 13}, - [4001] = {.lex_state = 311, .external_lex_state = 13}, - [4002] = {.lex_state = 311, .external_lex_state = 13}, - [4003] = {.lex_state = 313, .external_lex_state = 10}, - [4004] = {.lex_state = 313, .external_lex_state = 10}, - [4005] = {.lex_state = 313, .external_lex_state = 10}, - [4006] = {.lex_state = 358, .external_lex_state = 8}, - [4007] = {.lex_state = 241}, - [4008] = {.lex_state = 141}, - [4009] = {.lex_state = 358, .external_lex_state = 20}, - [4010] = {.lex_state = 358, .external_lex_state = 20}, - [4011] = {.lex_state = 165}, - [4012] = {.lex_state = 358, .external_lex_state = 20}, - [4013] = {.lex_state = 358, .external_lex_state = 20}, - [4014] = {.lex_state = 358, .external_lex_state = 20}, - [4015] = {.lex_state = 103}, - [4016] = {.lex_state = 226, .external_lex_state = 16}, - [4017] = {.lex_state = 235, .external_lex_state = 6}, - [4018] = {.lex_state = 226, .external_lex_state = 16}, - [4019] = {.lex_state = 226, .external_lex_state = 16}, - [4020] = {.lex_state = 103}, - [4021] = {.lex_state = 241, .external_lex_state = 2}, - [4022] = {.lex_state = 103}, - [4023] = {.lex_state = 249, .external_lex_state = 2}, - [4024] = {.lex_state = 103}, - [4025] = {.lex_state = 241, .external_lex_state = 2}, - [4026] = {.lex_state = 360, .external_lex_state = 7}, - [4027] = {.lex_state = 103}, - [4028] = {.lex_state = 20}, - [4029] = {.lex_state = 141}, - [4030] = {.lex_state = 360, .external_lex_state = 7}, - [4031] = {.lex_state = 348, .external_lex_state = 3}, - [4032] = {.lex_state = 241}, - [4033] = {.lex_state = 348, .external_lex_state = 14}, - [4034] = {.lex_state = 348, .external_lex_state = 14}, - [4035] = {.lex_state = 348, .external_lex_state = 14}, - [4036] = {.lex_state = 348, .external_lex_state = 14}, - [4037] = {.lex_state = 348, .external_lex_state = 14}, - [4038] = {.lex_state = 289, .external_lex_state = 16}, - [4039] = {.lex_state = 348, .external_lex_state = 14}, - [4040] = {.lex_state = 293}, - [4041] = {.lex_state = 291, .external_lex_state = 16}, - [4042] = {.lex_state = 103}, - [4043] = {.lex_state = 226, .external_lex_state = 16}, - [4044] = {.lex_state = 226, .external_lex_state = 16}, - [4045] = {.lex_state = 226, .external_lex_state = 16}, - [4046] = {.lex_state = 348, .external_lex_state = 14}, - [4047] = {.lex_state = 293}, - [4048] = {.lex_state = 291, .external_lex_state = 16}, - [4049] = {.lex_state = 348, .external_lex_state = 14}, - [4050] = {.lex_state = 293}, - [4051] = {.lex_state = 291, .external_lex_state = 16}, - [4052] = {.lex_state = 348, .external_lex_state = 14}, - [4053] = {.lex_state = 348, .external_lex_state = 14}, - [4054] = {.lex_state = 348, .external_lex_state = 10}, - [4055] = {.lex_state = 348, .external_lex_state = 10}, - [4056] = {.lex_state = 348, .external_lex_state = 10}, - [4057] = {.lex_state = 289, .external_lex_state = 16}, - [4058] = {.lex_state = 348, .external_lex_state = 10}, - [4059] = {.lex_state = 293}, - [4060] = {.lex_state = 291, .external_lex_state = 16}, - [4061] = {.lex_state = 103}, - [4062] = {.lex_state = 226, .external_lex_state = 16}, - [4063] = {.lex_state = 226, .external_lex_state = 16}, - [4064] = {.lex_state = 226, .external_lex_state = 16}, - [4065] = {.lex_state = 348, .external_lex_state = 10}, - [4066] = {.lex_state = 293}, - [4067] = {.lex_state = 291, .external_lex_state = 16}, - [4068] = {.lex_state = 348, .external_lex_state = 10}, - [4069] = {.lex_state = 293}, - [4070] = {.lex_state = 291, .external_lex_state = 16}, - [4071] = {.lex_state = 348, .external_lex_state = 10}, - [4072] = {.lex_state = 348, .external_lex_state = 10}, - [4073] = {.lex_state = 354, .external_lex_state = 5}, - [4074] = {.lex_state = 327, .external_lex_state = 22}, - [4075] = {.lex_state = 327, .external_lex_state = 22}, - [4076] = {.lex_state = 103, .external_lex_state = 16}, - [4077] = {.lex_state = 291, .external_lex_state = 16}, - [4078] = {.lex_state = 354, .external_lex_state = 5}, - [4079] = {.lex_state = 289, .external_lex_state = 16}, - [4080] = {.lex_state = 354, .external_lex_state = 5}, - [4081] = {.lex_state = 293}, - [4082] = {.lex_state = 291, .external_lex_state = 16}, - [4083] = {.lex_state = 354, .external_lex_state = 5}, - [4084] = {.lex_state = 293}, - [4085] = {.lex_state = 291, .external_lex_state = 16}, - [4086] = {.lex_state = 293}, - [4087] = {.lex_state = 291, .external_lex_state = 16}, - [4088] = {.lex_state = 291, .external_lex_state = 16}, - [4089] = {.lex_state = 354, .external_lex_state = 5}, - [4090] = {.lex_state = 291, .external_lex_state = 16}, - [4091] = {.lex_state = 362, .external_lex_state = 7}, - [4092] = {.lex_state = 360, .external_lex_state = 5}, - [4093] = {.lex_state = 360, .external_lex_state = 5}, - [4094] = {.lex_state = 141}, - [4095] = {.lex_state = 360, .external_lex_state = 5}, - [4096] = {.lex_state = 360, .external_lex_state = 5}, - [4097] = {.lex_state = 165}, - [4098] = {.lex_state = 360, .external_lex_state = 5}, - [4099] = {.lex_state = 360, .external_lex_state = 5}, - [4100] = {.lex_state = 360, .external_lex_state = 5}, - [4101] = {.lex_state = 103}, - [4102] = {.lex_state = 226, .external_lex_state = 16}, - [4103] = {.lex_state = 235, .external_lex_state = 6}, - [4104] = {.lex_state = 226, .external_lex_state = 16}, - [4105] = {.lex_state = 226, .external_lex_state = 16}, - [4106] = {.lex_state = 103}, - [4107] = {.lex_state = 241, .external_lex_state = 2}, - [4108] = {.lex_state = 103}, - [4109] = {.lex_state = 249, .external_lex_state = 2}, - [4110] = {.lex_state = 103}, - [4111] = {.lex_state = 241, .external_lex_state = 2}, - [4112] = {.lex_state = 360, .external_lex_state = 7}, - [4113] = {.lex_state = 339, .external_lex_state = 2}, - [4114] = {.lex_state = 339, .external_lex_state = 2}, - [4115] = {.lex_state = 333, .external_lex_state = 13}, - [4116] = {.lex_state = 333, .external_lex_state = 13}, - [4117] = {.lex_state = 333, .external_lex_state = 13}, - [4118] = {.lex_state = 333, .external_lex_state = 13}, - [4119] = {.lex_state = 291, .external_lex_state = 16}, - [4120] = {.lex_state = 333, .external_lex_state = 13}, - [4121] = {.lex_state = 291, .external_lex_state = 16}, - [4122] = {.lex_state = 333, .external_lex_state = 13}, - [4123] = {.lex_state = 291, .external_lex_state = 16}, - [4124] = {.lex_state = 333, .external_lex_state = 13}, - [4125] = {.lex_state = 333, .external_lex_state = 13}, - [4126] = {.lex_state = 179, .external_lex_state = 2}, - [4127] = {.lex_state = 141}, - [4128] = {.lex_state = 153, .external_lex_state = 4}, - [4129] = {.lex_state = 182, .external_lex_state = 8}, - [4130] = {.lex_state = 179, .external_lex_state = 2}, - [4131] = {.lex_state = 179, .external_lex_state = 2}, - [4132] = {.lex_state = 179, .external_lex_state = 2}, - [4133] = {.lex_state = 141}, - [4134] = {.lex_state = 153, .external_lex_state = 4}, - [4135] = {.lex_state = 182, .external_lex_state = 8}, - [4136] = {.lex_state = 179, .external_lex_state = 2}, - [4137] = {.lex_state = 335, .external_lex_state = 10}, - [4138] = {.lex_state = 335, .external_lex_state = 10}, - [4139] = {.lex_state = 335, .external_lex_state = 10}, - [4140] = {.lex_state = 335, .external_lex_state = 10}, - [4141] = {.lex_state = 291, .external_lex_state = 16}, - [4142] = {.lex_state = 335, .external_lex_state = 10}, - [4143] = {.lex_state = 291, .external_lex_state = 16}, - [4144] = {.lex_state = 335, .external_lex_state = 10}, - [4145] = {.lex_state = 291, .external_lex_state = 16}, - [4146] = {.lex_state = 335, .external_lex_state = 10}, - [4147] = {.lex_state = 335, .external_lex_state = 10}, - [4148] = {.lex_state = 188, .external_lex_state = 20}, - [4149] = {.lex_state = 188, .external_lex_state = 20}, - [4150] = {.lex_state = 188, .external_lex_state = 20}, - [4151] = {.lex_state = 342, .external_lex_state = 10}, - [4152] = {.lex_state = 342, .external_lex_state = 10}, - [4153] = {.lex_state = 342, .external_lex_state = 10}, - [4154] = {.lex_state = 291, .external_lex_state = 16}, - [4155] = {.lex_state = 327, .external_lex_state = 22}, - [4156] = {.lex_state = 327, .external_lex_state = 22}, - [4157] = {.lex_state = 103, .external_lex_state = 16}, - [4158] = {.lex_state = 291, .external_lex_state = 16}, - [4159] = {.lex_state = 342, .external_lex_state = 10}, - [4160] = {.lex_state = 291, .external_lex_state = 16}, - [4161] = {.lex_state = 342, .external_lex_state = 10}, - [4162] = {.lex_state = 291, .external_lex_state = 16}, - [4163] = {.lex_state = 342, .external_lex_state = 10}, - [4164] = {.lex_state = 291, .external_lex_state = 16}, - [4165] = {.lex_state = 342, .external_lex_state = 10}, - [4166] = {.lex_state = 291, .external_lex_state = 16}, - [4167] = {.lex_state = 287, .external_lex_state = 5}, - [4168] = {.lex_state = 287, .external_lex_state = 5}, - [4169] = {.lex_state = 287, .external_lex_state = 5}, - [4170] = {.lex_state = 327, .external_lex_state = 22}, - [4171] = {.lex_state = 327, .external_lex_state = 22}, - [4172] = {.lex_state = 327, .external_lex_state = 22}, - [4173] = {.lex_state = 241, .external_lex_state = 15}, - [4174] = {.lex_state = 241, .external_lex_state = 15}, - [4175] = {.lex_state = 241, .external_lex_state = 15}, - [4176] = {.lex_state = 344, .external_lex_state = 13}, - [4177] = {.lex_state = 344, .external_lex_state = 13}, - [4178] = {.lex_state = 344, .external_lex_state = 13}, - [4179] = {.lex_state = 291, .external_lex_state = 16}, - [4180] = {.lex_state = 327, .external_lex_state = 22}, - [4181] = {.lex_state = 327, .external_lex_state = 22}, - [4182] = {.lex_state = 103, .external_lex_state = 16}, - [4183] = {.lex_state = 291, .external_lex_state = 16}, - [4184] = {.lex_state = 344, .external_lex_state = 13}, - [4185] = {.lex_state = 291, .external_lex_state = 16}, - [4186] = {.lex_state = 344, .external_lex_state = 13}, - [4187] = {.lex_state = 291, .external_lex_state = 16}, - [4188] = {.lex_state = 344, .external_lex_state = 13}, - [4189] = {.lex_state = 291, .external_lex_state = 16}, - [4190] = {.lex_state = 344, .external_lex_state = 13}, - [4191] = {.lex_state = 291, .external_lex_state = 16}, - [4192] = {.lex_state = 300, .external_lex_state = 17}, - [4193] = {.lex_state = 300, .external_lex_state = 17}, - [4194] = {.lex_state = 300, .external_lex_state = 17}, - [4195] = {.lex_state = 249, .external_lex_state = 15}, - [4196] = {.lex_state = 249, .external_lex_state = 15}, - [4197] = {.lex_state = 249, .external_lex_state = 15}, - [4198] = {.lex_state = 346, .external_lex_state = 13}, - [4199] = {.lex_state = 346, .external_lex_state = 13}, - [4200] = {.lex_state = 346, .external_lex_state = 13}, - [4201] = {.lex_state = 291, .external_lex_state = 16}, - [4202] = {.lex_state = 327, .external_lex_state = 22}, - [4203] = {.lex_state = 327, .external_lex_state = 22}, - [4204] = {.lex_state = 103, .external_lex_state = 16}, - [4205] = {.lex_state = 291, .external_lex_state = 16}, - [4206] = {.lex_state = 346, .external_lex_state = 13}, - [4207] = {.lex_state = 291, .external_lex_state = 16}, - [4208] = {.lex_state = 346, .external_lex_state = 13}, - [4209] = {.lex_state = 291, .external_lex_state = 16}, - [4210] = {.lex_state = 346, .external_lex_state = 13}, - [4211] = {.lex_state = 291, .external_lex_state = 16}, - [4212] = {.lex_state = 346, .external_lex_state = 13}, - [4213] = {.lex_state = 291, .external_lex_state = 16}, - [4214] = {.lex_state = 302, .external_lex_state = 17}, - [4215] = {.lex_state = 302, .external_lex_state = 17}, - [4216] = {.lex_state = 302, .external_lex_state = 17}, - [4217] = {.lex_state = 304, .external_lex_state = 24}, - [4218] = {.lex_state = 304, .external_lex_state = 24}, - [4219] = {.lex_state = 304, .external_lex_state = 24}, - [4220] = {.lex_state = 358, .external_lex_state = 8}, - [4221] = {.lex_state = 358, .external_lex_state = 20}, - [4222] = {.lex_state = 358, .external_lex_state = 20}, - [4223] = {.lex_state = 358, .external_lex_state = 20}, - [4224] = {.lex_state = 289, .external_lex_state = 16}, - [4225] = {.lex_state = 358, .external_lex_state = 20}, - [4226] = {.lex_state = 293}, - [4227] = {.lex_state = 291, .external_lex_state = 16}, - [4228] = {.lex_state = 103}, - [4229] = {.lex_state = 226, .external_lex_state = 16}, - [4230] = {.lex_state = 226, .external_lex_state = 16}, - [4231] = {.lex_state = 226, .external_lex_state = 16}, - [4232] = {.lex_state = 358, .external_lex_state = 20}, - [4233] = {.lex_state = 293}, - [4234] = {.lex_state = 291, .external_lex_state = 16}, - [4235] = {.lex_state = 358, .external_lex_state = 20}, - [4236] = {.lex_state = 293}, - [4237] = {.lex_state = 291, .external_lex_state = 16}, - [4238] = {.lex_state = 358, .external_lex_state = 20}, - [4239] = {.lex_state = 358, .external_lex_state = 20}, - [4240] = {.lex_state = 362, .external_lex_state = 7}, - [4241] = {.lex_state = 141}, - [4242] = {.lex_state = 364, .external_lex_state = 10}, - [4243] = {.lex_state = 165}, - [4244] = {.lex_state = 170}, - [4245] = {.lex_state = 364, .external_lex_state = 10}, - [4246] = {.lex_state = 175, .external_lex_state = 6}, - [4247] = {.lex_state = 20, .external_lex_state = 2}, - [4248] = {.lex_state = 20, .external_lex_state = 2}, - [4249] = {.lex_state = 20, .external_lex_state = 2}, - [4250] = {.lex_state = 348, .external_lex_state = 3}, - [4251] = {.lex_state = 241}, - [4252] = {.lex_state = 348, .external_lex_state = 14}, - [4253] = {.lex_state = 327, .external_lex_state = 22}, - [4254] = {.lex_state = 327, .external_lex_state = 22}, - [4255] = {.lex_state = 103, .external_lex_state = 16}, - [4256] = {.lex_state = 291, .external_lex_state = 16}, - [4257] = {.lex_state = 348, .external_lex_state = 14}, - [4258] = {.lex_state = 289, .external_lex_state = 16}, - [4259] = {.lex_state = 348, .external_lex_state = 14}, - [4260] = {.lex_state = 293}, - [4261] = {.lex_state = 291, .external_lex_state = 16}, - [4262] = {.lex_state = 348, .external_lex_state = 14}, - [4263] = {.lex_state = 293}, - [4264] = {.lex_state = 291, .external_lex_state = 16}, - [4265] = {.lex_state = 293}, - [4266] = {.lex_state = 291, .external_lex_state = 16}, - [4267] = {.lex_state = 291, .external_lex_state = 16}, - [4268] = {.lex_state = 348, .external_lex_state = 14}, - [4269] = {.lex_state = 291, .external_lex_state = 16}, - [4270] = {.lex_state = 348, .external_lex_state = 10}, - [4271] = {.lex_state = 327, .external_lex_state = 22}, - [4272] = {.lex_state = 327, .external_lex_state = 22}, - [4273] = {.lex_state = 103, .external_lex_state = 16}, - [4274] = {.lex_state = 291, .external_lex_state = 16}, - [4275] = {.lex_state = 348, .external_lex_state = 10}, - [4276] = {.lex_state = 289, .external_lex_state = 16}, - [4277] = {.lex_state = 348, .external_lex_state = 10}, - [4278] = {.lex_state = 293}, - [4279] = {.lex_state = 291, .external_lex_state = 16}, - [4280] = {.lex_state = 348, .external_lex_state = 10}, - [4281] = {.lex_state = 293}, - [4282] = {.lex_state = 291, .external_lex_state = 16}, - [4283] = {.lex_state = 293}, - [4284] = {.lex_state = 291, .external_lex_state = 16}, - [4285] = {.lex_state = 291, .external_lex_state = 16}, - [4286] = {.lex_state = 348, .external_lex_state = 10}, - [4287] = {.lex_state = 291, .external_lex_state = 16}, - [4288] = {.lex_state = 354, .external_lex_state = 5}, - [4289] = {.lex_state = 354, .external_lex_state = 5}, - [4290] = {.lex_state = 354, .external_lex_state = 5}, - [4291] = {.lex_state = 291, .external_lex_state = 16}, - [4292] = {.lex_state = 327, .external_lex_state = 22}, - [4293] = {.lex_state = 327, .external_lex_state = 22}, - [4294] = {.lex_state = 103, .external_lex_state = 16}, - [4295] = {.lex_state = 291, .external_lex_state = 16}, - [4296] = {.lex_state = 354, .external_lex_state = 5}, - [4297] = {.lex_state = 291, .external_lex_state = 16}, - [4298] = {.lex_state = 354, .external_lex_state = 5}, - [4299] = {.lex_state = 291, .external_lex_state = 16}, - [4300] = {.lex_state = 354, .external_lex_state = 5}, - [4301] = {.lex_state = 291, .external_lex_state = 16}, - [4302] = {.lex_state = 354, .external_lex_state = 5}, - [4303] = {.lex_state = 291, .external_lex_state = 16}, - [4304] = {.lex_state = 360, .external_lex_state = 5}, - [4305] = {.lex_state = 360, .external_lex_state = 5}, - [4306] = {.lex_state = 360, .external_lex_state = 5}, - [4307] = {.lex_state = 289, .external_lex_state = 16}, - [4308] = {.lex_state = 360, .external_lex_state = 5}, - [4309] = {.lex_state = 293}, - [4310] = {.lex_state = 291, .external_lex_state = 16}, - [4311] = {.lex_state = 103}, - [4312] = {.lex_state = 226, .external_lex_state = 16}, - [4313] = {.lex_state = 226, .external_lex_state = 16}, - [4314] = {.lex_state = 226, .external_lex_state = 16}, - [4315] = {.lex_state = 360, .external_lex_state = 5}, - [4316] = {.lex_state = 293}, - [4317] = {.lex_state = 291, .external_lex_state = 16}, - [4318] = {.lex_state = 360, .external_lex_state = 5}, - [4319] = {.lex_state = 293}, - [4320] = {.lex_state = 291, .external_lex_state = 16}, - [4321] = {.lex_state = 360, .external_lex_state = 5}, - [4322] = {.lex_state = 360, .external_lex_state = 5}, - [4323] = {.lex_state = 333, .external_lex_state = 13}, - [4324] = {.lex_state = 333, .external_lex_state = 13}, - [4325] = {.lex_state = 333, .external_lex_state = 13}, - [4326] = {.lex_state = 179, .external_lex_state = 2}, - [4327] = {.lex_state = 141}, - [4328] = {.lex_state = 153, .external_lex_state = 4}, - [4329] = {.lex_state = 182, .external_lex_state = 8}, - [4330] = {.lex_state = 179, .external_lex_state = 2}, - [4331] = {.lex_state = 141}, - [4332] = {.lex_state = 153, .external_lex_state = 4}, - [4333] = {.lex_state = 182, .external_lex_state = 8}, - [4334] = {.lex_state = 335, .external_lex_state = 10}, - [4335] = {.lex_state = 335, .external_lex_state = 10}, - [4336] = {.lex_state = 335, .external_lex_state = 10}, - [4337] = {.lex_state = 342, .external_lex_state = 10}, - [4338] = {.lex_state = 342, .external_lex_state = 10}, - [4339] = {.lex_state = 342, .external_lex_state = 10}, - [4340] = {.lex_state = 342, .external_lex_state = 10}, - [4341] = {.lex_state = 291, .external_lex_state = 16}, - [4342] = {.lex_state = 342, .external_lex_state = 10}, - [4343] = {.lex_state = 291, .external_lex_state = 16}, - [4344] = {.lex_state = 342, .external_lex_state = 10}, - [4345] = {.lex_state = 291, .external_lex_state = 16}, - [4346] = {.lex_state = 342, .external_lex_state = 10}, - [4347] = {.lex_state = 342, .external_lex_state = 10}, - [4348] = {.lex_state = 344, .external_lex_state = 13}, - [4349] = {.lex_state = 344, .external_lex_state = 13}, - [4350] = {.lex_state = 344, .external_lex_state = 13}, - [4351] = {.lex_state = 344, .external_lex_state = 13}, - [4352] = {.lex_state = 291, .external_lex_state = 16}, - [4353] = {.lex_state = 344, .external_lex_state = 13}, - [4354] = {.lex_state = 291, .external_lex_state = 16}, - [4355] = {.lex_state = 344, .external_lex_state = 13}, - [4356] = {.lex_state = 291, .external_lex_state = 16}, - [4357] = {.lex_state = 344, .external_lex_state = 13}, - [4358] = {.lex_state = 344, .external_lex_state = 13}, - [4359] = {.lex_state = 346, .external_lex_state = 13}, - [4360] = {.lex_state = 346, .external_lex_state = 13}, - [4361] = {.lex_state = 346, .external_lex_state = 13}, - [4362] = {.lex_state = 346, .external_lex_state = 13}, - [4363] = {.lex_state = 291, .external_lex_state = 16}, - [4364] = {.lex_state = 346, .external_lex_state = 13}, - [4365] = {.lex_state = 291, .external_lex_state = 16}, - [4366] = {.lex_state = 346, .external_lex_state = 13}, - [4367] = {.lex_state = 291, .external_lex_state = 16}, - [4368] = {.lex_state = 346, .external_lex_state = 13}, - [4369] = {.lex_state = 346, .external_lex_state = 13}, - [4370] = {.lex_state = 358, .external_lex_state = 20}, - [4371] = {.lex_state = 327, .external_lex_state = 22}, - [4372] = {.lex_state = 327, .external_lex_state = 22}, - [4373] = {.lex_state = 103, .external_lex_state = 16}, - [4374] = {.lex_state = 291, .external_lex_state = 16}, - [4375] = {.lex_state = 358, .external_lex_state = 20}, - [4376] = {.lex_state = 289, .external_lex_state = 16}, - [4377] = {.lex_state = 358, .external_lex_state = 20}, - [4378] = {.lex_state = 293}, - [4379] = {.lex_state = 291, .external_lex_state = 16}, - [4380] = {.lex_state = 358, .external_lex_state = 20}, - [4381] = {.lex_state = 293}, - [4382] = {.lex_state = 291, .external_lex_state = 16}, - [4383] = {.lex_state = 293}, - [4384] = {.lex_state = 291, .external_lex_state = 16}, - [4385] = {.lex_state = 291, .external_lex_state = 16}, - [4386] = {.lex_state = 358, .external_lex_state = 20}, - [4387] = {.lex_state = 291, .external_lex_state = 16}, - [4388] = {.lex_state = 364, .external_lex_state = 10}, - [4389] = {.lex_state = 364, .external_lex_state = 10}, - [4390] = {.lex_state = 141}, - [4391] = {.lex_state = 364, .external_lex_state = 10}, - [4392] = {.lex_state = 364, .external_lex_state = 10}, - [4393] = {.lex_state = 165}, - [4394] = {.lex_state = 364, .external_lex_state = 10}, - [4395] = {.lex_state = 364, .external_lex_state = 10}, - [4396] = {.lex_state = 364, .external_lex_state = 10}, - [4397] = {.lex_state = 103}, - [4398] = {.lex_state = 226, .external_lex_state = 16}, - [4399] = {.lex_state = 235, .external_lex_state = 6}, - [4400] = {.lex_state = 226, .external_lex_state = 16}, - [4401] = {.lex_state = 226, .external_lex_state = 16}, - [4402] = {.lex_state = 103}, - [4403] = {.lex_state = 241, .external_lex_state = 2}, - [4404] = {.lex_state = 103}, - [4405] = {.lex_state = 249, .external_lex_state = 2}, - [4406] = {.lex_state = 103}, - [4407] = {.lex_state = 241, .external_lex_state = 2}, - [4408] = {.lex_state = 348, .external_lex_state = 3}, - [4409] = {.lex_state = 348, .external_lex_state = 14}, - [4410] = {.lex_state = 348, .external_lex_state = 14}, - [4411] = {.lex_state = 348, .external_lex_state = 14}, - [4412] = {.lex_state = 291, .external_lex_state = 16}, - [4413] = {.lex_state = 327, .external_lex_state = 22}, - [4414] = {.lex_state = 327, .external_lex_state = 22}, - [4415] = {.lex_state = 103, .external_lex_state = 16}, - [4416] = {.lex_state = 291, .external_lex_state = 16}, - [4417] = {.lex_state = 348, .external_lex_state = 14}, - [4418] = {.lex_state = 291, .external_lex_state = 16}, - [4419] = {.lex_state = 348, .external_lex_state = 14}, - [4420] = {.lex_state = 291, .external_lex_state = 16}, - [4421] = {.lex_state = 348, .external_lex_state = 14}, - [4422] = {.lex_state = 291, .external_lex_state = 16}, - [4423] = {.lex_state = 348, .external_lex_state = 14}, - [4424] = {.lex_state = 291, .external_lex_state = 16}, - [4425] = {.lex_state = 348, .external_lex_state = 10}, - [4426] = {.lex_state = 348, .external_lex_state = 10}, - [4427] = {.lex_state = 348, .external_lex_state = 10}, - [4428] = {.lex_state = 291, .external_lex_state = 16}, - [4429] = {.lex_state = 327, .external_lex_state = 22}, - [4430] = {.lex_state = 327, .external_lex_state = 22}, - [4431] = {.lex_state = 103, .external_lex_state = 16}, - [4432] = {.lex_state = 291, .external_lex_state = 16}, - [4433] = {.lex_state = 348, .external_lex_state = 10}, - [4434] = {.lex_state = 291, .external_lex_state = 16}, - [4435] = {.lex_state = 348, .external_lex_state = 10}, - [4436] = {.lex_state = 291, .external_lex_state = 16}, - [4437] = {.lex_state = 348, .external_lex_state = 10}, - [4438] = {.lex_state = 291, .external_lex_state = 16}, - [4439] = {.lex_state = 348, .external_lex_state = 10}, - [4440] = {.lex_state = 291, .external_lex_state = 16}, - [4441] = {.lex_state = 354, .external_lex_state = 5}, - [4442] = {.lex_state = 354, .external_lex_state = 5}, - [4443] = {.lex_state = 354, .external_lex_state = 5}, - [4444] = {.lex_state = 354, .external_lex_state = 5}, - [4445] = {.lex_state = 291, .external_lex_state = 16}, - [4446] = {.lex_state = 354, .external_lex_state = 5}, - [4447] = {.lex_state = 291, .external_lex_state = 16}, - [4448] = {.lex_state = 354, .external_lex_state = 5}, - [4449] = {.lex_state = 291, .external_lex_state = 16}, - [4450] = {.lex_state = 354, .external_lex_state = 5}, - [4451] = {.lex_state = 354, .external_lex_state = 5}, - [4452] = {.lex_state = 360, .external_lex_state = 5}, - [4453] = {.lex_state = 327, .external_lex_state = 22}, - [4454] = {.lex_state = 327, .external_lex_state = 22}, - [4455] = {.lex_state = 103, .external_lex_state = 16}, - [4456] = {.lex_state = 291, .external_lex_state = 16}, - [4457] = {.lex_state = 360, .external_lex_state = 5}, - [4458] = {.lex_state = 289, .external_lex_state = 16}, - [4459] = {.lex_state = 360, .external_lex_state = 5}, - [4460] = {.lex_state = 293}, - [4461] = {.lex_state = 291, .external_lex_state = 16}, - [4462] = {.lex_state = 360, .external_lex_state = 5}, - [4463] = {.lex_state = 293}, - [4464] = {.lex_state = 291, .external_lex_state = 16}, - [4465] = {.lex_state = 293}, - [4466] = {.lex_state = 291, .external_lex_state = 16}, - [4467] = {.lex_state = 291, .external_lex_state = 16}, - [4468] = {.lex_state = 360, .external_lex_state = 5}, - [4469] = {.lex_state = 291, .external_lex_state = 16}, - [4470] = {.lex_state = 179, .external_lex_state = 2}, - [4471] = {.lex_state = 179, .external_lex_state = 2}, - [4472] = {.lex_state = 342, .external_lex_state = 10}, - [4473] = {.lex_state = 342, .external_lex_state = 10}, - [4474] = {.lex_state = 342, .external_lex_state = 10}, - [4475] = {.lex_state = 344, .external_lex_state = 13}, - [4476] = {.lex_state = 344, .external_lex_state = 13}, - [4477] = {.lex_state = 344, .external_lex_state = 13}, - [4478] = {.lex_state = 346, .external_lex_state = 13}, - [4479] = {.lex_state = 346, .external_lex_state = 13}, - [4480] = {.lex_state = 346, .external_lex_state = 13}, - [4481] = {.lex_state = 358, .external_lex_state = 20}, - [4482] = {.lex_state = 358, .external_lex_state = 20}, - [4483] = {.lex_state = 358, .external_lex_state = 20}, - [4484] = {.lex_state = 291, .external_lex_state = 16}, - [4485] = {.lex_state = 327, .external_lex_state = 22}, - [4486] = {.lex_state = 327, .external_lex_state = 22}, - [4487] = {.lex_state = 103, .external_lex_state = 16}, - [4488] = {.lex_state = 291, .external_lex_state = 16}, - [4489] = {.lex_state = 358, .external_lex_state = 20}, - [4490] = {.lex_state = 291, .external_lex_state = 16}, - [4491] = {.lex_state = 358, .external_lex_state = 20}, - [4492] = {.lex_state = 291, .external_lex_state = 16}, - [4493] = {.lex_state = 358, .external_lex_state = 20}, - [4494] = {.lex_state = 291, .external_lex_state = 16}, - [4495] = {.lex_state = 358, .external_lex_state = 20}, - [4496] = {.lex_state = 291, .external_lex_state = 16}, - [4497] = {.lex_state = 364, .external_lex_state = 10}, - [4498] = {.lex_state = 364, .external_lex_state = 10}, - [4499] = {.lex_state = 364, .external_lex_state = 10}, - [4500] = {.lex_state = 289, .external_lex_state = 16}, - [4501] = {.lex_state = 364, .external_lex_state = 10}, - [4502] = {.lex_state = 293}, - [4503] = {.lex_state = 291, .external_lex_state = 16}, - [4504] = {.lex_state = 103}, - [4505] = {.lex_state = 226, .external_lex_state = 16}, - [4506] = {.lex_state = 226, .external_lex_state = 16}, - [4507] = {.lex_state = 226, .external_lex_state = 16}, - [4508] = {.lex_state = 364, .external_lex_state = 10}, - [4509] = {.lex_state = 293}, - [4510] = {.lex_state = 291, .external_lex_state = 16}, - [4511] = {.lex_state = 364, .external_lex_state = 10}, - [4512] = {.lex_state = 293}, - [4513] = {.lex_state = 291, .external_lex_state = 16}, - [4514] = {.lex_state = 364, .external_lex_state = 10}, - [4515] = {.lex_state = 364, .external_lex_state = 10}, - [4516] = {.lex_state = 348, .external_lex_state = 14}, - [4517] = {.lex_state = 348, .external_lex_state = 14}, - [4518] = {.lex_state = 348, .external_lex_state = 14}, - [4519] = {.lex_state = 348, .external_lex_state = 14}, - [4520] = {.lex_state = 291, .external_lex_state = 16}, - [4521] = {.lex_state = 348, .external_lex_state = 14}, - [4522] = {.lex_state = 291, .external_lex_state = 16}, - [4523] = {.lex_state = 348, .external_lex_state = 14}, - [4524] = {.lex_state = 291, .external_lex_state = 16}, - [4525] = {.lex_state = 348, .external_lex_state = 14}, - [4526] = {.lex_state = 348, .external_lex_state = 14}, - [4527] = {.lex_state = 348, .external_lex_state = 10}, - [4528] = {.lex_state = 348, .external_lex_state = 10}, - [4529] = {.lex_state = 348, .external_lex_state = 10}, - [4530] = {.lex_state = 348, .external_lex_state = 10}, - [4531] = {.lex_state = 291, .external_lex_state = 16}, - [4532] = {.lex_state = 348, .external_lex_state = 10}, - [4533] = {.lex_state = 291, .external_lex_state = 16}, - [4534] = {.lex_state = 348, .external_lex_state = 10}, - [4535] = {.lex_state = 291, .external_lex_state = 16}, - [4536] = {.lex_state = 348, .external_lex_state = 10}, - [4537] = {.lex_state = 348, .external_lex_state = 10}, - [4538] = {.lex_state = 354, .external_lex_state = 5}, - [4539] = {.lex_state = 354, .external_lex_state = 5}, - [4540] = {.lex_state = 354, .external_lex_state = 5}, - [4541] = {.lex_state = 360, .external_lex_state = 5}, - [4542] = {.lex_state = 360, .external_lex_state = 5}, - [4543] = {.lex_state = 360, .external_lex_state = 5}, - [4544] = {.lex_state = 291, .external_lex_state = 16}, - [4545] = {.lex_state = 327, .external_lex_state = 22}, - [4546] = {.lex_state = 327, .external_lex_state = 22}, - [4547] = {.lex_state = 103, .external_lex_state = 16}, - [4548] = {.lex_state = 291, .external_lex_state = 16}, - [4549] = {.lex_state = 360, .external_lex_state = 5}, - [4550] = {.lex_state = 291, .external_lex_state = 16}, - [4551] = {.lex_state = 360, .external_lex_state = 5}, - [4552] = {.lex_state = 291, .external_lex_state = 16}, - [4553] = {.lex_state = 360, .external_lex_state = 5}, - [4554] = {.lex_state = 291, .external_lex_state = 16}, - [4555] = {.lex_state = 360, .external_lex_state = 5}, - [4556] = {.lex_state = 291, .external_lex_state = 16}, - [4557] = {.lex_state = 358, .external_lex_state = 20}, - [4558] = {.lex_state = 358, .external_lex_state = 20}, - [4559] = {.lex_state = 358, .external_lex_state = 20}, - [4560] = {.lex_state = 358, .external_lex_state = 20}, - [4561] = {.lex_state = 291, .external_lex_state = 16}, - [4562] = {.lex_state = 358, .external_lex_state = 20}, - [4563] = {.lex_state = 291, .external_lex_state = 16}, - [4564] = {.lex_state = 358, .external_lex_state = 20}, - [4565] = {.lex_state = 291, .external_lex_state = 16}, - [4566] = {.lex_state = 358, .external_lex_state = 20}, - [4567] = {.lex_state = 358, .external_lex_state = 20}, - [4568] = {.lex_state = 364, .external_lex_state = 10}, - [4569] = {.lex_state = 327, .external_lex_state = 22}, - [4570] = {.lex_state = 327, .external_lex_state = 22}, - [4571] = {.lex_state = 103, .external_lex_state = 16}, - [4572] = {.lex_state = 291, .external_lex_state = 16}, - [4573] = {.lex_state = 364, .external_lex_state = 10}, - [4574] = {.lex_state = 289, .external_lex_state = 16}, - [4575] = {.lex_state = 364, .external_lex_state = 10}, - [4576] = {.lex_state = 293}, - [4577] = {.lex_state = 291, .external_lex_state = 16}, - [4578] = {.lex_state = 364, .external_lex_state = 10}, - [4579] = {.lex_state = 293}, - [4580] = {.lex_state = 291, .external_lex_state = 16}, - [4581] = {.lex_state = 293}, - [4582] = {.lex_state = 291, .external_lex_state = 16}, - [4583] = {.lex_state = 291, .external_lex_state = 16}, - [4584] = {.lex_state = 364, .external_lex_state = 10}, - [4585] = {.lex_state = 291, .external_lex_state = 16}, - [4586] = {.lex_state = 348, .external_lex_state = 14}, - [4587] = {.lex_state = 348, .external_lex_state = 14}, - [4588] = {.lex_state = 348, .external_lex_state = 14}, - [4589] = {.lex_state = 348, .external_lex_state = 10}, - [4590] = {.lex_state = 348, .external_lex_state = 10}, - [4591] = {.lex_state = 348, .external_lex_state = 10}, - [4592] = {.lex_state = 360, .external_lex_state = 5}, - [4593] = {.lex_state = 360, .external_lex_state = 5}, - [4594] = {.lex_state = 360, .external_lex_state = 5}, - [4595] = {.lex_state = 360, .external_lex_state = 5}, - [4596] = {.lex_state = 291, .external_lex_state = 16}, - [4597] = {.lex_state = 360, .external_lex_state = 5}, - [4598] = {.lex_state = 291, .external_lex_state = 16}, - [4599] = {.lex_state = 360, .external_lex_state = 5}, - [4600] = {.lex_state = 291, .external_lex_state = 16}, - [4601] = {.lex_state = 360, .external_lex_state = 5}, - [4602] = {.lex_state = 360, .external_lex_state = 5}, - [4603] = {.lex_state = 358, .external_lex_state = 20}, - [4604] = {.lex_state = 358, .external_lex_state = 20}, - [4605] = {.lex_state = 358, .external_lex_state = 20}, - [4606] = {.lex_state = 364, .external_lex_state = 10}, - [4607] = {.lex_state = 364, .external_lex_state = 10}, - [4608] = {.lex_state = 364, .external_lex_state = 10}, - [4609] = {.lex_state = 291, .external_lex_state = 16}, - [4610] = {.lex_state = 327, .external_lex_state = 22}, - [4611] = {.lex_state = 327, .external_lex_state = 22}, - [4612] = {.lex_state = 103, .external_lex_state = 16}, - [4613] = {.lex_state = 291, .external_lex_state = 16}, - [4614] = {.lex_state = 364, .external_lex_state = 10}, - [4615] = {.lex_state = 291, .external_lex_state = 16}, - [4616] = {.lex_state = 364, .external_lex_state = 10}, - [4617] = {.lex_state = 291, .external_lex_state = 16}, - [4618] = {.lex_state = 364, .external_lex_state = 10}, - [4619] = {.lex_state = 291, .external_lex_state = 16}, - [4620] = {.lex_state = 364, .external_lex_state = 10}, - [4621] = {.lex_state = 291, .external_lex_state = 16}, - [4622] = {.lex_state = 360, .external_lex_state = 5}, - [4623] = {.lex_state = 360, .external_lex_state = 5}, - [4624] = {.lex_state = 360, .external_lex_state = 5}, - [4625] = {.lex_state = 364, .external_lex_state = 10}, - [4626] = {.lex_state = 364, .external_lex_state = 10}, - [4627] = {.lex_state = 364, .external_lex_state = 10}, - [4628] = {.lex_state = 364, .external_lex_state = 10}, - [4629] = {.lex_state = 291, .external_lex_state = 16}, - [4630] = {.lex_state = 364, .external_lex_state = 10}, - [4631] = {.lex_state = 291, .external_lex_state = 16}, - [4632] = {.lex_state = 364, .external_lex_state = 10}, - [4633] = {.lex_state = 291, .external_lex_state = 16}, - [4634] = {.lex_state = 364, .external_lex_state = 10}, - [4635] = {.lex_state = 364, .external_lex_state = 10}, - [4636] = {.lex_state = 364, .external_lex_state = 10}, - [4637] = {.lex_state = 364, .external_lex_state = 10}, - [4638] = {.lex_state = 364, .external_lex_state = 10}, + [1] = {.lex_state = 133, .external_lex_state = 2}, + [2] = {.lex_state = 133}, + [3] = {.lex_state = 203}, + [4] = {.lex_state = 228}, + [5] = {.lex_state = 133, .external_lex_state = 2}, + [6] = {.lex_state = 133, .external_lex_state = 2}, + [7] = {.lex_state = 231}, + [8] = {.lex_state = 231}, + [9] = {.lex_state = 133, .external_lex_state = 2}, + [10] = {.lex_state = 233}, + [11] = {.lex_state = 233}, + [12] = {.lex_state = 239, .external_lex_state = 3}, + [13] = {.lex_state = 239, .external_lex_state = 4}, + [14] = {.lex_state = 231}, + [15] = {.lex_state = 246, .external_lex_state = 5}, + [16] = {.lex_state = 248}, + [17] = {.lex_state = 255}, + [18] = {.lex_state = 246, .external_lex_state = 5}, + [19] = {.lex_state = 258, .external_lex_state = 6}, + [20] = {.lex_state = 133, .external_lex_state = 2}, + [21] = {.lex_state = 133, .external_lex_state = 2}, + [22] = {.lex_state = 133, .external_lex_state = 2}, + [23] = {.lex_state = 260, .external_lex_state = 5}, + [24] = {.lex_state = 133}, + [25] = {.lex_state = 239, .external_lex_state = 4}, + [26] = {.lex_state = 246, .external_lex_state = 7}, + [27] = {.lex_state = 262, .external_lex_state = 8}, + [28] = {.lex_state = 203}, + [29] = {.lex_state = 264, .external_lex_state = 7}, + [30] = {.lex_state = 133, .external_lex_state = 2}, + [31] = {.lex_state = 231, .external_lex_state = 2}, + [32] = {.lex_state = 231}, + [33] = {.lex_state = 231}, + [34] = {.lex_state = 266, .external_lex_state = 9}, + [35] = {.lex_state = 268, .external_lex_state = 8}, + [36] = {.lex_state = 270, .external_lex_state = 4}, + [37] = {.lex_state = 203}, + [38] = {.lex_state = 239, .external_lex_state = 4}, + [39] = {.lex_state = 262, .external_lex_state = 8}, + [40] = {.lex_state = 203}, + [41] = {.lex_state = 270, .external_lex_state = 10}, + [42] = {.lex_state = 248}, + [43] = {.lex_state = 255}, + [44] = {.lex_state = 270, .external_lex_state = 10}, + [45] = {.lex_state = 258, .external_lex_state = 6}, + [46] = {.lex_state = 133, .external_lex_state = 2}, + [47] = {.lex_state = 133, .external_lex_state = 2}, + [48] = {.lex_state = 133, .external_lex_state = 2}, + [49] = {.lex_state = 270, .external_lex_state = 4}, + [50] = {.lex_state = 203}, + [51] = {.lex_state = 203}, + [52] = {.lex_state = 133, .external_lex_state = 2}, + [53] = {.lex_state = 231}, + [54] = {.lex_state = 233}, + [55] = {.lex_state = 233}, + [56] = {.lex_state = 273, .external_lex_state = 3}, + [57] = {.lex_state = 273, .external_lex_state = 4}, + [58] = {.lex_state = 264, .external_lex_state = 5}, + [59] = {.lex_state = 264, .external_lex_state = 5}, + [60] = {.lex_state = 275, .external_lex_state = 5}, + [61] = {.lex_state = 273, .external_lex_state = 4}, + [62] = {.lex_state = 264, .external_lex_state = 7}, + [63] = {.lex_state = 268, .external_lex_state = 8}, + [64] = {.lex_state = 203}, + [65] = {.lex_state = 133, .external_lex_state = 2}, + [66] = {.lex_state = 231, .external_lex_state = 2}, + [67] = {.lex_state = 277}, + [68] = {.lex_state = 297, .external_lex_state = 11}, + [69] = {.lex_state = 248}, + [70] = {.lex_state = 255}, + [71] = {.lex_state = 297, .external_lex_state = 11}, + [72] = {.lex_state = 258, .external_lex_state = 6}, + [73] = {.lex_state = 133, .external_lex_state = 2}, + [74] = {.lex_state = 133, .external_lex_state = 2}, + [75] = {.lex_state = 133, .external_lex_state = 2}, + [76] = {.lex_state = 297, .external_lex_state = 12}, + [77] = {.lex_state = 297, .external_lex_state = 12}, + [78] = {.lex_state = 277}, + [79] = {.lex_state = 299, .external_lex_state = 13}, + [80] = {.lex_state = 248}, + [81] = {.lex_state = 255}, + [82] = {.lex_state = 299, .external_lex_state = 13}, + [83] = {.lex_state = 258, .external_lex_state = 6}, + [84] = {.lex_state = 133, .external_lex_state = 2}, + [85] = {.lex_state = 133, .external_lex_state = 2}, + [86] = {.lex_state = 133, .external_lex_state = 2}, + [87] = {.lex_state = 299}, + [88] = {.lex_state = 299}, + [89] = {.lex_state = 203}, + [90] = {.lex_state = 239, .external_lex_state = 14}, + [91] = {.lex_state = 248}, + [92] = {.lex_state = 255}, + [93] = {.lex_state = 239, .external_lex_state = 14}, + [94] = {.lex_state = 258, .external_lex_state = 6}, + [95] = {.lex_state = 133, .external_lex_state = 2}, + [96] = {.lex_state = 133, .external_lex_state = 2}, + [97] = {.lex_state = 133, .external_lex_state = 2}, + [98] = {.lex_state = 273, .external_lex_state = 3}, + [99] = {.lex_state = 203}, + [100] = {.lex_state = 239, .external_lex_state = 3}, + [101] = {.lex_state = 239, .external_lex_state = 10}, + [102] = {.lex_state = 248}, + [103] = {.lex_state = 255}, + [104] = {.lex_state = 239, .external_lex_state = 10}, + [105] = {.lex_state = 258, .external_lex_state = 6}, + [106] = {.lex_state = 133, .external_lex_state = 2}, + [107] = {.lex_state = 133, .external_lex_state = 2}, + [108] = {.lex_state = 133, .external_lex_state = 2}, + [109] = {.lex_state = 273, .external_lex_state = 4}, + [110] = {.lex_state = 239, .external_lex_state = 4}, + [111] = {.lex_state = 231, .external_lex_state = 15}, + [112] = {.lex_state = 248}, + [113] = {.lex_state = 255}, + [114] = {.lex_state = 231, .external_lex_state = 15}, + [115] = {.lex_state = 258, .external_lex_state = 6}, + [116] = {.lex_state = 133, .external_lex_state = 2}, + [117] = {.lex_state = 133, .external_lex_state = 2}, + [118] = {.lex_state = 133, .external_lex_state = 2}, + [119] = {.lex_state = 231, .external_lex_state = 2}, + [120] = {.lex_state = 231}, + [121] = {.lex_state = 246, .external_lex_state = 5}, + [122] = {.lex_state = 264, .external_lex_state = 5}, + [123] = {.lex_state = 302}, + [124] = {.lex_state = 248, .external_lex_state = 13}, + [125] = {.lex_state = 258, .external_lex_state = 6}, + [126] = {.lex_state = 133, .external_lex_state = 2}, + [127] = {.lex_state = 133, .external_lex_state = 2}, + [128] = {.lex_state = 248}, + [129] = {.lex_state = 264, .external_lex_state = 5}, + [130] = {.lex_state = 264, .external_lex_state = 5}, + [131] = {.lex_state = 264, .external_lex_state = 5}, + [132] = {.lex_state = 203}, + [133] = {.lex_state = 308, .external_lex_state = 16}, + [134] = {.lex_state = 316, .external_lex_state = 6}, + [135] = {.lex_state = 308, .external_lex_state = 16}, + [136] = {.lex_state = 308, .external_lex_state = 16}, + [137] = {.lex_state = 203}, + [138] = {.lex_state = 228}, + [139] = {.lex_state = 133, .external_lex_state = 2}, + [140] = {.lex_state = 133, .external_lex_state = 2}, + [141] = {.lex_state = 231}, + [142] = {.lex_state = 231}, + [143] = {.lex_state = 133, .external_lex_state = 2}, + [144] = {.lex_state = 233}, + [145] = {.lex_state = 233}, + [146] = {.lex_state = 318, .external_lex_state = 6}, + [147] = {.lex_state = 318}, + [148] = {.lex_state = 233, .external_lex_state = 17}, + [149] = {.lex_state = 248}, + [150] = {.lex_state = 255}, + [151] = {.lex_state = 233, .external_lex_state = 17}, + [152] = {.lex_state = 258, .external_lex_state = 6}, + [153] = {.lex_state = 133, .external_lex_state = 2}, + [154] = {.lex_state = 133, .external_lex_state = 2}, + [155] = {.lex_state = 133, .external_lex_state = 2}, + [156] = {.lex_state = 320, .external_lex_state = 17}, + [157] = {.lex_state = 203}, + [158] = {.lex_state = 233, .external_lex_state = 18}, + [159] = {.lex_state = 322, .external_lex_state = 2}, + [160] = {.lex_state = 203}, + [161] = {.lex_state = 233, .external_lex_state = 18}, + [162] = {.lex_state = 231, .external_lex_state = 2}, + [163] = {.lex_state = 203}, + [164] = {.lex_state = 133, .external_lex_state = 2}, + [165] = {.lex_state = 231}, + [166] = {.lex_state = 233}, + [167] = {.lex_state = 233}, + [168] = {.lex_state = 324, .external_lex_state = 6}, + [169] = {.lex_state = 318}, + [170] = {.lex_state = 326, .external_lex_state = 17}, + [171] = {.lex_state = 326, .external_lex_state = 17}, + [172] = {.lex_state = 328, .external_lex_state = 17}, + [173] = {.lex_state = 203}, + [174] = {.lex_state = 326, .external_lex_state = 18}, + [175] = {.lex_state = 330, .external_lex_state = 2}, + [176] = {.lex_state = 203}, + [177] = {.lex_state = 231, .external_lex_state = 2}, + [178] = {.lex_state = 203}, + [179] = {.lex_state = 322, .external_lex_state = 2}, + [180] = {.lex_state = 203}, + [181] = {.lex_state = 133, .external_lex_state = 2}, + [182] = {.lex_state = 332, .external_lex_state = 2}, + [183] = {.lex_state = 133, .external_lex_state = 2}, + [184] = {.lex_state = 133}, + [185] = {.lex_state = 277}, + [186] = {.lex_state = 231}, + [187] = {.lex_state = 335, .external_lex_state = 19}, + [188] = {.lex_state = 231}, + [189] = {.lex_state = 246, .external_lex_state = 5}, + [190] = {.lex_state = 246, .external_lex_state = 5}, + [191] = {.lex_state = 264, .external_lex_state = 7}, + [192] = {.lex_state = 337, .external_lex_state = 7}, + [193] = {.lex_state = 246, .external_lex_state = 7}, + [194] = {.lex_state = 133, .external_lex_state = 2}, + [195] = {.lex_state = 203}, + [196] = {.lex_state = 246, .external_lex_state = 7}, + [197] = {.lex_state = 203}, + [198] = {.lex_state = 231, .external_lex_state = 2}, + [199] = {.lex_state = 231, .external_lex_state = 15}, + [200] = {.lex_state = 231, .external_lex_state = 15}, + [201] = {.lex_state = 231, .external_lex_state = 2}, + [202] = {.lex_state = 341, .external_lex_state = 11}, + [203] = {.lex_state = 341, .external_lex_state = 11}, + [204] = {.lex_state = 341, .external_lex_state = 11}, + [205] = {.lex_state = 268, .external_lex_state = 8}, + [206] = {.lex_state = 322}, + [207] = {.lex_state = 262, .external_lex_state = 20}, + [208] = {.lex_state = 248}, + [209] = {.lex_state = 255}, + [210] = {.lex_state = 262, .external_lex_state = 20}, + [211] = {.lex_state = 258, .external_lex_state = 6}, + [212] = {.lex_state = 133, .external_lex_state = 2}, + [213] = {.lex_state = 133, .external_lex_state = 2}, + [214] = {.lex_state = 133, .external_lex_state = 2}, + [215] = {.lex_state = 231}, + [216] = {.lex_state = 203}, + [217] = {.lex_state = 343, .external_lex_state = 2}, + [218] = {.lex_state = 337, .external_lex_state = 7}, + [219] = {.lex_state = 203}, + [220] = {.lex_state = 349, .external_lex_state = 2}, + [221] = {.lex_state = 231}, + [222] = {.lex_state = 270, .external_lex_state = 4}, + [223] = {.lex_state = 203}, + [224] = {.lex_state = 270, .external_lex_state = 10}, + [225] = {.lex_state = 270, .external_lex_state = 10}, + [226] = {.lex_state = 248}, + [227] = {.lex_state = 270, .external_lex_state = 10}, + [228] = {.lex_state = 270, .external_lex_state = 10}, + [229] = {.lex_state = 270, .external_lex_state = 10}, + [230] = {.lex_state = 270, .external_lex_state = 4}, + [231] = {.lex_state = 203}, + [232] = {.lex_state = 203}, + [233] = {.lex_state = 308, .external_lex_state = 16}, + [234] = {.lex_state = 316, .external_lex_state = 6}, + [235] = {.lex_state = 308, .external_lex_state = 16}, + [236] = {.lex_state = 308, .external_lex_state = 16}, + [237] = {.lex_state = 203}, + [238] = {.lex_state = 322, .external_lex_state = 2}, + [239] = {.lex_state = 203}, + [240] = {.lex_state = 330, .external_lex_state = 2}, + [241] = {.lex_state = 203}, + [242] = {.lex_state = 322, .external_lex_state = 2}, + [243] = {.lex_state = 203}, + [244] = {.lex_state = 359, .external_lex_state = 21}, + [245] = {.lex_state = 361, .external_lex_state = 7}, + [246] = {.lex_state = 266, .external_lex_state = 9}, + [247] = {.lex_state = 203}, + [248] = {.lex_state = 203}, + [249] = {.lex_state = 297, .external_lex_state = 12}, + [250] = {.lex_state = 299}, + [251] = {.lex_state = 203}, + [252] = {.lex_state = 273, .external_lex_state = 14}, + [253] = {.lex_state = 273, .external_lex_state = 14}, + [254] = {.lex_state = 203}, + [255] = {.lex_state = 273, .external_lex_state = 3}, + [256] = {.lex_state = 273, .external_lex_state = 10}, + [257] = {.lex_state = 273, .external_lex_state = 10}, + [258] = {.lex_state = 273, .external_lex_state = 4}, + [259] = {.lex_state = 264, .external_lex_state = 5}, + [260] = {.lex_state = 203}, + [261] = {.lex_state = 133, .external_lex_state = 2}, + [262] = {.lex_state = 364, .external_lex_state = 4}, + [263] = {.lex_state = 367, .external_lex_state = 2}, + [264] = {.lex_state = 133, .external_lex_state = 2}, + [265] = {.lex_state = 133}, + [266] = {.lex_state = 277}, + [267] = {.lex_state = 231}, + [268] = {.lex_state = 231}, + [269] = {.lex_state = 264, .external_lex_state = 5}, + [270] = {.lex_state = 264, .external_lex_state = 5}, + [271] = {.lex_state = 369, .external_lex_state = 7}, + [272] = {.lex_state = 264, .external_lex_state = 7}, + [273] = {.lex_state = 273, .external_lex_state = 4}, + [274] = {.lex_state = 268, .external_lex_state = 8}, + [275] = {.lex_state = 133, .external_lex_state = 2}, + [276] = {.lex_state = 264, .external_lex_state = 7}, + [277] = {.lex_state = 297, .external_lex_state = 11}, + [278] = {.lex_state = 297, .external_lex_state = 11}, + [279] = {.lex_state = 297, .external_lex_state = 12}, + [280] = {.lex_state = 231}, + [281] = {.lex_state = 297, .external_lex_state = 11}, + [282] = {.lex_state = 297, .external_lex_state = 11}, + [283] = {.lex_state = 248}, + [284] = {.lex_state = 297, .external_lex_state = 11}, + [285] = {.lex_state = 297, .external_lex_state = 11}, + [286] = {.lex_state = 297, .external_lex_state = 11}, + [287] = {.lex_state = 203}, + [288] = {.lex_state = 308, .external_lex_state = 16}, + [289] = {.lex_state = 316, .external_lex_state = 6}, + [290] = {.lex_state = 308, .external_lex_state = 16}, + [291] = {.lex_state = 308, .external_lex_state = 16}, + [292] = {.lex_state = 203}, + [293] = {.lex_state = 322, .external_lex_state = 2}, + [294] = {.lex_state = 203}, + [295] = {.lex_state = 330, .external_lex_state = 2}, + [296] = {.lex_state = 203}, + [297] = {.lex_state = 322, .external_lex_state = 2}, + [298] = {.lex_state = 337, .external_lex_state = 7}, + [299] = {.lex_state = 297, .external_lex_state = 12}, + [300] = {.lex_state = 299, .external_lex_state = 13}, + [301] = {.lex_state = 299, .external_lex_state = 13}, + [302] = {.lex_state = 299}, + [303] = {.lex_state = 231}, + [304] = {.lex_state = 299, .external_lex_state = 13}, + [305] = {.lex_state = 371, .external_lex_state = 13}, + [306] = {.lex_state = 248}, + [307] = {.lex_state = 371, .external_lex_state = 13}, + [308] = {.lex_state = 371, .external_lex_state = 13}, + [309] = {.lex_state = 371, .external_lex_state = 13}, + [310] = {.lex_state = 203}, + [311] = {.lex_state = 308, .external_lex_state = 16}, + [312] = {.lex_state = 316, .external_lex_state = 6}, + [313] = {.lex_state = 308, .external_lex_state = 16}, + [314] = {.lex_state = 308, .external_lex_state = 16}, + [315] = {.lex_state = 203}, + [316] = {.lex_state = 322, .external_lex_state = 2}, + [317] = {.lex_state = 203}, + [318] = {.lex_state = 330, .external_lex_state = 2}, + [319] = {.lex_state = 203}, + [320] = {.lex_state = 322, .external_lex_state = 2}, + [321] = {.lex_state = 299}, + [322] = {.lex_state = 266, .external_lex_state = 9}, + [323] = {.lex_state = 273, .external_lex_state = 3}, + [324] = {.lex_state = 231}, + [325] = {.lex_state = 239, .external_lex_state = 14}, + [326] = {.lex_state = 273, .external_lex_state = 14}, + [327] = {.lex_state = 248}, + [328] = {.lex_state = 273, .external_lex_state = 14}, + [329] = {.lex_state = 273, .external_lex_state = 14}, + [330] = {.lex_state = 273, .external_lex_state = 14}, + [331] = {.lex_state = 203}, + [332] = {.lex_state = 308, .external_lex_state = 16}, + [333] = {.lex_state = 316, .external_lex_state = 6}, + [334] = {.lex_state = 308, .external_lex_state = 16}, + [335] = {.lex_state = 308, .external_lex_state = 16}, + [336] = {.lex_state = 203}, + [337] = {.lex_state = 322, .external_lex_state = 2}, + [338] = {.lex_state = 203}, + [339] = {.lex_state = 330, .external_lex_state = 2}, + [340] = {.lex_state = 203}, + [341] = {.lex_state = 322, .external_lex_state = 2}, + [342] = {.lex_state = 239, .external_lex_state = 3}, + [343] = {.lex_state = 231}, + [344] = {.lex_state = 239, .external_lex_state = 10}, + [345] = {.lex_state = 273, .external_lex_state = 10}, + [346] = {.lex_state = 248}, + [347] = {.lex_state = 273, .external_lex_state = 10}, + [348] = {.lex_state = 273, .external_lex_state = 10}, + [349] = {.lex_state = 273, .external_lex_state = 10}, + [350] = {.lex_state = 203}, + [351] = {.lex_state = 308, .external_lex_state = 16}, + [352] = {.lex_state = 316, .external_lex_state = 6}, + [353] = {.lex_state = 308, .external_lex_state = 16}, + [354] = {.lex_state = 308, .external_lex_state = 16}, + [355] = {.lex_state = 203}, + [356] = {.lex_state = 322, .external_lex_state = 2}, + [357] = {.lex_state = 203}, + [358] = {.lex_state = 330, .external_lex_state = 2}, + [359] = {.lex_state = 203}, + [360] = {.lex_state = 322, .external_lex_state = 2}, + [361] = {.lex_state = 239, .external_lex_state = 4}, + [362] = {.lex_state = 231}, + [363] = {.lex_state = 231, .external_lex_state = 15}, + [364] = {.lex_state = 322, .external_lex_state = 15}, + [365] = {.lex_state = 248}, + [366] = {.lex_state = 322, .external_lex_state = 15}, + [367] = {.lex_state = 322, .external_lex_state = 15}, + [368] = {.lex_state = 322, .external_lex_state = 15}, + [369] = {.lex_state = 203}, + [370] = {.lex_state = 308, .external_lex_state = 16}, + [371] = {.lex_state = 316, .external_lex_state = 6}, + [372] = {.lex_state = 308, .external_lex_state = 16}, + [373] = {.lex_state = 308, .external_lex_state = 16}, + [374] = {.lex_state = 203}, + [375] = {.lex_state = 322, .external_lex_state = 2}, + [376] = {.lex_state = 203}, + [377] = {.lex_state = 330, .external_lex_state = 2}, + [378] = {.lex_state = 203}, + [379] = {.lex_state = 322, .external_lex_state = 2}, + [380] = {.lex_state = 264, .external_lex_state = 5}, + [381] = {.lex_state = 246, .external_lex_state = 5}, + [382] = {.lex_state = 248, .external_lex_state = 13}, + [383] = {.lex_state = 248, .external_lex_state = 13}, + [384] = {.lex_state = 248, .external_lex_state = 13}, + [385] = {.lex_state = 248}, + [386] = {.lex_state = 203}, + [387] = {.lex_state = 308, .external_lex_state = 16}, + [388] = {.lex_state = 316, .external_lex_state = 6}, + [389] = {.lex_state = 308, .external_lex_state = 16}, + [390] = {.lex_state = 308, .external_lex_state = 16}, + [391] = {.lex_state = 203}, + [392] = {.lex_state = 322, .external_lex_state = 2}, + [393] = {.lex_state = 203}, + [394] = {.lex_state = 330, .external_lex_state = 2}, + [395] = {.lex_state = 264, .external_lex_state = 5}, + [396] = {.lex_state = 248}, + [397] = {.lex_state = 231}, + [398] = {.lex_state = 373, .external_lex_state = 16}, + [399] = {.lex_state = 264, .external_lex_state = 5}, + [400] = {.lex_state = 375, .external_lex_state = 22}, + [401] = {.lex_state = 248}, + [402] = {.lex_state = 255}, + [403] = {.lex_state = 375, .external_lex_state = 22}, + [404] = {.lex_state = 258, .external_lex_state = 6}, + [405] = {.lex_state = 377}, + [406] = {.lex_state = 133, .external_lex_state = 2}, + [407] = {.lex_state = 133, .external_lex_state = 2}, + [408] = {.lex_state = 133, .external_lex_state = 2}, + [409] = {.lex_state = 375, .external_lex_state = 16}, + [410] = {.lex_state = 203}, + [411] = {.lex_state = 308, .external_lex_state = 16}, + [412] = {.lex_state = 308, .external_lex_state = 16}, + [413] = {.lex_state = 308, .external_lex_state = 16}, + [414] = {.lex_state = 264, .external_lex_state = 5}, + [415] = {.lex_state = 377}, + [416] = {.lex_state = 375, .external_lex_state = 16}, + [417] = {.lex_state = 264, .external_lex_state = 5}, + [418] = {.lex_state = 377}, + [419] = {.lex_state = 375, .external_lex_state = 16}, + [420] = {.lex_state = 266, .external_lex_state = 9}, + [421] = {.lex_state = 322, .external_lex_state = 2}, + [422] = {.lex_state = 270, .external_lex_state = 4}, + [423] = {.lex_state = 203}, + [424] = {.lex_state = 203}, + [425] = {.lex_state = 270, .external_lex_state = 10}, + [426] = {.lex_state = 270, .external_lex_state = 10}, + [427] = {.lex_state = 270, .external_lex_state = 4}, + [428] = {.lex_state = 203}, + [429] = {.lex_state = 273, .external_lex_state = 4}, + [430] = {.lex_state = 268, .external_lex_state = 8}, + [431] = {.lex_state = 133, .external_lex_state = 2}, + [432] = {.lex_state = 297, .external_lex_state = 12}, + [433] = {.lex_state = 299}, + [434] = {.lex_state = 203}, + [435] = {.lex_state = 318, .external_lex_state = 23}, + [436] = {.lex_state = 248}, + [437] = {.lex_state = 255}, + [438] = {.lex_state = 318, .external_lex_state = 23}, + [439] = {.lex_state = 258, .external_lex_state = 6}, + [440] = {.lex_state = 133, .external_lex_state = 2}, + [441] = {.lex_state = 133, .external_lex_state = 2}, + [442] = {.lex_state = 133, .external_lex_state = 2}, + [443] = {.lex_state = 318, .external_lex_state = 6}, + [444] = {.lex_state = 203}, + [445] = {.lex_state = 318, .external_lex_state = 6}, + [446] = {.lex_state = 318, .external_lex_state = 13}, + [447] = {.lex_state = 248}, + [448] = {.lex_state = 255}, + [449] = {.lex_state = 318, .external_lex_state = 13}, + [450] = {.lex_state = 258, .external_lex_state = 6}, + [451] = {.lex_state = 133, .external_lex_state = 2}, + [452] = {.lex_state = 133, .external_lex_state = 2}, + [453] = {.lex_state = 133, .external_lex_state = 2}, + [454] = {.lex_state = 318}, + [455] = {.lex_state = 318}, + [456] = {.lex_state = 231}, + [457] = {.lex_state = 233, .external_lex_state = 17}, + [458] = {.lex_state = 233, .external_lex_state = 17}, + [459] = {.lex_state = 248}, + [460] = {.lex_state = 233, .external_lex_state = 17}, + [461] = {.lex_state = 233, .external_lex_state = 17}, + [462] = {.lex_state = 233, .external_lex_state = 17}, + [463] = {.lex_state = 203}, + [464] = {.lex_state = 308, .external_lex_state = 16}, + [465] = {.lex_state = 316, .external_lex_state = 6}, + [466] = {.lex_state = 308, .external_lex_state = 16}, + [467] = {.lex_state = 308, .external_lex_state = 16}, + [468] = {.lex_state = 203}, + [469] = {.lex_state = 322, .external_lex_state = 2}, + [470] = {.lex_state = 203}, + [471] = {.lex_state = 330, .external_lex_state = 2}, + [472] = {.lex_state = 203}, + [473] = {.lex_state = 322, .external_lex_state = 2}, + [474] = {.lex_state = 203}, + [475] = {.lex_state = 133, .external_lex_state = 2}, + [476] = {.lex_state = 264, .external_lex_state = 5}, + [477] = {.lex_state = 133, .external_lex_state = 2}, + [478] = {.lex_state = 133}, + [479] = {.lex_state = 277}, + [480] = {.lex_state = 231}, + [481] = {.lex_state = 335, .external_lex_state = 19}, + [482] = {.lex_state = 231}, + [483] = {.lex_state = 233, .external_lex_state = 17}, + [484] = {.lex_state = 233, .external_lex_state = 17}, + [485] = {.lex_state = 233, .external_lex_state = 18}, + [486] = {.lex_state = 382, .external_lex_state = 18}, + [487] = {.lex_state = 233, .external_lex_state = 18}, + [488] = {.lex_state = 233, .external_lex_state = 18}, + [489] = {.lex_state = 266, .external_lex_state = 9}, + [490] = {.lex_state = 203}, + [491] = {.lex_state = 203}, + [492] = {.lex_state = 297, .external_lex_state = 12}, + [493] = {.lex_state = 299}, + [494] = {.lex_state = 203}, + [495] = {.lex_state = 324, .external_lex_state = 23}, + [496] = {.lex_state = 324, .external_lex_state = 23}, + [497] = {.lex_state = 203}, + [498] = {.lex_state = 324, .external_lex_state = 6}, + [499] = {.lex_state = 324, .external_lex_state = 13}, + [500] = {.lex_state = 324, .external_lex_state = 13}, + [501] = {.lex_state = 318}, + [502] = {.lex_state = 326, .external_lex_state = 17}, + [503] = {.lex_state = 203}, + [504] = {.lex_state = 133, .external_lex_state = 2}, + [505] = {.lex_state = 133, .external_lex_state = 2}, + [506] = {.lex_state = 133}, + [507] = {.lex_state = 277}, + [508] = {.lex_state = 231}, + [509] = {.lex_state = 231}, + [510] = {.lex_state = 326, .external_lex_state = 17}, + [511] = {.lex_state = 326, .external_lex_state = 17}, + [512] = {.lex_state = 384, .external_lex_state = 18}, + [513] = {.lex_state = 326, .external_lex_state = 18}, + [514] = {.lex_state = 326, .external_lex_state = 18}, + [515] = {.lex_state = 264, .external_lex_state = 5}, + [516] = {.lex_state = 203}, + [517] = {.lex_state = 364, .external_lex_state = 4}, + [518] = {.lex_state = 268, .external_lex_state = 8}, + [519] = {.lex_state = 239, .external_lex_state = 4}, + [520] = {.lex_state = 262, .external_lex_state = 8}, + [521] = {.lex_state = 231}, + [522] = {.lex_state = 246, .external_lex_state = 5}, + [523] = {.lex_state = 246, .external_lex_state = 5}, + [524] = {.lex_state = 264, .external_lex_state = 7}, + [525] = {.lex_state = 337, .external_lex_state = 5}, + [526] = {.lex_state = 337, .external_lex_state = 5}, + [527] = {.lex_state = 386, .external_lex_state = 7}, + [528] = {.lex_state = 386, .external_lex_state = 7}, + [529] = {.lex_state = 388, .external_lex_state = 24}, + [530] = {.lex_state = 386, .external_lex_state = 7}, + [531] = {.lex_state = 337, .external_lex_state = 5}, + [532] = {.lex_state = 337, .external_lex_state = 5}, + [533] = {.lex_state = 386, .external_lex_state = 7}, + [534] = {.lex_state = 337, .external_lex_state = 7}, + [535] = {.lex_state = 337, .external_lex_state = 7}, + [536] = {.lex_state = 246, .external_lex_state = 7}, + [537] = {.lex_state = 266, .external_lex_state = 9}, + [538] = {.lex_state = 246, .external_lex_state = 7}, + [539] = {.lex_state = 391, .external_lex_state = 12}, + [540] = {.lex_state = 393, .external_lex_state = 13}, + [541] = {.lex_state = 341, .external_lex_state = 11}, + [542] = {.lex_state = 391, .external_lex_state = 12}, + [543] = {.lex_state = 393, .external_lex_state = 13}, + [544] = {.lex_state = 203, .external_lex_state = 12}, + [545] = {.lex_state = 268, .external_lex_state = 8}, + [546] = {.lex_state = 395, .external_lex_state = 13}, + [547] = {.lex_state = 248}, + [548] = {.lex_state = 255}, + [549] = {.lex_state = 395, .external_lex_state = 13}, + [550] = {.lex_state = 258, .external_lex_state = 6}, + [551] = {.lex_state = 133, .external_lex_state = 2}, + [552] = {.lex_state = 133, .external_lex_state = 2}, + [553] = {.lex_state = 133, .external_lex_state = 2}, + [554] = {.lex_state = 322}, + [555] = {.lex_state = 231}, + [556] = {.lex_state = 262, .external_lex_state = 20}, + [557] = {.lex_state = 268, .external_lex_state = 20}, + [558] = {.lex_state = 248}, + [559] = {.lex_state = 268, .external_lex_state = 20}, + [560] = {.lex_state = 268, .external_lex_state = 20}, + [561] = {.lex_state = 268, .external_lex_state = 20}, + [562] = {.lex_state = 203}, + [563] = {.lex_state = 308, .external_lex_state = 16}, + [564] = {.lex_state = 316, .external_lex_state = 6}, + [565] = {.lex_state = 308, .external_lex_state = 16}, + [566] = {.lex_state = 308, .external_lex_state = 16}, + [567] = {.lex_state = 203}, + [568] = {.lex_state = 322, .external_lex_state = 2}, + [569] = {.lex_state = 203}, + [570] = {.lex_state = 330, .external_lex_state = 2}, + [571] = {.lex_state = 203}, + [572] = {.lex_state = 322, .external_lex_state = 2}, + [573] = {.lex_state = 397, .external_lex_state = 10}, + [574] = {.lex_state = 248}, + [575] = {.lex_state = 255}, + [576] = {.lex_state = 397, .external_lex_state = 10}, + [577] = {.lex_state = 258, .external_lex_state = 6}, + [578] = {.lex_state = 133, .external_lex_state = 2}, + [579] = {.lex_state = 133, .external_lex_state = 2}, + [580] = {.lex_state = 133, .external_lex_state = 2}, + [581] = {.lex_state = 397, .external_lex_state = 4}, + [582] = {.lex_state = 343, .external_lex_state = 2}, + [583] = {.lex_state = 364, .external_lex_state = 4}, + [584] = {.lex_state = 386, .external_lex_state = 7}, + [585] = {.lex_state = 239, .external_lex_state = 4}, + [586] = {.lex_state = 262, .external_lex_state = 8}, + [587] = {.lex_state = 343, .external_lex_state = 2}, + [588] = {.lex_state = 337, .external_lex_state = 7}, + [589] = {.lex_state = 364, .external_lex_state = 4}, + [590] = {.lex_state = 133, .external_lex_state = 2}, + [591] = {.lex_state = 399, .external_lex_state = 2}, + [592] = {.lex_state = 239, .external_lex_state = 4}, + [593] = {.lex_state = 203}, + [594] = {.lex_state = 262, .external_lex_state = 8}, + [595] = {.lex_state = 349, .external_lex_state = 2}, + [596] = {.lex_state = 203}, + [597] = {.lex_state = 270, .external_lex_state = 10}, + [598] = {.lex_state = 401}, + [599] = {.lex_state = 270, .external_lex_state = 4}, + [600] = {.lex_state = 270, .external_lex_state = 10}, + [601] = {.lex_state = 270, .external_lex_state = 10}, + [602] = {.lex_state = 401}, + [603] = {.lex_state = 270, .external_lex_state = 4}, + [604] = {.lex_state = 373, .external_lex_state = 16}, + [605] = {.lex_state = 270, .external_lex_state = 10}, + [606] = {.lex_state = 377}, + [607] = {.lex_state = 375, .external_lex_state = 16}, + [608] = {.lex_state = 203}, + [609] = {.lex_state = 308, .external_lex_state = 16}, + [610] = {.lex_state = 308, .external_lex_state = 16}, + [611] = {.lex_state = 308, .external_lex_state = 16}, + [612] = {.lex_state = 270, .external_lex_state = 10}, + [613] = {.lex_state = 377}, + [614] = {.lex_state = 375, .external_lex_state = 16}, + [615] = {.lex_state = 270, .external_lex_state = 10}, + [616] = {.lex_state = 377}, + [617] = {.lex_state = 375, .external_lex_state = 16}, + [618] = {.lex_state = 270, .external_lex_state = 10}, + [619] = {.lex_state = 270, .external_lex_state = 10}, + [620] = {.lex_state = 203}, + [621] = {.lex_state = 407, .external_lex_state = 7}, + [622] = {.lex_state = 239, .external_lex_state = 4}, + [623] = {.lex_state = 262, .external_lex_state = 8}, + [624] = {.lex_state = 359, .external_lex_state = 21}, + [625] = {.lex_state = 133}, + [626] = {.lex_state = 231}, + [627] = {.lex_state = 364, .external_lex_state = 4}, + [628] = {.lex_state = 268, .external_lex_state = 20}, + [629] = {.lex_state = 268, .external_lex_state = 20}, + [630] = {.lex_state = 369, .external_lex_state = 7}, + [631] = {.lex_state = 203}, + [632] = {.lex_state = 409, .external_lex_state = 7}, + [633] = {.lex_state = 369, .external_lex_state = 7}, + [634] = {.lex_state = 266, .external_lex_state = 9}, + [635] = {.lex_state = 273, .external_lex_state = 14}, + [636] = {.lex_state = 273, .external_lex_state = 3}, + [637] = {.lex_state = 273, .external_lex_state = 10}, + [638] = {.lex_state = 273, .external_lex_state = 4}, + [639] = {.lex_state = 264, .external_lex_state = 5}, + [640] = {.lex_state = 203}, + [641] = {.lex_state = 364, .external_lex_state = 4}, + [642] = {.lex_state = 273, .external_lex_state = 4}, + [643] = {.lex_state = 268, .external_lex_state = 8}, + [644] = {.lex_state = 231}, + [645] = {.lex_state = 264, .external_lex_state = 5}, + [646] = {.lex_state = 264, .external_lex_state = 5}, + [647] = {.lex_state = 369, .external_lex_state = 5}, + [648] = {.lex_state = 369, .external_lex_state = 5}, + [649] = {.lex_state = 369, .external_lex_state = 5}, + [650] = {.lex_state = 369, .external_lex_state = 5}, + [651] = {.lex_state = 369, .external_lex_state = 7}, + [652] = {.lex_state = 369, .external_lex_state = 7}, + [653] = {.lex_state = 264, .external_lex_state = 7}, + [654] = {.lex_state = 367, .external_lex_state = 2}, + [655] = {.lex_state = 264, .external_lex_state = 7}, + [656] = {.lex_state = 297, .external_lex_state = 11}, + [657] = {.lex_state = 297, .external_lex_state = 11}, + [658] = {.lex_state = 297, .external_lex_state = 11}, + [659] = {.lex_state = 373, .external_lex_state = 16}, + [660] = {.lex_state = 297, .external_lex_state = 11}, + [661] = {.lex_state = 377}, + [662] = {.lex_state = 375, .external_lex_state = 16}, + [663] = {.lex_state = 203}, + [664] = {.lex_state = 308, .external_lex_state = 16}, + [665] = {.lex_state = 308, .external_lex_state = 16}, + [666] = {.lex_state = 308, .external_lex_state = 16}, + [667] = {.lex_state = 297, .external_lex_state = 11}, + [668] = {.lex_state = 377}, + [669] = {.lex_state = 375, .external_lex_state = 16}, + [670] = {.lex_state = 297, .external_lex_state = 11}, + [671] = {.lex_state = 377}, + [672] = {.lex_state = 375, .external_lex_state = 16}, + [673] = {.lex_state = 297, .external_lex_state = 11}, + [674] = {.lex_state = 297, .external_lex_state = 11}, + [675] = {.lex_state = 337, .external_lex_state = 7}, + [676] = {.lex_state = 371, .external_lex_state = 13}, + [677] = {.lex_state = 299, .external_lex_state = 13}, + [678] = {.lex_state = 371, .external_lex_state = 13}, + [679] = {.lex_state = 373, .external_lex_state = 16}, + [680] = {.lex_state = 371, .external_lex_state = 13}, + [681] = {.lex_state = 377}, + [682] = {.lex_state = 375, .external_lex_state = 16}, + [683] = {.lex_state = 203}, + [684] = {.lex_state = 308, .external_lex_state = 16}, + [685] = {.lex_state = 308, .external_lex_state = 16}, + [686] = {.lex_state = 308, .external_lex_state = 16}, + [687] = {.lex_state = 371, .external_lex_state = 13}, + [688] = {.lex_state = 377}, + [689] = {.lex_state = 375, .external_lex_state = 16}, + [690] = {.lex_state = 371, .external_lex_state = 13}, + [691] = {.lex_state = 377}, + [692] = {.lex_state = 375, .external_lex_state = 16}, + [693] = {.lex_state = 371, .external_lex_state = 13}, + [694] = {.lex_state = 371, .external_lex_state = 13}, + [695] = {.lex_state = 273, .external_lex_state = 3}, + [696] = {.lex_state = 322}, + [697] = {.lex_state = 239, .external_lex_state = 14}, + [698] = {.lex_state = 239, .external_lex_state = 14}, + [699] = {.lex_state = 273, .external_lex_state = 14}, + [700] = {.lex_state = 239, .external_lex_state = 14}, + [701] = {.lex_state = 273, .external_lex_state = 14}, + [702] = {.lex_state = 373, .external_lex_state = 16}, + [703] = {.lex_state = 273, .external_lex_state = 14}, + [704] = {.lex_state = 377}, + [705] = {.lex_state = 375, .external_lex_state = 16}, + [706] = {.lex_state = 203}, + [707] = {.lex_state = 308, .external_lex_state = 16}, + [708] = {.lex_state = 308, .external_lex_state = 16}, + [709] = {.lex_state = 308, .external_lex_state = 16}, + [710] = {.lex_state = 273, .external_lex_state = 14}, + [711] = {.lex_state = 377}, + [712] = {.lex_state = 375, .external_lex_state = 16}, + [713] = {.lex_state = 273, .external_lex_state = 14}, + [714] = {.lex_state = 377}, + [715] = {.lex_state = 375, .external_lex_state = 16}, + [716] = {.lex_state = 273, .external_lex_state = 14}, + [717] = {.lex_state = 273, .external_lex_state = 14}, + [718] = {.lex_state = 273, .external_lex_state = 10}, + [719] = {.lex_state = 239, .external_lex_state = 10}, + [720] = {.lex_state = 273, .external_lex_state = 10}, + [721] = {.lex_state = 373, .external_lex_state = 16}, + [722] = {.lex_state = 273, .external_lex_state = 10}, + [723] = {.lex_state = 377}, + [724] = {.lex_state = 375, .external_lex_state = 16}, + [725] = {.lex_state = 203}, + [726] = {.lex_state = 308, .external_lex_state = 16}, + [727] = {.lex_state = 308, .external_lex_state = 16}, + [728] = {.lex_state = 308, .external_lex_state = 16}, + [729] = {.lex_state = 273, .external_lex_state = 10}, + [730] = {.lex_state = 377}, + [731] = {.lex_state = 375, .external_lex_state = 16}, + [732] = {.lex_state = 273, .external_lex_state = 10}, + [733] = {.lex_state = 377}, + [734] = {.lex_state = 375, .external_lex_state = 16}, + [735] = {.lex_state = 273, .external_lex_state = 10}, + [736] = {.lex_state = 273, .external_lex_state = 10}, + [737] = {.lex_state = 322, .external_lex_state = 15}, + [738] = {.lex_state = 231, .external_lex_state = 15}, + [739] = {.lex_state = 322, .external_lex_state = 15}, + [740] = {.lex_state = 373, .external_lex_state = 16}, + [741] = {.lex_state = 322, .external_lex_state = 15}, + [742] = {.lex_state = 377}, + [743] = {.lex_state = 375, .external_lex_state = 16}, + [744] = {.lex_state = 203}, + [745] = {.lex_state = 308, .external_lex_state = 16}, + [746] = {.lex_state = 308, .external_lex_state = 16}, + [747] = {.lex_state = 308, .external_lex_state = 16}, + [748] = {.lex_state = 322, .external_lex_state = 15}, + [749] = {.lex_state = 377}, + [750] = {.lex_state = 375, .external_lex_state = 16}, + [751] = {.lex_state = 322, .external_lex_state = 15}, + [752] = {.lex_state = 377}, + [753] = {.lex_state = 375, .external_lex_state = 16}, + [754] = {.lex_state = 322, .external_lex_state = 15}, + [755] = {.lex_state = 322, .external_lex_state = 15}, + [756] = {.lex_state = 248}, + [757] = {.lex_state = 373, .external_lex_state = 16}, + [758] = {.lex_state = 248, .external_lex_state = 13}, + [759] = {.lex_state = 377}, + [760] = {.lex_state = 375, .external_lex_state = 16}, + [761] = {.lex_state = 203}, + [762] = {.lex_state = 308, .external_lex_state = 16}, + [763] = {.lex_state = 308, .external_lex_state = 16}, + [764] = {.lex_state = 308, .external_lex_state = 16}, + [765] = {.lex_state = 248, .external_lex_state = 13}, + [766] = {.lex_state = 377}, + [767] = {.lex_state = 375, .external_lex_state = 16}, + [768] = {.lex_state = 248, .external_lex_state = 13}, + [769] = {.lex_state = 377}, + [770] = {.lex_state = 375, .external_lex_state = 16}, + [771] = {.lex_state = 248, .external_lex_state = 13}, + [772] = {.lex_state = 341, .external_lex_state = 11}, + [773] = {.lex_state = 341, .external_lex_state = 11}, + [774] = {.lex_state = 341, .external_lex_state = 11}, + [775] = {.lex_state = 264, .external_lex_state = 5}, + [776] = {.lex_state = 411, .external_lex_state = 22}, + [777] = {.lex_state = 248}, + [778] = {.lex_state = 255}, + [779] = {.lex_state = 411, .external_lex_state = 22}, + [780] = {.lex_state = 258, .external_lex_state = 6}, + [781] = {.lex_state = 133, .external_lex_state = 2}, + [782] = {.lex_state = 133, .external_lex_state = 2}, + [783] = {.lex_state = 133, .external_lex_state = 2}, + [784] = {.lex_state = 203, .external_lex_state = 16}, + [785] = {.lex_state = 231}, + [786] = {.lex_state = 375, .external_lex_state = 22}, + [787] = {.lex_state = 375, .external_lex_state = 22}, + [788] = {.lex_state = 248}, + [789] = {.lex_state = 375, .external_lex_state = 22}, + [790] = {.lex_state = 375, .external_lex_state = 22}, + [791] = {.lex_state = 375, .external_lex_state = 22}, + [792] = {.lex_state = 203}, + [793] = {.lex_state = 308, .external_lex_state = 16}, + [794] = {.lex_state = 316, .external_lex_state = 6}, + [795] = {.lex_state = 308, .external_lex_state = 16}, + [796] = {.lex_state = 308, .external_lex_state = 16}, + [797] = {.lex_state = 375, .external_lex_state = 16}, + [798] = {.lex_state = 203}, + [799] = {.lex_state = 322, .external_lex_state = 2}, + [800] = {.lex_state = 203}, + [801] = {.lex_state = 330, .external_lex_state = 2}, + [802] = {.lex_state = 203}, + [803] = {.lex_state = 322, .external_lex_state = 2}, + [804] = {.lex_state = 264, .external_lex_state = 5}, + [805] = {.lex_state = 375, .external_lex_state = 16}, + [806] = {.lex_state = 373, .external_lex_state = 16}, + [807] = {.lex_state = 264, .external_lex_state = 5}, + [808] = {.lex_state = 377}, + [809] = {.lex_state = 375, .external_lex_state = 16}, + [810] = {.lex_state = 264, .external_lex_state = 5}, + [811] = {.lex_state = 377}, + [812] = {.lex_state = 375, .external_lex_state = 16}, + [813] = {.lex_state = 377}, + [814] = {.lex_state = 375, .external_lex_state = 16}, + [815] = {.lex_state = 375, .external_lex_state = 16}, + [816] = {.lex_state = 264, .external_lex_state = 5}, + [817] = {.lex_state = 375, .external_lex_state = 16}, + [818] = {.lex_state = 322, .external_lex_state = 2}, + [819] = {.lex_state = 322}, + [820] = {.lex_state = 322, .external_lex_state = 15}, + [821] = {.lex_state = 322, .external_lex_state = 15}, + [822] = {.lex_state = 231}, + [823] = {.lex_state = 203}, + [824] = {.lex_state = 343, .external_lex_state = 2}, + [825] = {.lex_state = 382, .external_lex_state = 18}, + [826] = {.lex_state = 349, .external_lex_state = 2}, + [827] = {.lex_state = 270, .external_lex_state = 4}, + [828] = {.lex_state = 203}, + [829] = {.lex_state = 270, .external_lex_state = 4}, + [830] = {.lex_state = 203}, + [831] = {.lex_state = 203}, + [832] = {.lex_state = 359, .external_lex_state = 21}, + [833] = {.lex_state = 413, .external_lex_state = 18}, + [834] = {.lex_state = 203}, + [835] = {.lex_state = 367, .external_lex_state = 2}, + [836] = {.lex_state = 273, .external_lex_state = 4}, + [837] = {.lex_state = 268, .external_lex_state = 8}, + [838] = {.lex_state = 382, .external_lex_state = 18}, + [839] = {.lex_state = 266, .external_lex_state = 9}, + [840] = {.lex_state = 318, .external_lex_state = 6}, + [841] = {.lex_state = 231}, + [842] = {.lex_state = 318, .external_lex_state = 23}, + [843] = {.lex_state = 318, .external_lex_state = 23}, + [844] = {.lex_state = 248}, + [845] = {.lex_state = 318, .external_lex_state = 23}, + [846] = {.lex_state = 318, .external_lex_state = 23}, + [847] = {.lex_state = 318, .external_lex_state = 23}, + [848] = {.lex_state = 203}, + [849] = {.lex_state = 308, .external_lex_state = 16}, + [850] = {.lex_state = 316, .external_lex_state = 6}, + [851] = {.lex_state = 308, .external_lex_state = 16}, + [852] = {.lex_state = 308, .external_lex_state = 16}, + [853] = {.lex_state = 203}, + [854] = {.lex_state = 322, .external_lex_state = 2}, + [855] = {.lex_state = 203}, + [856] = {.lex_state = 330, .external_lex_state = 2}, + [857] = {.lex_state = 203}, + [858] = {.lex_state = 322, .external_lex_state = 2}, + [859] = {.lex_state = 318, .external_lex_state = 6}, + [860] = {.lex_state = 231}, + [861] = {.lex_state = 318, .external_lex_state = 13}, + [862] = {.lex_state = 318, .external_lex_state = 13}, + [863] = {.lex_state = 248}, + [864] = {.lex_state = 318, .external_lex_state = 13}, + [865] = {.lex_state = 318, .external_lex_state = 13}, + [866] = {.lex_state = 318, .external_lex_state = 13}, + [867] = {.lex_state = 203}, + [868] = {.lex_state = 308, .external_lex_state = 16}, + [869] = {.lex_state = 316, .external_lex_state = 6}, + [870] = {.lex_state = 308, .external_lex_state = 16}, + [871] = {.lex_state = 308, .external_lex_state = 16}, + [872] = {.lex_state = 203}, + [873] = {.lex_state = 322, .external_lex_state = 2}, + [874] = {.lex_state = 203}, + [875] = {.lex_state = 330, .external_lex_state = 2}, + [876] = {.lex_state = 203}, + [877] = {.lex_state = 322, .external_lex_state = 2}, + [878] = {.lex_state = 318}, + [879] = {.lex_state = 233, .external_lex_state = 17}, + [880] = {.lex_state = 233, .external_lex_state = 17}, + [881] = {.lex_state = 233, .external_lex_state = 17}, + [882] = {.lex_state = 373, .external_lex_state = 16}, + [883] = {.lex_state = 233, .external_lex_state = 17}, + [884] = {.lex_state = 377}, + [885] = {.lex_state = 375, .external_lex_state = 16}, + [886] = {.lex_state = 203}, + [887] = {.lex_state = 308, .external_lex_state = 16}, + [888] = {.lex_state = 308, .external_lex_state = 16}, + [889] = {.lex_state = 308, .external_lex_state = 16}, + [890] = {.lex_state = 233, .external_lex_state = 17}, + [891] = {.lex_state = 377}, + [892] = {.lex_state = 375, .external_lex_state = 16}, + [893] = {.lex_state = 233, .external_lex_state = 17}, + [894] = {.lex_state = 377}, + [895] = {.lex_state = 375, .external_lex_state = 16}, + [896] = {.lex_state = 233, .external_lex_state = 17}, + [897] = {.lex_state = 233, .external_lex_state = 17}, + [898] = {.lex_state = 203}, + [899] = {.lex_state = 203}, + [900] = {.lex_state = 322, .external_lex_state = 2}, + [901] = {.lex_state = 203}, + [902] = {.lex_state = 322, .external_lex_state = 2}, + [903] = {.lex_state = 231}, + [904] = {.lex_state = 233, .external_lex_state = 17}, + [905] = {.lex_state = 233, .external_lex_state = 17}, + [906] = {.lex_state = 233, .external_lex_state = 18}, + [907] = {.lex_state = 382, .external_lex_state = 17}, + [908] = {.lex_state = 382, .external_lex_state = 17}, + [909] = {.lex_state = 415, .external_lex_state = 18}, + [910] = {.lex_state = 415, .external_lex_state = 18}, + [911] = {.lex_state = 388, .external_lex_state = 24}, + [912] = {.lex_state = 415, .external_lex_state = 18}, + [913] = {.lex_state = 382, .external_lex_state = 17}, + [914] = {.lex_state = 382, .external_lex_state = 17}, + [915] = {.lex_state = 415, .external_lex_state = 18}, + [916] = {.lex_state = 382, .external_lex_state = 18}, + [917] = {.lex_state = 382, .external_lex_state = 18}, + [918] = {.lex_state = 233, .external_lex_state = 18}, + [919] = {.lex_state = 233, .external_lex_state = 18}, + [920] = {.lex_state = 330, .external_lex_state = 15}, + [921] = {.lex_state = 330, .external_lex_state = 15}, + [922] = {.lex_state = 384, .external_lex_state = 18}, + [923] = {.lex_state = 203}, + [924] = {.lex_state = 417, .external_lex_state = 18}, + [925] = {.lex_state = 384, .external_lex_state = 18}, + [926] = {.lex_state = 266, .external_lex_state = 9}, + [927] = {.lex_state = 324, .external_lex_state = 23}, + [928] = {.lex_state = 324, .external_lex_state = 6}, + [929] = {.lex_state = 324, .external_lex_state = 13}, + [930] = {.lex_state = 318}, + [931] = {.lex_state = 326, .external_lex_state = 17}, + [932] = {.lex_state = 203}, + [933] = {.lex_state = 330, .external_lex_state = 2}, + [934] = {.lex_state = 203}, + [935] = {.lex_state = 330, .external_lex_state = 2}, + [936] = {.lex_state = 231}, + [937] = {.lex_state = 326, .external_lex_state = 17}, + [938] = {.lex_state = 326, .external_lex_state = 17}, + [939] = {.lex_state = 384, .external_lex_state = 17}, + [940] = {.lex_state = 384, .external_lex_state = 17}, + [941] = {.lex_state = 384, .external_lex_state = 17}, + [942] = {.lex_state = 384, .external_lex_state = 17}, + [943] = {.lex_state = 384, .external_lex_state = 18}, + [944] = {.lex_state = 384, .external_lex_state = 18}, + [945] = {.lex_state = 326, .external_lex_state = 18}, + [946] = {.lex_state = 326, .external_lex_state = 18}, + [947] = {.lex_state = 361, .external_lex_state = 7}, + [948] = {.lex_state = 337, .external_lex_state = 5}, + [949] = {.lex_state = 337, .external_lex_state = 5}, + [950] = {.lex_state = 386, .external_lex_state = 7}, + [951] = {.lex_state = 337, .external_lex_state = 5}, + [952] = {.lex_state = 388, .external_lex_state = 24}, + [953] = {.lex_state = 386, .external_lex_state = 7}, + [954] = {.lex_state = 255}, + [955] = {.lex_state = 258, .external_lex_state = 6}, + [956] = {.lex_state = 388, .external_lex_state = 24}, + [957] = {.lex_state = 231, .external_lex_state = 15}, + [958] = {.lex_state = 231, .external_lex_state = 15}, + [959] = {.lex_state = 337, .external_lex_state = 7}, + [960] = {.lex_state = 393, .external_lex_state = 13}, + [961] = {.lex_state = 203}, + [962] = {.lex_state = 341, .external_lex_state = 11}, + [963] = {.lex_state = 393, .external_lex_state = 13}, + [964] = {.lex_state = 203}, + [965] = {.lex_state = 231}, + [966] = {.lex_state = 395, .external_lex_state = 13}, + [967] = {.lex_state = 395, .external_lex_state = 13}, + [968] = {.lex_state = 248}, + [969] = {.lex_state = 395, .external_lex_state = 13}, + [970] = {.lex_state = 395, .external_lex_state = 13}, + [971] = {.lex_state = 395, .external_lex_state = 13}, + [972] = {.lex_state = 203}, + [973] = {.lex_state = 308, .external_lex_state = 16}, + [974] = {.lex_state = 316, .external_lex_state = 6}, + [975] = {.lex_state = 308, .external_lex_state = 16}, + [976] = {.lex_state = 308, .external_lex_state = 16}, + [977] = {.lex_state = 203}, + [978] = {.lex_state = 322, .external_lex_state = 2}, + [979] = {.lex_state = 203}, + [980] = {.lex_state = 330, .external_lex_state = 2}, + [981] = {.lex_state = 203}, + [982] = {.lex_state = 322, .external_lex_state = 2}, + [983] = {.lex_state = 268, .external_lex_state = 8}, + [984] = {.lex_state = 322}, + [985] = {.lex_state = 268, .external_lex_state = 20}, + [986] = {.lex_state = 262, .external_lex_state = 20}, + [987] = {.lex_state = 268, .external_lex_state = 20}, + [988] = {.lex_state = 373, .external_lex_state = 16}, + [989] = {.lex_state = 268, .external_lex_state = 20}, + [990] = {.lex_state = 377}, + [991] = {.lex_state = 375, .external_lex_state = 16}, + [992] = {.lex_state = 203}, + [993] = {.lex_state = 308, .external_lex_state = 16}, + [994] = {.lex_state = 308, .external_lex_state = 16}, + [995] = {.lex_state = 308, .external_lex_state = 16}, + [996] = {.lex_state = 268, .external_lex_state = 20}, + [997] = {.lex_state = 377}, + [998] = {.lex_state = 375, .external_lex_state = 16}, + [999] = {.lex_state = 268, .external_lex_state = 20}, + [1000] = {.lex_state = 377}, + [1001] = {.lex_state = 375, .external_lex_state = 16}, + [1002] = {.lex_state = 268, .external_lex_state = 20}, + [1003] = {.lex_state = 268, .external_lex_state = 20}, + [1004] = {.lex_state = 231}, + [1005] = {.lex_state = 397, .external_lex_state = 10}, + [1006] = {.lex_state = 397, .external_lex_state = 10}, + [1007] = {.lex_state = 248}, + [1008] = {.lex_state = 397, .external_lex_state = 10}, + [1009] = {.lex_state = 397, .external_lex_state = 10}, + [1010] = {.lex_state = 397, .external_lex_state = 10}, + [1011] = {.lex_state = 203}, + [1012] = {.lex_state = 308, .external_lex_state = 16}, + [1013] = {.lex_state = 316, .external_lex_state = 6}, + [1014] = {.lex_state = 308, .external_lex_state = 16}, + [1015] = {.lex_state = 308, .external_lex_state = 16}, + [1016] = {.lex_state = 203}, + [1017] = {.lex_state = 322, .external_lex_state = 2}, + [1018] = {.lex_state = 203}, + [1019] = {.lex_state = 330, .external_lex_state = 2}, + [1020] = {.lex_state = 203}, + [1021] = {.lex_state = 322, .external_lex_state = 2}, + [1022] = {.lex_state = 203}, + [1023] = {.lex_state = 397, .external_lex_state = 4}, + [1024] = {.lex_state = 364, .external_lex_state = 4}, + [1025] = {.lex_state = 343, .external_lex_state = 2}, + [1026] = {.lex_state = 343, .external_lex_state = 2}, + [1027] = {.lex_state = 386, .external_lex_state = 7}, + [1028] = {.lex_state = 343, .external_lex_state = 2}, + [1029] = {.lex_state = 203}, + [1030] = {.lex_state = 239, .external_lex_state = 4}, + [1031] = {.lex_state = 262, .external_lex_state = 8}, + [1032] = {.lex_state = 399, .external_lex_state = 2}, + [1033] = {.lex_state = 349, .external_lex_state = 2}, + [1034] = {.lex_state = 364, .external_lex_state = 4}, + [1035] = {.lex_state = 203}, + [1036] = {.lex_state = 349, .external_lex_state = 2}, + [1037] = {.lex_state = 203}, + [1038] = {.lex_state = 203}, + [1039] = {.lex_state = 364, .external_lex_state = 4}, + [1040] = {.lex_state = 419, .external_lex_state = 13}, + [1041] = {.lex_state = 419, .external_lex_state = 13}, + [1042] = {.lex_state = 203}, + [1043] = {.lex_state = 228}, + [1044] = {.lex_state = 231}, + [1045] = {.lex_state = 401}, + [1046] = {.lex_state = 364, .external_lex_state = 4}, + [1047] = {.lex_state = 203}, + [1048] = {.lex_state = 231}, + [1049] = {.lex_state = 401}, + [1050] = {.lex_state = 270, .external_lex_state = 10}, + [1051] = {.lex_state = 411, .external_lex_state = 22}, + [1052] = {.lex_state = 411, .external_lex_state = 22}, + [1053] = {.lex_state = 203, .external_lex_state = 16}, + [1054] = {.lex_state = 375, .external_lex_state = 16}, + [1055] = {.lex_state = 270, .external_lex_state = 10}, + [1056] = {.lex_state = 373, .external_lex_state = 16}, + [1057] = {.lex_state = 270, .external_lex_state = 10}, + [1058] = {.lex_state = 377}, + [1059] = {.lex_state = 375, .external_lex_state = 16}, + [1060] = {.lex_state = 270, .external_lex_state = 10}, + [1061] = {.lex_state = 377}, + [1062] = {.lex_state = 375, .external_lex_state = 16}, + [1063] = {.lex_state = 377}, + [1064] = {.lex_state = 375, .external_lex_state = 16}, + [1065] = {.lex_state = 375, .external_lex_state = 16}, + [1066] = {.lex_state = 270, .external_lex_state = 10}, + [1067] = {.lex_state = 375, .external_lex_state = 16}, + [1068] = {.lex_state = 361, .external_lex_state = 7}, + [1069] = {.lex_state = 359, .external_lex_state = 21}, + [1070] = {.lex_state = 407, .external_lex_state = 7}, + [1071] = {.lex_state = 359, .external_lex_state = 21}, + [1072] = {.lex_state = 231}, + [1073] = {.lex_state = 421, .external_lex_state = 10}, + [1074] = {.lex_state = 421, .external_lex_state = 10}, + [1075] = {.lex_state = 364, .external_lex_state = 4}, + [1076] = {.lex_state = 268, .external_lex_state = 20}, + [1077] = {.lex_state = 369, .external_lex_state = 7}, + [1078] = {.lex_state = 203}, + [1079] = {.lex_state = 133}, + [1080] = {.lex_state = 231}, + [1081] = {.lex_state = 369, .external_lex_state = 7}, + [1082] = {.lex_state = 273, .external_lex_state = 14}, + [1083] = {.lex_state = 273, .external_lex_state = 14}, + [1084] = {.lex_state = 273, .external_lex_state = 14}, + [1085] = {.lex_state = 273, .external_lex_state = 10}, + [1086] = {.lex_state = 409, .external_lex_state = 7}, + [1087] = {.lex_state = 369, .external_lex_state = 5}, + [1088] = {.lex_state = 369, .external_lex_state = 5}, + [1089] = {.lex_state = 369, .external_lex_state = 5}, + [1090] = {.lex_state = 364, .external_lex_state = 4}, + [1091] = {.lex_state = 369, .external_lex_state = 7}, + [1092] = {.lex_state = 297, .external_lex_state = 11}, + [1093] = {.lex_state = 411, .external_lex_state = 22}, + [1094] = {.lex_state = 411, .external_lex_state = 22}, + [1095] = {.lex_state = 203, .external_lex_state = 16}, + [1096] = {.lex_state = 375, .external_lex_state = 16}, + [1097] = {.lex_state = 297, .external_lex_state = 11}, + [1098] = {.lex_state = 373, .external_lex_state = 16}, + [1099] = {.lex_state = 297, .external_lex_state = 11}, + [1100] = {.lex_state = 377}, + [1101] = {.lex_state = 375, .external_lex_state = 16}, + [1102] = {.lex_state = 297, .external_lex_state = 11}, + [1103] = {.lex_state = 377}, + [1104] = {.lex_state = 375, .external_lex_state = 16}, + [1105] = {.lex_state = 377}, + [1106] = {.lex_state = 375, .external_lex_state = 16}, + [1107] = {.lex_state = 375, .external_lex_state = 16}, + [1108] = {.lex_state = 297, .external_lex_state = 11}, + [1109] = {.lex_state = 375, .external_lex_state = 16}, + [1110] = {.lex_state = 371, .external_lex_state = 13}, + [1111] = {.lex_state = 411, .external_lex_state = 22}, + [1112] = {.lex_state = 411, .external_lex_state = 22}, + [1113] = {.lex_state = 203, .external_lex_state = 16}, + [1114] = {.lex_state = 375, .external_lex_state = 16}, + [1115] = {.lex_state = 371, .external_lex_state = 13}, + [1116] = {.lex_state = 373, .external_lex_state = 16}, + [1117] = {.lex_state = 371, .external_lex_state = 13}, + [1118] = {.lex_state = 377}, + [1119] = {.lex_state = 375, .external_lex_state = 16}, + [1120] = {.lex_state = 371, .external_lex_state = 13}, + [1121] = {.lex_state = 377}, + [1122] = {.lex_state = 375, .external_lex_state = 16}, + [1123] = {.lex_state = 377}, + [1124] = {.lex_state = 375, .external_lex_state = 16}, + [1125] = {.lex_state = 375, .external_lex_state = 16}, + [1126] = {.lex_state = 371, .external_lex_state = 13}, + [1127] = {.lex_state = 375, .external_lex_state = 16}, + [1128] = {.lex_state = 273, .external_lex_state = 3}, + [1129] = {.lex_state = 322}, + [1130] = {.lex_state = 273, .external_lex_state = 14}, + [1131] = {.lex_state = 411, .external_lex_state = 22}, + [1132] = {.lex_state = 411, .external_lex_state = 22}, + [1133] = {.lex_state = 203, .external_lex_state = 16}, + [1134] = {.lex_state = 375, .external_lex_state = 16}, + [1135] = {.lex_state = 273, .external_lex_state = 14}, + [1136] = {.lex_state = 373, .external_lex_state = 16}, + [1137] = {.lex_state = 273, .external_lex_state = 14}, + [1138] = {.lex_state = 377}, + [1139] = {.lex_state = 375, .external_lex_state = 16}, + [1140] = {.lex_state = 273, .external_lex_state = 14}, + [1141] = {.lex_state = 377}, + [1142] = {.lex_state = 375, .external_lex_state = 16}, + [1143] = {.lex_state = 377}, + [1144] = {.lex_state = 375, .external_lex_state = 16}, + [1145] = {.lex_state = 375, .external_lex_state = 16}, + [1146] = {.lex_state = 273, .external_lex_state = 14}, + [1147] = {.lex_state = 375, .external_lex_state = 16}, + [1148] = {.lex_state = 273, .external_lex_state = 10}, + [1149] = {.lex_state = 411, .external_lex_state = 22}, + [1150] = {.lex_state = 411, .external_lex_state = 22}, + [1151] = {.lex_state = 203, .external_lex_state = 16}, + [1152] = {.lex_state = 375, .external_lex_state = 16}, + [1153] = {.lex_state = 273, .external_lex_state = 10}, + [1154] = {.lex_state = 373, .external_lex_state = 16}, + [1155] = {.lex_state = 273, .external_lex_state = 10}, + [1156] = {.lex_state = 377}, + [1157] = {.lex_state = 375, .external_lex_state = 16}, + [1158] = {.lex_state = 273, .external_lex_state = 10}, + [1159] = {.lex_state = 377}, + [1160] = {.lex_state = 375, .external_lex_state = 16}, + [1161] = {.lex_state = 377}, + [1162] = {.lex_state = 375, .external_lex_state = 16}, + [1163] = {.lex_state = 375, .external_lex_state = 16}, + [1164] = {.lex_state = 273, .external_lex_state = 10}, + [1165] = {.lex_state = 375, .external_lex_state = 16}, + [1166] = {.lex_state = 322, .external_lex_state = 15}, + [1167] = {.lex_state = 411, .external_lex_state = 22}, + [1168] = {.lex_state = 411, .external_lex_state = 22}, + [1169] = {.lex_state = 203, .external_lex_state = 16}, + [1170] = {.lex_state = 375, .external_lex_state = 16}, + [1171] = {.lex_state = 322, .external_lex_state = 15}, + [1172] = {.lex_state = 373, .external_lex_state = 16}, + [1173] = {.lex_state = 322, .external_lex_state = 15}, + [1174] = {.lex_state = 377}, + [1175] = {.lex_state = 375, .external_lex_state = 16}, + [1176] = {.lex_state = 322, .external_lex_state = 15}, + [1177] = {.lex_state = 377}, + [1178] = {.lex_state = 375, .external_lex_state = 16}, + [1179] = {.lex_state = 377}, + [1180] = {.lex_state = 375, .external_lex_state = 16}, + [1181] = {.lex_state = 375, .external_lex_state = 16}, + [1182] = {.lex_state = 322, .external_lex_state = 15}, + [1183] = {.lex_state = 375, .external_lex_state = 16}, + [1184] = {.lex_state = 248, .external_lex_state = 13}, + [1185] = {.lex_state = 411, .external_lex_state = 22}, + [1186] = {.lex_state = 411, .external_lex_state = 22}, + [1187] = {.lex_state = 203, .external_lex_state = 16}, + [1188] = {.lex_state = 375, .external_lex_state = 16}, + [1189] = {.lex_state = 248, .external_lex_state = 13}, + [1190] = {.lex_state = 373, .external_lex_state = 16}, + [1191] = {.lex_state = 248, .external_lex_state = 13}, + [1192] = {.lex_state = 377}, + [1193] = {.lex_state = 375, .external_lex_state = 16}, + [1194] = {.lex_state = 248, .external_lex_state = 13}, + [1195] = {.lex_state = 377}, + [1196] = {.lex_state = 375, .external_lex_state = 16}, + [1197] = {.lex_state = 377}, + [1198] = {.lex_state = 375, .external_lex_state = 16}, + [1199] = {.lex_state = 375, .external_lex_state = 16}, + [1200] = {.lex_state = 248, .external_lex_state = 13}, + [1201] = {.lex_state = 375, .external_lex_state = 16}, + [1202] = {.lex_state = 391, .external_lex_state = 12}, + [1203] = {.lex_state = 308, .external_lex_state = 22}, + [1204] = {.lex_state = 391, .external_lex_state = 12}, + [1205] = {.lex_state = 308, .external_lex_state = 22}, + [1206] = {.lex_state = 203, .external_lex_state = 12}, + [1207] = {.lex_state = 231}, + [1208] = {.lex_state = 264, .external_lex_state = 5}, + [1209] = {.lex_state = 411, .external_lex_state = 22}, + [1210] = {.lex_state = 411, .external_lex_state = 22}, + [1211] = {.lex_state = 248}, + [1212] = {.lex_state = 411, .external_lex_state = 22}, + [1213] = {.lex_state = 411, .external_lex_state = 22}, + [1214] = {.lex_state = 411, .external_lex_state = 22}, + [1215] = {.lex_state = 264, .external_lex_state = 5}, + [1216] = {.lex_state = 203}, + [1217] = {.lex_state = 308, .external_lex_state = 16}, + [1218] = {.lex_state = 316, .external_lex_state = 6}, + [1219] = {.lex_state = 308, .external_lex_state = 16}, + [1220] = {.lex_state = 308, .external_lex_state = 16}, + [1221] = {.lex_state = 203}, + [1222] = {.lex_state = 322, .external_lex_state = 2}, + [1223] = {.lex_state = 203}, + [1224] = {.lex_state = 330, .external_lex_state = 2}, + [1225] = {.lex_state = 203}, + [1226] = {.lex_state = 322, .external_lex_state = 2}, + [1227] = {.lex_state = 375, .external_lex_state = 22}, + [1228] = {.lex_state = 375, .external_lex_state = 22}, + [1229] = {.lex_state = 375, .external_lex_state = 22}, + [1230] = {.lex_state = 373, .external_lex_state = 16}, + [1231] = {.lex_state = 375, .external_lex_state = 22}, + [1232] = {.lex_state = 377}, + [1233] = {.lex_state = 375, .external_lex_state = 16}, + [1234] = {.lex_state = 203}, + [1235] = {.lex_state = 308, .external_lex_state = 16}, + [1236] = {.lex_state = 308, .external_lex_state = 16}, + [1237] = {.lex_state = 308, .external_lex_state = 16}, + [1238] = {.lex_state = 375, .external_lex_state = 22}, + [1239] = {.lex_state = 377}, + [1240] = {.lex_state = 375, .external_lex_state = 16}, + [1241] = {.lex_state = 375, .external_lex_state = 22}, + [1242] = {.lex_state = 377}, + [1243] = {.lex_state = 375, .external_lex_state = 16}, + [1244] = {.lex_state = 264, .external_lex_state = 5}, + [1245] = {.lex_state = 375, .external_lex_state = 16}, + [1246] = {.lex_state = 375, .external_lex_state = 22}, + [1247] = {.lex_state = 375, .external_lex_state = 22}, + [1248] = {.lex_state = 411, .external_lex_state = 22}, + [1249] = {.lex_state = 411, .external_lex_state = 22}, + [1250] = {.lex_state = 203, .external_lex_state = 16}, + [1251] = {.lex_state = 375, .external_lex_state = 16}, + [1252] = {.lex_state = 264, .external_lex_state = 5}, + [1253] = {.lex_state = 375, .external_lex_state = 16}, + [1254] = {.lex_state = 264, .external_lex_state = 5}, + [1255] = {.lex_state = 375, .external_lex_state = 16}, + [1256] = {.lex_state = 264, .external_lex_state = 5}, + [1257] = {.lex_state = 375, .external_lex_state = 16}, + [1258] = {.lex_state = 264, .external_lex_state = 5}, + [1259] = {.lex_state = 375, .external_lex_state = 16}, + [1260] = {.lex_state = 322, .external_lex_state = 2}, + [1261] = {.lex_state = 322}, + [1262] = {.lex_state = 322, .external_lex_state = 15}, + [1263] = {.lex_state = 397, .external_lex_state = 4}, + [1264] = {.lex_state = 343, .external_lex_state = 2}, + [1265] = {.lex_state = 203}, + [1266] = {.lex_state = 415, .external_lex_state = 18}, + [1267] = {.lex_state = 343, .external_lex_state = 2}, + [1268] = {.lex_state = 382, .external_lex_state = 18}, + [1269] = {.lex_state = 203}, + [1270] = {.lex_state = 203}, + [1271] = {.lex_state = 349, .external_lex_state = 2}, + [1272] = {.lex_state = 203}, + [1273] = {.lex_state = 401}, + [1274] = {.lex_state = 270, .external_lex_state = 4}, + [1275] = {.lex_state = 401}, + [1276] = {.lex_state = 270, .external_lex_state = 4}, + [1277] = {.lex_state = 203}, + [1278] = {.lex_state = 423, .external_lex_state = 18}, + [1279] = {.lex_state = 359, .external_lex_state = 21}, + [1280] = {.lex_state = 133}, + [1281] = {.lex_state = 231}, + [1282] = {.lex_state = 203}, + [1283] = {.lex_state = 203}, + [1284] = {.lex_state = 367, .external_lex_state = 2}, + [1285] = {.lex_state = 382, .external_lex_state = 18}, + [1286] = {.lex_state = 318, .external_lex_state = 6}, + [1287] = {.lex_state = 322}, + [1288] = {.lex_state = 318, .external_lex_state = 23}, + [1289] = {.lex_state = 318, .external_lex_state = 23}, + [1290] = {.lex_state = 318, .external_lex_state = 23}, + [1291] = {.lex_state = 318, .external_lex_state = 23}, + [1292] = {.lex_state = 318, .external_lex_state = 23}, + [1293] = {.lex_state = 373, .external_lex_state = 16}, + [1294] = {.lex_state = 318, .external_lex_state = 23}, + [1295] = {.lex_state = 377}, + [1296] = {.lex_state = 375, .external_lex_state = 16}, + [1297] = {.lex_state = 203}, + [1298] = {.lex_state = 308, .external_lex_state = 16}, + [1299] = {.lex_state = 308, .external_lex_state = 16}, + [1300] = {.lex_state = 308, .external_lex_state = 16}, + [1301] = {.lex_state = 318, .external_lex_state = 23}, + [1302] = {.lex_state = 377}, + [1303] = {.lex_state = 375, .external_lex_state = 16}, + [1304] = {.lex_state = 318, .external_lex_state = 23}, + [1305] = {.lex_state = 377}, + [1306] = {.lex_state = 375, .external_lex_state = 16}, + [1307] = {.lex_state = 318, .external_lex_state = 23}, + [1308] = {.lex_state = 318, .external_lex_state = 23}, + [1309] = {.lex_state = 318, .external_lex_state = 13}, + [1310] = {.lex_state = 318, .external_lex_state = 13}, + [1311] = {.lex_state = 318, .external_lex_state = 13}, + [1312] = {.lex_state = 373, .external_lex_state = 16}, + [1313] = {.lex_state = 318, .external_lex_state = 13}, + [1314] = {.lex_state = 377}, + [1315] = {.lex_state = 375, .external_lex_state = 16}, + [1316] = {.lex_state = 203}, + [1317] = {.lex_state = 308, .external_lex_state = 16}, + [1318] = {.lex_state = 308, .external_lex_state = 16}, + [1319] = {.lex_state = 308, .external_lex_state = 16}, + [1320] = {.lex_state = 318, .external_lex_state = 13}, + [1321] = {.lex_state = 377}, + [1322] = {.lex_state = 375, .external_lex_state = 16}, + [1323] = {.lex_state = 318, .external_lex_state = 13}, + [1324] = {.lex_state = 377}, + [1325] = {.lex_state = 375, .external_lex_state = 16}, + [1326] = {.lex_state = 318, .external_lex_state = 13}, + [1327] = {.lex_state = 318, .external_lex_state = 13}, + [1328] = {.lex_state = 233, .external_lex_state = 17}, + [1329] = {.lex_state = 411, .external_lex_state = 22}, + [1330] = {.lex_state = 411, .external_lex_state = 22}, + [1331] = {.lex_state = 203, .external_lex_state = 16}, + [1332] = {.lex_state = 375, .external_lex_state = 16}, + [1333] = {.lex_state = 233, .external_lex_state = 17}, + [1334] = {.lex_state = 373, .external_lex_state = 16}, + [1335] = {.lex_state = 233, .external_lex_state = 17}, + [1336] = {.lex_state = 377}, + [1337] = {.lex_state = 375, .external_lex_state = 16}, + [1338] = {.lex_state = 233, .external_lex_state = 17}, + [1339] = {.lex_state = 377}, + [1340] = {.lex_state = 375, .external_lex_state = 16}, + [1341] = {.lex_state = 377}, + [1342] = {.lex_state = 375, .external_lex_state = 16}, + [1343] = {.lex_state = 375, .external_lex_state = 16}, + [1344] = {.lex_state = 233, .external_lex_state = 17}, + [1345] = {.lex_state = 375, .external_lex_state = 16}, + [1346] = {.lex_state = 413, .external_lex_state = 18}, + [1347] = {.lex_state = 382, .external_lex_state = 17}, + [1348] = {.lex_state = 382, .external_lex_state = 17}, + [1349] = {.lex_state = 415, .external_lex_state = 18}, + [1350] = {.lex_state = 382, .external_lex_state = 17}, + [1351] = {.lex_state = 415, .external_lex_state = 18}, + [1352] = {.lex_state = 388, .external_lex_state = 24}, + [1353] = {.lex_state = 382, .external_lex_state = 18}, + [1354] = {.lex_state = 330, .external_lex_state = 15}, + [1355] = {.lex_state = 384, .external_lex_state = 18}, + [1356] = {.lex_state = 203}, + [1357] = {.lex_state = 133}, + [1358] = {.lex_state = 231}, + [1359] = {.lex_state = 384, .external_lex_state = 18}, + [1360] = {.lex_state = 324, .external_lex_state = 23}, + [1361] = {.lex_state = 324, .external_lex_state = 23}, + [1362] = {.lex_state = 324, .external_lex_state = 23}, + [1363] = {.lex_state = 324, .external_lex_state = 13}, + [1364] = {.lex_state = 417, .external_lex_state = 18}, + [1365] = {.lex_state = 384, .external_lex_state = 17}, + [1366] = {.lex_state = 384, .external_lex_state = 17}, + [1367] = {.lex_state = 384, .external_lex_state = 17}, + [1368] = {.lex_state = 384, .external_lex_state = 18}, + [1369] = {.lex_state = 364, .external_lex_state = 4}, + [1370] = {.lex_state = 337, .external_lex_state = 5}, + [1371] = {.lex_state = 388, .external_lex_state = 24}, + [1372] = {.lex_state = 388, .external_lex_state = 24}, + [1373] = {.lex_state = 203}, + [1374] = {.lex_state = 308, .external_lex_state = 16}, + [1375] = {.lex_state = 316, .external_lex_state = 6}, + [1376] = {.lex_state = 308, .external_lex_state = 16}, + [1377] = {.lex_state = 308, .external_lex_state = 16}, + [1378] = {.lex_state = 386, .external_lex_state = 7}, + [1379] = {.lex_state = 388, .external_lex_state = 24}, + [1380] = {.lex_state = 203}, + [1381] = {.lex_state = 203}, + [1382] = {.lex_state = 395, .external_lex_state = 13}, + [1383] = {.lex_state = 395, .external_lex_state = 13}, + [1384] = {.lex_state = 395, .external_lex_state = 13}, + [1385] = {.lex_state = 373, .external_lex_state = 16}, + [1386] = {.lex_state = 395, .external_lex_state = 13}, + [1387] = {.lex_state = 377}, + [1388] = {.lex_state = 375, .external_lex_state = 16}, + [1389] = {.lex_state = 203}, + [1390] = {.lex_state = 308, .external_lex_state = 16}, + [1391] = {.lex_state = 308, .external_lex_state = 16}, + [1392] = {.lex_state = 308, .external_lex_state = 16}, + [1393] = {.lex_state = 395, .external_lex_state = 13}, + [1394] = {.lex_state = 377}, + [1395] = {.lex_state = 375, .external_lex_state = 16}, + [1396] = {.lex_state = 395, .external_lex_state = 13}, + [1397] = {.lex_state = 377}, + [1398] = {.lex_state = 375, .external_lex_state = 16}, + [1399] = {.lex_state = 395, .external_lex_state = 13}, + [1400] = {.lex_state = 395, .external_lex_state = 13}, + [1401] = {.lex_state = 268, .external_lex_state = 20}, + [1402] = {.lex_state = 411, .external_lex_state = 22}, + [1403] = {.lex_state = 411, .external_lex_state = 22}, + [1404] = {.lex_state = 203, .external_lex_state = 16}, + [1405] = {.lex_state = 375, .external_lex_state = 16}, + [1406] = {.lex_state = 268, .external_lex_state = 20}, + [1407] = {.lex_state = 373, .external_lex_state = 16}, + [1408] = {.lex_state = 268, .external_lex_state = 20}, + [1409] = {.lex_state = 377}, + [1410] = {.lex_state = 375, .external_lex_state = 16}, + [1411] = {.lex_state = 268, .external_lex_state = 20}, + [1412] = {.lex_state = 377}, + [1413] = {.lex_state = 375, .external_lex_state = 16}, + [1414] = {.lex_state = 377}, + [1415] = {.lex_state = 375, .external_lex_state = 16}, + [1416] = {.lex_state = 375, .external_lex_state = 16}, + [1417] = {.lex_state = 268, .external_lex_state = 20}, + [1418] = {.lex_state = 375, .external_lex_state = 16}, + [1419] = {.lex_state = 397, .external_lex_state = 10}, + [1420] = {.lex_state = 397, .external_lex_state = 10}, + [1421] = {.lex_state = 397, .external_lex_state = 10}, + [1422] = {.lex_state = 373, .external_lex_state = 16}, + [1423] = {.lex_state = 397, .external_lex_state = 10}, + [1424] = {.lex_state = 377}, + [1425] = {.lex_state = 375, .external_lex_state = 16}, + [1426] = {.lex_state = 203}, + [1427] = {.lex_state = 308, .external_lex_state = 16}, + [1428] = {.lex_state = 308, .external_lex_state = 16}, + [1429] = {.lex_state = 308, .external_lex_state = 16}, + [1430] = {.lex_state = 397, .external_lex_state = 10}, + [1431] = {.lex_state = 377}, + [1432] = {.lex_state = 375, .external_lex_state = 16}, + [1433] = {.lex_state = 397, .external_lex_state = 10}, + [1434] = {.lex_state = 377}, + [1435] = {.lex_state = 375, .external_lex_state = 16}, + [1436] = {.lex_state = 397, .external_lex_state = 10}, + [1437] = {.lex_state = 397, .external_lex_state = 10}, + [1438] = {.lex_state = 364, .external_lex_state = 4}, + [1439] = {.lex_state = 364, .external_lex_state = 4}, + [1440] = {.lex_state = 349, .external_lex_state = 2}, + [1441] = {.lex_state = 399, .external_lex_state = 2}, + [1442] = {.lex_state = 399, .external_lex_state = 2}, + [1443] = {.lex_state = 364, .external_lex_state = 4}, + [1444] = {.lex_state = 203}, + [1445] = {.lex_state = 231}, + [1446] = {.lex_state = 425, .external_lex_state = 2}, + [1447] = {.lex_state = 228}, + [1448] = {.lex_state = 419, .external_lex_state = 13}, + [1449] = {.lex_state = 425, .external_lex_state = 2}, + [1450] = {.lex_state = 228}, + [1451] = {.lex_state = 364, .external_lex_state = 4}, + [1452] = {.lex_state = 203}, + [1453] = {.lex_state = 231}, + [1454] = {.lex_state = 364, .external_lex_state = 4}, + [1455] = {.lex_state = 231}, + [1456] = {.lex_state = 364, .external_lex_state = 4}, + [1457] = {.lex_state = 203}, + [1458] = {.lex_state = 364, .external_lex_state = 4}, + [1459] = {.lex_state = 231}, + [1460] = {.lex_state = 270, .external_lex_state = 10}, + [1461] = {.lex_state = 270, .external_lex_state = 10}, + [1462] = {.lex_state = 270, .external_lex_state = 10}, + [1463] = {.lex_state = 375, .external_lex_state = 16}, + [1464] = {.lex_state = 411, .external_lex_state = 22}, + [1465] = {.lex_state = 411, .external_lex_state = 22}, + [1466] = {.lex_state = 203, .external_lex_state = 16}, + [1467] = {.lex_state = 375, .external_lex_state = 16}, + [1468] = {.lex_state = 270, .external_lex_state = 10}, + [1469] = {.lex_state = 375, .external_lex_state = 16}, + [1470] = {.lex_state = 270, .external_lex_state = 10}, + [1471] = {.lex_state = 375, .external_lex_state = 16}, + [1472] = {.lex_state = 270, .external_lex_state = 10}, + [1473] = {.lex_state = 375, .external_lex_state = 16}, + [1474] = {.lex_state = 270, .external_lex_state = 10}, + [1475] = {.lex_state = 375, .external_lex_state = 16}, + [1476] = {.lex_state = 364, .external_lex_state = 4}, + [1477] = {.lex_state = 421, .external_lex_state = 10}, + [1478] = {.lex_state = 421, .external_lex_state = 10}, + [1479] = {.lex_state = 364, .external_lex_state = 4}, + [1480] = {.lex_state = 421, .external_lex_state = 10}, + [1481] = {.lex_state = 268, .external_lex_state = 20}, + [1482] = {.lex_state = 409, .external_lex_state = 7}, + [1483] = {.lex_state = 231}, + [1484] = {.lex_state = 428, .external_lex_state = 10}, + [1485] = {.lex_state = 428, .external_lex_state = 10}, + [1486] = {.lex_state = 369, .external_lex_state = 5}, + [1487] = {.lex_state = 297, .external_lex_state = 11}, + [1488] = {.lex_state = 297, .external_lex_state = 11}, + [1489] = {.lex_state = 297, .external_lex_state = 11}, + [1490] = {.lex_state = 375, .external_lex_state = 16}, + [1491] = {.lex_state = 411, .external_lex_state = 22}, + [1492] = {.lex_state = 411, .external_lex_state = 22}, + [1493] = {.lex_state = 203, .external_lex_state = 16}, + [1494] = {.lex_state = 375, .external_lex_state = 16}, + [1495] = {.lex_state = 297, .external_lex_state = 11}, + [1496] = {.lex_state = 375, .external_lex_state = 16}, + [1497] = {.lex_state = 297, .external_lex_state = 11}, + [1498] = {.lex_state = 375, .external_lex_state = 16}, + [1499] = {.lex_state = 297, .external_lex_state = 11}, + [1500] = {.lex_state = 375, .external_lex_state = 16}, + [1501] = {.lex_state = 297, .external_lex_state = 11}, + [1502] = {.lex_state = 375, .external_lex_state = 16}, + [1503] = {.lex_state = 371, .external_lex_state = 13}, + [1504] = {.lex_state = 371, .external_lex_state = 13}, + [1505] = {.lex_state = 371, .external_lex_state = 13}, + [1506] = {.lex_state = 375, .external_lex_state = 16}, + [1507] = {.lex_state = 411, .external_lex_state = 22}, + [1508] = {.lex_state = 411, .external_lex_state = 22}, + [1509] = {.lex_state = 203, .external_lex_state = 16}, + [1510] = {.lex_state = 375, .external_lex_state = 16}, + [1511] = {.lex_state = 371, .external_lex_state = 13}, + [1512] = {.lex_state = 375, .external_lex_state = 16}, + [1513] = {.lex_state = 371, .external_lex_state = 13}, + [1514] = {.lex_state = 375, .external_lex_state = 16}, + [1515] = {.lex_state = 371, .external_lex_state = 13}, + [1516] = {.lex_state = 375, .external_lex_state = 16}, + [1517] = {.lex_state = 371, .external_lex_state = 13}, + [1518] = {.lex_state = 375, .external_lex_state = 16}, + [1519] = {.lex_state = 273, .external_lex_state = 3}, + [1520] = {.lex_state = 273, .external_lex_state = 14}, + [1521] = {.lex_state = 273, .external_lex_state = 14}, + [1522] = {.lex_state = 273, .external_lex_state = 14}, + [1523] = {.lex_state = 375, .external_lex_state = 16}, + [1524] = {.lex_state = 411, .external_lex_state = 22}, + [1525] = {.lex_state = 411, .external_lex_state = 22}, + [1526] = {.lex_state = 203, .external_lex_state = 16}, + [1527] = {.lex_state = 375, .external_lex_state = 16}, + [1528] = {.lex_state = 273, .external_lex_state = 14}, + [1529] = {.lex_state = 375, .external_lex_state = 16}, + [1530] = {.lex_state = 273, .external_lex_state = 14}, + [1531] = {.lex_state = 375, .external_lex_state = 16}, + [1532] = {.lex_state = 273, .external_lex_state = 14}, + [1533] = {.lex_state = 375, .external_lex_state = 16}, + [1534] = {.lex_state = 273, .external_lex_state = 14}, + [1535] = {.lex_state = 375, .external_lex_state = 16}, + [1536] = {.lex_state = 273, .external_lex_state = 10}, + [1537] = {.lex_state = 273, .external_lex_state = 10}, + [1538] = {.lex_state = 273, .external_lex_state = 10}, + [1539] = {.lex_state = 375, .external_lex_state = 16}, + [1540] = {.lex_state = 411, .external_lex_state = 22}, + [1541] = {.lex_state = 411, .external_lex_state = 22}, + [1542] = {.lex_state = 203, .external_lex_state = 16}, + [1543] = {.lex_state = 375, .external_lex_state = 16}, + [1544] = {.lex_state = 273, .external_lex_state = 10}, + [1545] = {.lex_state = 375, .external_lex_state = 16}, + [1546] = {.lex_state = 273, .external_lex_state = 10}, + [1547] = {.lex_state = 375, .external_lex_state = 16}, + [1548] = {.lex_state = 273, .external_lex_state = 10}, + [1549] = {.lex_state = 375, .external_lex_state = 16}, + [1550] = {.lex_state = 273, .external_lex_state = 10}, + [1551] = {.lex_state = 375, .external_lex_state = 16}, + [1552] = {.lex_state = 322, .external_lex_state = 15}, + [1553] = {.lex_state = 322, .external_lex_state = 15}, + [1554] = {.lex_state = 322, .external_lex_state = 15}, + [1555] = {.lex_state = 375, .external_lex_state = 16}, + [1556] = {.lex_state = 411, .external_lex_state = 22}, + [1557] = {.lex_state = 411, .external_lex_state = 22}, + [1558] = {.lex_state = 203, .external_lex_state = 16}, + [1559] = {.lex_state = 375, .external_lex_state = 16}, + [1560] = {.lex_state = 322, .external_lex_state = 15}, + [1561] = {.lex_state = 375, .external_lex_state = 16}, + [1562] = {.lex_state = 322, .external_lex_state = 15}, + [1563] = {.lex_state = 375, .external_lex_state = 16}, + [1564] = {.lex_state = 322, .external_lex_state = 15}, + [1565] = {.lex_state = 375, .external_lex_state = 16}, + [1566] = {.lex_state = 322, .external_lex_state = 15}, + [1567] = {.lex_state = 375, .external_lex_state = 16}, + [1568] = {.lex_state = 248, .external_lex_state = 13}, + [1569] = {.lex_state = 248, .external_lex_state = 13}, + [1570] = {.lex_state = 248, .external_lex_state = 13}, + [1571] = {.lex_state = 375, .external_lex_state = 16}, + [1572] = {.lex_state = 411, .external_lex_state = 22}, + [1573] = {.lex_state = 411, .external_lex_state = 22}, + [1574] = {.lex_state = 203, .external_lex_state = 16}, + [1575] = {.lex_state = 375, .external_lex_state = 16}, + [1576] = {.lex_state = 248, .external_lex_state = 13}, + [1577] = {.lex_state = 375, .external_lex_state = 16}, + [1578] = {.lex_state = 248, .external_lex_state = 13}, + [1579] = {.lex_state = 375, .external_lex_state = 16}, + [1580] = {.lex_state = 248, .external_lex_state = 13}, + [1581] = {.lex_state = 375, .external_lex_state = 16}, + [1582] = {.lex_state = 248, .external_lex_state = 13}, + [1583] = {.lex_state = 375, .external_lex_state = 16}, + [1584] = {.lex_state = 308, .external_lex_state = 22}, + [1585] = {.lex_state = 308, .external_lex_state = 16}, + [1586] = {.lex_state = 308, .external_lex_state = 22}, + [1587] = {.lex_state = 308, .external_lex_state = 16}, + [1588] = {.lex_state = 411, .external_lex_state = 22}, + [1589] = {.lex_state = 411, .external_lex_state = 22}, + [1590] = {.lex_state = 411, .external_lex_state = 22}, + [1591] = {.lex_state = 373, .external_lex_state = 16}, + [1592] = {.lex_state = 411, .external_lex_state = 22}, + [1593] = {.lex_state = 377}, + [1594] = {.lex_state = 375, .external_lex_state = 16}, + [1595] = {.lex_state = 203}, + [1596] = {.lex_state = 308, .external_lex_state = 16}, + [1597] = {.lex_state = 308, .external_lex_state = 16}, + [1598] = {.lex_state = 308, .external_lex_state = 16}, + [1599] = {.lex_state = 411, .external_lex_state = 22}, + [1600] = {.lex_state = 377}, + [1601] = {.lex_state = 375, .external_lex_state = 16}, + [1602] = {.lex_state = 411, .external_lex_state = 22}, + [1603] = {.lex_state = 377}, + [1604] = {.lex_state = 375, .external_lex_state = 16}, + [1605] = {.lex_state = 411, .external_lex_state = 22}, + [1606] = {.lex_state = 411, .external_lex_state = 22}, + [1607] = {.lex_state = 375, .external_lex_state = 22}, + [1608] = {.lex_state = 411, .external_lex_state = 22}, + [1609] = {.lex_state = 411, .external_lex_state = 22}, + [1610] = {.lex_state = 203, .external_lex_state = 16}, + [1611] = {.lex_state = 375, .external_lex_state = 16}, + [1612] = {.lex_state = 375, .external_lex_state = 22}, + [1613] = {.lex_state = 373, .external_lex_state = 16}, + [1614] = {.lex_state = 375, .external_lex_state = 22}, + [1615] = {.lex_state = 377}, + [1616] = {.lex_state = 375, .external_lex_state = 16}, + [1617] = {.lex_state = 375, .external_lex_state = 22}, + [1618] = {.lex_state = 377}, + [1619] = {.lex_state = 375, .external_lex_state = 16}, + [1620] = {.lex_state = 377}, + [1621] = {.lex_state = 375, .external_lex_state = 16}, + [1622] = {.lex_state = 375, .external_lex_state = 16}, + [1623] = {.lex_state = 375, .external_lex_state = 22}, + [1624] = {.lex_state = 375, .external_lex_state = 16}, + [1625] = {.lex_state = 264, .external_lex_state = 5}, + [1626] = {.lex_state = 264, .external_lex_state = 5}, + [1627] = {.lex_state = 264, .external_lex_state = 5}, + [1628] = {.lex_state = 264, .external_lex_state = 5}, + [1629] = {.lex_state = 375, .external_lex_state = 16}, + [1630] = {.lex_state = 264, .external_lex_state = 5}, + [1631] = {.lex_state = 375, .external_lex_state = 16}, + [1632] = {.lex_state = 264, .external_lex_state = 5}, + [1633] = {.lex_state = 375, .external_lex_state = 16}, + [1634] = {.lex_state = 264, .external_lex_state = 5}, + [1635] = {.lex_state = 264, .external_lex_state = 5}, + [1636] = {.lex_state = 322, .external_lex_state = 2}, + [1637] = {.lex_state = 322, .external_lex_state = 15}, + [1638] = {.lex_state = 203}, + [1639] = {.lex_state = 203}, + [1640] = {.lex_state = 343, .external_lex_state = 2}, + [1641] = {.lex_state = 415, .external_lex_state = 18}, + [1642] = {.lex_state = 203}, + [1643] = {.lex_state = 203}, + [1644] = {.lex_state = 203}, + [1645] = {.lex_state = 203}, + [1646] = {.lex_state = 203}, + [1647] = {.lex_state = 231}, + [1648] = {.lex_state = 401}, + [1649] = {.lex_state = 203}, + [1650] = {.lex_state = 203}, + [1651] = {.lex_state = 231}, + [1652] = {.lex_state = 401}, + [1653] = {.lex_state = 413, .external_lex_state = 18}, + [1654] = {.lex_state = 423, .external_lex_state = 18}, + [1655] = {.lex_state = 231}, + [1656] = {.lex_state = 430, .external_lex_state = 13}, + [1657] = {.lex_state = 430, .external_lex_state = 13}, + [1658] = {.lex_state = 203}, + [1659] = {.lex_state = 203}, + [1660] = {.lex_state = 318, .external_lex_state = 6}, + [1661] = {.lex_state = 322}, + [1662] = {.lex_state = 318, .external_lex_state = 23}, + [1663] = {.lex_state = 411, .external_lex_state = 22}, + [1664] = {.lex_state = 411, .external_lex_state = 22}, + [1665] = {.lex_state = 203, .external_lex_state = 16}, + [1666] = {.lex_state = 375, .external_lex_state = 16}, + [1667] = {.lex_state = 318, .external_lex_state = 23}, + [1668] = {.lex_state = 373, .external_lex_state = 16}, + [1669] = {.lex_state = 318, .external_lex_state = 23}, + [1670] = {.lex_state = 377}, + [1671] = {.lex_state = 375, .external_lex_state = 16}, + [1672] = {.lex_state = 318, .external_lex_state = 23}, + [1673] = {.lex_state = 377}, + [1674] = {.lex_state = 375, .external_lex_state = 16}, + [1675] = {.lex_state = 377}, + [1676] = {.lex_state = 375, .external_lex_state = 16}, + [1677] = {.lex_state = 375, .external_lex_state = 16}, + [1678] = {.lex_state = 318, .external_lex_state = 23}, + [1679] = {.lex_state = 375, .external_lex_state = 16}, + [1680] = {.lex_state = 318, .external_lex_state = 13}, + [1681] = {.lex_state = 411, .external_lex_state = 22}, + [1682] = {.lex_state = 411, .external_lex_state = 22}, + [1683] = {.lex_state = 203, .external_lex_state = 16}, + [1684] = {.lex_state = 375, .external_lex_state = 16}, + [1685] = {.lex_state = 318, .external_lex_state = 13}, + [1686] = {.lex_state = 373, .external_lex_state = 16}, + [1687] = {.lex_state = 318, .external_lex_state = 13}, + [1688] = {.lex_state = 377}, + [1689] = {.lex_state = 375, .external_lex_state = 16}, + [1690] = {.lex_state = 318, .external_lex_state = 13}, + [1691] = {.lex_state = 377}, + [1692] = {.lex_state = 375, .external_lex_state = 16}, + [1693] = {.lex_state = 377}, + [1694] = {.lex_state = 375, .external_lex_state = 16}, + [1695] = {.lex_state = 375, .external_lex_state = 16}, + [1696] = {.lex_state = 318, .external_lex_state = 13}, + [1697] = {.lex_state = 375, .external_lex_state = 16}, + [1698] = {.lex_state = 233, .external_lex_state = 17}, + [1699] = {.lex_state = 233, .external_lex_state = 17}, + [1700] = {.lex_state = 233, .external_lex_state = 17}, + [1701] = {.lex_state = 375, .external_lex_state = 16}, + [1702] = {.lex_state = 411, .external_lex_state = 22}, + [1703] = {.lex_state = 411, .external_lex_state = 22}, + [1704] = {.lex_state = 203, .external_lex_state = 16}, + [1705] = {.lex_state = 375, .external_lex_state = 16}, + [1706] = {.lex_state = 233, .external_lex_state = 17}, + [1707] = {.lex_state = 375, .external_lex_state = 16}, + [1708] = {.lex_state = 233, .external_lex_state = 17}, + [1709] = {.lex_state = 375, .external_lex_state = 16}, + [1710] = {.lex_state = 233, .external_lex_state = 17}, + [1711] = {.lex_state = 375, .external_lex_state = 16}, + [1712] = {.lex_state = 233, .external_lex_state = 17}, + [1713] = {.lex_state = 375, .external_lex_state = 16}, + [1714] = {.lex_state = 203}, + [1715] = {.lex_state = 382, .external_lex_state = 17}, + [1716] = {.lex_state = 415, .external_lex_state = 18}, + [1717] = {.lex_state = 330, .external_lex_state = 15}, + [1718] = {.lex_state = 417, .external_lex_state = 18}, + [1719] = {.lex_state = 231}, + [1720] = {.lex_state = 432, .external_lex_state = 13}, + [1721] = {.lex_state = 432, .external_lex_state = 13}, + [1722] = {.lex_state = 384, .external_lex_state = 17}, + [1723] = {.lex_state = 373, .external_lex_state = 16}, + [1724] = {.lex_state = 388, .external_lex_state = 24}, + [1725] = {.lex_state = 377}, + [1726] = {.lex_state = 375, .external_lex_state = 16}, + [1727] = {.lex_state = 203}, + [1728] = {.lex_state = 308, .external_lex_state = 16}, + [1729] = {.lex_state = 308, .external_lex_state = 16}, + [1730] = {.lex_state = 308, .external_lex_state = 16}, + [1731] = {.lex_state = 388, .external_lex_state = 24}, + [1732] = {.lex_state = 377}, + [1733] = {.lex_state = 375, .external_lex_state = 16}, + [1734] = {.lex_state = 388, .external_lex_state = 24}, + [1735] = {.lex_state = 377}, + [1736] = {.lex_state = 375, .external_lex_state = 16}, + [1737] = {.lex_state = 395, .external_lex_state = 13}, + [1738] = {.lex_state = 411, .external_lex_state = 22}, + [1739] = {.lex_state = 411, .external_lex_state = 22}, + [1740] = {.lex_state = 203, .external_lex_state = 16}, + [1741] = {.lex_state = 375, .external_lex_state = 16}, + [1742] = {.lex_state = 395, .external_lex_state = 13}, + [1743] = {.lex_state = 373, .external_lex_state = 16}, + [1744] = {.lex_state = 395, .external_lex_state = 13}, + [1745] = {.lex_state = 377}, + [1746] = {.lex_state = 375, .external_lex_state = 16}, + [1747] = {.lex_state = 395, .external_lex_state = 13}, + [1748] = {.lex_state = 377}, + [1749] = {.lex_state = 375, .external_lex_state = 16}, + [1750] = {.lex_state = 377}, + [1751] = {.lex_state = 375, .external_lex_state = 16}, + [1752] = {.lex_state = 375, .external_lex_state = 16}, + [1753] = {.lex_state = 395, .external_lex_state = 13}, + [1754] = {.lex_state = 375, .external_lex_state = 16}, + [1755] = {.lex_state = 268, .external_lex_state = 20}, + [1756] = {.lex_state = 268, .external_lex_state = 20}, + [1757] = {.lex_state = 268, .external_lex_state = 20}, + [1758] = {.lex_state = 375, .external_lex_state = 16}, + [1759] = {.lex_state = 411, .external_lex_state = 22}, + [1760] = {.lex_state = 411, .external_lex_state = 22}, + [1761] = {.lex_state = 203, .external_lex_state = 16}, + [1762] = {.lex_state = 375, .external_lex_state = 16}, + [1763] = {.lex_state = 268, .external_lex_state = 20}, + [1764] = {.lex_state = 375, .external_lex_state = 16}, + [1765] = {.lex_state = 268, .external_lex_state = 20}, + [1766] = {.lex_state = 375, .external_lex_state = 16}, + [1767] = {.lex_state = 268, .external_lex_state = 20}, + [1768] = {.lex_state = 375, .external_lex_state = 16}, + [1769] = {.lex_state = 268, .external_lex_state = 20}, + [1770] = {.lex_state = 375, .external_lex_state = 16}, + [1771] = {.lex_state = 397, .external_lex_state = 10}, + [1772] = {.lex_state = 411, .external_lex_state = 22}, + [1773] = {.lex_state = 411, .external_lex_state = 22}, + [1774] = {.lex_state = 203, .external_lex_state = 16}, + [1775] = {.lex_state = 375, .external_lex_state = 16}, + [1776] = {.lex_state = 397, .external_lex_state = 10}, + [1777] = {.lex_state = 373, .external_lex_state = 16}, + [1778] = {.lex_state = 397, .external_lex_state = 10}, + [1779] = {.lex_state = 377}, + [1780] = {.lex_state = 375, .external_lex_state = 16}, + [1781] = {.lex_state = 397, .external_lex_state = 10}, + [1782] = {.lex_state = 377}, + [1783] = {.lex_state = 375, .external_lex_state = 16}, + [1784] = {.lex_state = 377}, + [1785] = {.lex_state = 375, .external_lex_state = 16}, + [1786] = {.lex_state = 375, .external_lex_state = 16}, + [1787] = {.lex_state = 397, .external_lex_state = 10}, + [1788] = {.lex_state = 375, .external_lex_state = 16}, + [1789] = {.lex_state = 349, .external_lex_state = 2}, + [1790] = {.lex_state = 364, .external_lex_state = 4}, + [1791] = {.lex_state = 419, .external_lex_state = 13}, + [1792] = {.lex_state = 419, .external_lex_state = 13}, + [1793] = {.lex_state = 228}, + [1794] = {.lex_state = 203}, + [1795] = {.lex_state = 133, .external_lex_state = 2}, + [1796] = {.lex_state = 401}, + [1797] = {.lex_state = 231}, + [1798] = {.lex_state = 233}, + [1799] = {.lex_state = 233}, + [1800] = {.lex_state = 434, .external_lex_state = 3}, + [1801] = {.lex_state = 434, .external_lex_state = 4}, + [1802] = {.lex_state = 440, .external_lex_state = 5}, + [1803] = {.lex_state = 248}, + [1804] = {.lex_state = 255}, + [1805] = {.lex_state = 440, .external_lex_state = 5}, + [1806] = {.lex_state = 258, .external_lex_state = 6}, + [1807] = {.lex_state = 133, .external_lex_state = 2}, + [1808] = {.lex_state = 133, .external_lex_state = 2}, + [1809] = {.lex_state = 133, .external_lex_state = 2}, + [1810] = {.lex_state = 442, .external_lex_state = 5}, + [1811] = {.lex_state = 364, .external_lex_state = 4}, + [1812] = {.lex_state = 440, .external_lex_state = 7}, + [1813] = {.lex_state = 444, .external_lex_state = 8}, + [1814] = {.lex_state = 203}, + [1815] = {.lex_state = 440, .external_lex_state = 7}, + [1816] = {.lex_state = 425, .external_lex_state = 2}, + [1817] = {.lex_state = 231, .external_lex_state = 2}, + [1818] = {.lex_state = 425, .external_lex_state = 2}, + [1819] = {.lex_state = 228}, + [1820] = {.lex_state = 419, .external_lex_state = 13}, + [1821] = {.lex_state = 401}, + [1822] = {.lex_state = 364, .external_lex_state = 4}, + [1823] = {.lex_state = 444, .external_lex_state = 8}, + [1824] = {.lex_state = 425, .external_lex_state = 2}, + [1825] = {.lex_state = 425, .external_lex_state = 2}, + [1826] = {.lex_state = 364, .external_lex_state = 4}, + [1827] = {.lex_state = 419, .external_lex_state = 13}, + [1828] = {.lex_state = 419, .external_lex_state = 13}, + [1829] = {.lex_state = 228}, + [1830] = {.lex_state = 203}, + [1831] = {.lex_state = 364, .external_lex_state = 4}, + [1832] = {.lex_state = 203}, + [1833] = {.lex_state = 270, .external_lex_state = 10}, + [1834] = {.lex_state = 270, .external_lex_state = 10}, + [1835] = {.lex_state = 270, .external_lex_state = 10}, + [1836] = {.lex_state = 270, .external_lex_state = 10}, + [1837] = {.lex_state = 375, .external_lex_state = 16}, + [1838] = {.lex_state = 270, .external_lex_state = 10}, + [1839] = {.lex_state = 375, .external_lex_state = 16}, + [1840] = {.lex_state = 270, .external_lex_state = 10}, + [1841] = {.lex_state = 375, .external_lex_state = 16}, + [1842] = {.lex_state = 270, .external_lex_state = 10}, + [1843] = {.lex_state = 270, .external_lex_state = 10}, + [1844] = {.lex_state = 421, .external_lex_state = 10}, + [1845] = {.lex_state = 428, .external_lex_state = 10}, + [1846] = {.lex_state = 428, .external_lex_state = 10}, + [1847] = {.lex_state = 428, .external_lex_state = 10}, + [1848] = {.lex_state = 297, .external_lex_state = 11}, + [1849] = {.lex_state = 297, .external_lex_state = 11}, + [1850] = {.lex_state = 297, .external_lex_state = 11}, + [1851] = {.lex_state = 297, .external_lex_state = 11}, + [1852] = {.lex_state = 375, .external_lex_state = 16}, + [1853] = {.lex_state = 297, .external_lex_state = 11}, + [1854] = {.lex_state = 375, .external_lex_state = 16}, + [1855] = {.lex_state = 297, .external_lex_state = 11}, + [1856] = {.lex_state = 375, .external_lex_state = 16}, + [1857] = {.lex_state = 297, .external_lex_state = 11}, + [1858] = {.lex_state = 297, .external_lex_state = 11}, + [1859] = {.lex_state = 371, .external_lex_state = 13}, + [1860] = {.lex_state = 371, .external_lex_state = 13}, + [1861] = {.lex_state = 371, .external_lex_state = 13}, + [1862] = {.lex_state = 371, .external_lex_state = 13}, + [1863] = {.lex_state = 375, .external_lex_state = 16}, + [1864] = {.lex_state = 371, .external_lex_state = 13}, + [1865] = {.lex_state = 375, .external_lex_state = 16}, + [1866] = {.lex_state = 371, .external_lex_state = 13}, + [1867] = {.lex_state = 375, .external_lex_state = 16}, + [1868] = {.lex_state = 371, .external_lex_state = 13}, + [1869] = {.lex_state = 371, .external_lex_state = 13}, + [1870] = {.lex_state = 273, .external_lex_state = 14}, + [1871] = {.lex_state = 273, .external_lex_state = 14}, + [1872] = {.lex_state = 273, .external_lex_state = 14}, + [1873] = {.lex_state = 273, .external_lex_state = 14}, + [1874] = {.lex_state = 375, .external_lex_state = 16}, + [1875] = {.lex_state = 273, .external_lex_state = 14}, + [1876] = {.lex_state = 375, .external_lex_state = 16}, + [1877] = {.lex_state = 273, .external_lex_state = 14}, + [1878] = {.lex_state = 375, .external_lex_state = 16}, + [1879] = {.lex_state = 273, .external_lex_state = 14}, + [1880] = {.lex_state = 273, .external_lex_state = 14}, + [1881] = {.lex_state = 273, .external_lex_state = 10}, + [1882] = {.lex_state = 273, .external_lex_state = 10}, + [1883] = {.lex_state = 273, .external_lex_state = 10}, + [1884] = {.lex_state = 273, .external_lex_state = 10}, + [1885] = {.lex_state = 375, .external_lex_state = 16}, + [1886] = {.lex_state = 273, .external_lex_state = 10}, + [1887] = {.lex_state = 375, .external_lex_state = 16}, + [1888] = {.lex_state = 273, .external_lex_state = 10}, + [1889] = {.lex_state = 375, .external_lex_state = 16}, + [1890] = {.lex_state = 273, .external_lex_state = 10}, + [1891] = {.lex_state = 273, .external_lex_state = 10}, + [1892] = {.lex_state = 322, .external_lex_state = 15}, + [1893] = {.lex_state = 322, .external_lex_state = 15}, + [1894] = {.lex_state = 322, .external_lex_state = 15}, + [1895] = {.lex_state = 322, .external_lex_state = 15}, + [1896] = {.lex_state = 375, .external_lex_state = 16}, + [1897] = {.lex_state = 322, .external_lex_state = 15}, + [1898] = {.lex_state = 375, .external_lex_state = 16}, + [1899] = {.lex_state = 322, .external_lex_state = 15}, + [1900] = {.lex_state = 375, .external_lex_state = 16}, + [1901] = {.lex_state = 322, .external_lex_state = 15}, + [1902] = {.lex_state = 322, .external_lex_state = 15}, + [1903] = {.lex_state = 248, .external_lex_state = 13}, + [1904] = {.lex_state = 248, .external_lex_state = 13}, + [1905] = {.lex_state = 248, .external_lex_state = 13}, + [1906] = {.lex_state = 248, .external_lex_state = 13}, + [1907] = {.lex_state = 375, .external_lex_state = 16}, + [1908] = {.lex_state = 248, .external_lex_state = 13}, + [1909] = {.lex_state = 375, .external_lex_state = 16}, + [1910] = {.lex_state = 248, .external_lex_state = 13}, + [1911] = {.lex_state = 375, .external_lex_state = 16}, + [1912] = {.lex_state = 248, .external_lex_state = 13}, + [1913] = {.lex_state = 248, .external_lex_state = 13}, + [1914] = {.lex_state = 308, .external_lex_state = 16}, + [1915] = {.lex_state = 308, .external_lex_state = 16}, + [1916] = {.lex_state = 411, .external_lex_state = 22}, + [1917] = {.lex_state = 411, .external_lex_state = 22}, + [1918] = {.lex_state = 411, .external_lex_state = 22}, + [1919] = {.lex_state = 203, .external_lex_state = 16}, + [1920] = {.lex_state = 375, .external_lex_state = 16}, + [1921] = {.lex_state = 411, .external_lex_state = 22}, + [1922] = {.lex_state = 373, .external_lex_state = 16}, + [1923] = {.lex_state = 411, .external_lex_state = 22}, + [1924] = {.lex_state = 377}, + [1925] = {.lex_state = 375, .external_lex_state = 16}, + [1926] = {.lex_state = 411, .external_lex_state = 22}, + [1927] = {.lex_state = 377}, + [1928] = {.lex_state = 375, .external_lex_state = 16}, + [1929] = {.lex_state = 377}, + [1930] = {.lex_state = 375, .external_lex_state = 16}, + [1931] = {.lex_state = 375, .external_lex_state = 16}, + [1932] = {.lex_state = 411, .external_lex_state = 22}, + [1933] = {.lex_state = 375, .external_lex_state = 16}, + [1934] = {.lex_state = 375, .external_lex_state = 22}, + [1935] = {.lex_state = 375, .external_lex_state = 22}, + [1936] = {.lex_state = 375, .external_lex_state = 22}, + [1937] = {.lex_state = 375, .external_lex_state = 16}, + [1938] = {.lex_state = 411, .external_lex_state = 22}, + [1939] = {.lex_state = 411, .external_lex_state = 22}, + [1940] = {.lex_state = 203, .external_lex_state = 16}, + [1941] = {.lex_state = 375, .external_lex_state = 16}, + [1942] = {.lex_state = 375, .external_lex_state = 22}, + [1943] = {.lex_state = 375, .external_lex_state = 16}, + [1944] = {.lex_state = 375, .external_lex_state = 22}, + [1945] = {.lex_state = 375, .external_lex_state = 16}, + [1946] = {.lex_state = 375, .external_lex_state = 22}, + [1947] = {.lex_state = 375, .external_lex_state = 16}, + [1948] = {.lex_state = 375, .external_lex_state = 22}, + [1949] = {.lex_state = 375, .external_lex_state = 16}, + [1950] = {.lex_state = 264, .external_lex_state = 5}, + [1951] = {.lex_state = 264, .external_lex_state = 5}, + [1952] = {.lex_state = 264, .external_lex_state = 5}, + [1953] = {.lex_state = 203}, + [1954] = {.lex_state = 203}, + [1955] = {.lex_state = 203}, + [1956] = {.lex_state = 203}, + [1957] = {.lex_state = 203}, + [1958] = {.lex_state = 203}, + [1959] = {.lex_state = 203}, + [1960] = {.lex_state = 231}, + [1961] = {.lex_state = 203}, + [1962] = {.lex_state = 203}, + [1963] = {.lex_state = 203}, + [1964] = {.lex_state = 231}, + [1965] = {.lex_state = 203}, + [1966] = {.lex_state = 430, .external_lex_state = 13}, + [1967] = {.lex_state = 430, .external_lex_state = 13}, + [1968] = {.lex_state = 203}, + [1969] = {.lex_state = 430, .external_lex_state = 13}, + [1970] = {.lex_state = 318, .external_lex_state = 6}, + [1971] = {.lex_state = 318, .external_lex_state = 23}, + [1972] = {.lex_state = 318, .external_lex_state = 23}, + [1973] = {.lex_state = 318, .external_lex_state = 23}, + [1974] = {.lex_state = 375, .external_lex_state = 16}, + [1975] = {.lex_state = 411, .external_lex_state = 22}, + [1976] = {.lex_state = 411, .external_lex_state = 22}, + [1977] = {.lex_state = 203, .external_lex_state = 16}, + [1978] = {.lex_state = 375, .external_lex_state = 16}, + [1979] = {.lex_state = 318, .external_lex_state = 23}, + [1980] = {.lex_state = 375, .external_lex_state = 16}, + [1981] = {.lex_state = 318, .external_lex_state = 23}, + [1982] = {.lex_state = 375, .external_lex_state = 16}, + [1983] = {.lex_state = 318, .external_lex_state = 23}, + [1984] = {.lex_state = 375, .external_lex_state = 16}, + [1985] = {.lex_state = 318, .external_lex_state = 23}, + [1986] = {.lex_state = 375, .external_lex_state = 16}, + [1987] = {.lex_state = 318, .external_lex_state = 13}, + [1988] = {.lex_state = 318, .external_lex_state = 13}, + [1989] = {.lex_state = 318, .external_lex_state = 13}, + [1990] = {.lex_state = 375, .external_lex_state = 16}, + [1991] = {.lex_state = 411, .external_lex_state = 22}, + [1992] = {.lex_state = 411, .external_lex_state = 22}, + [1993] = {.lex_state = 203, .external_lex_state = 16}, + [1994] = {.lex_state = 375, .external_lex_state = 16}, + [1995] = {.lex_state = 318, .external_lex_state = 13}, + [1996] = {.lex_state = 375, .external_lex_state = 16}, + [1997] = {.lex_state = 318, .external_lex_state = 13}, + [1998] = {.lex_state = 375, .external_lex_state = 16}, + [1999] = {.lex_state = 318, .external_lex_state = 13}, + [2000] = {.lex_state = 375, .external_lex_state = 16}, + [2001] = {.lex_state = 318, .external_lex_state = 13}, + [2002] = {.lex_state = 375, .external_lex_state = 16}, + [2003] = {.lex_state = 233, .external_lex_state = 17}, + [2004] = {.lex_state = 233, .external_lex_state = 17}, + [2005] = {.lex_state = 233, .external_lex_state = 17}, + [2006] = {.lex_state = 233, .external_lex_state = 17}, + [2007] = {.lex_state = 375, .external_lex_state = 16}, + [2008] = {.lex_state = 233, .external_lex_state = 17}, + [2009] = {.lex_state = 375, .external_lex_state = 16}, + [2010] = {.lex_state = 233, .external_lex_state = 17}, + [2011] = {.lex_state = 375, .external_lex_state = 16}, + [2012] = {.lex_state = 233, .external_lex_state = 17}, + [2013] = {.lex_state = 233, .external_lex_state = 17}, + [2014] = {.lex_state = 432, .external_lex_state = 13}, + [2015] = {.lex_state = 432, .external_lex_state = 13}, + [2016] = {.lex_state = 432, .external_lex_state = 13}, + [2017] = {.lex_state = 388, .external_lex_state = 24}, + [2018] = {.lex_state = 411, .external_lex_state = 22}, + [2019] = {.lex_state = 411, .external_lex_state = 22}, + [2020] = {.lex_state = 203, .external_lex_state = 16}, + [2021] = {.lex_state = 375, .external_lex_state = 16}, + [2022] = {.lex_state = 388, .external_lex_state = 24}, + [2023] = {.lex_state = 373, .external_lex_state = 16}, + [2024] = {.lex_state = 388, .external_lex_state = 24}, + [2025] = {.lex_state = 377}, + [2026] = {.lex_state = 375, .external_lex_state = 16}, + [2027] = {.lex_state = 388, .external_lex_state = 24}, + [2028] = {.lex_state = 377}, + [2029] = {.lex_state = 375, .external_lex_state = 16}, + [2030] = {.lex_state = 377}, + [2031] = {.lex_state = 375, .external_lex_state = 16}, + [2032] = {.lex_state = 375, .external_lex_state = 16}, + [2033] = {.lex_state = 388, .external_lex_state = 24}, + [2034] = {.lex_state = 375, .external_lex_state = 16}, + [2035] = {.lex_state = 395, .external_lex_state = 13}, + [2036] = {.lex_state = 395, .external_lex_state = 13}, + [2037] = {.lex_state = 395, .external_lex_state = 13}, + [2038] = {.lex_state = 375, .external_lex_state = 16}, + [2039] = {.lex_state = 411, .external_lex_state = 22}, + [2040] = {.lex_state = 411, .external_lex_state = 22}, + [2041] = {.lex_state = 203, .external_lex_state = 16}, + [2042] = {.lex_state = 375, .external_lex_state = 16}, + [2043] = {.lex_state = 395, .external_lex_state = 13}, + [2044] = {.lex_state = 375, .external_lex_state = 16}, + [2045] = {.lex_state = 395, .external_lex_state = 13}, + [2046] = {.lex_state = 375, .external_lex_state = 16}, + [2047] = {.lex_state = 395, .external_lex_state = 13}, + [2048] = {.lex_state = 375, .external_lex_state = 16}, + [2049] = {.lex_state = 395, .external_lex_state = 13}, + [2050] = {.lex_state = 375, .external_lex_state = 16}, + [2051] = {.lex_state = 268, .external_lex_state = 20}, + [2052] = {.lex_state = 268, .external_lex_state = 20}, + [2053] = {.lex_state = 268, .external_lex_state = 20}, + [2054] = {.lex_state = 268, .external_lex_state = 20}, + [2055] = {.lex_state = 375, .external_lex_state = 16}, + [2056] = {.lex_state = 268, .external_lex_state = 20}, + [2057] = {.lex_state = 375, .external_lex_state = 16}, + [2058] = {.lex_state = 268, .external_lex_state = 20}, + [2059] = {.lex_state = 375, .external_lex_state = 16}, + [2060] = {.lex_state = 268, .external_lex_state = 20}, + [2061] = {.lex_state = 268, .external_lex_state = 20}, + [2062] = {.lex_state = 397, .external_lex_state = 10}, + [2063] = {.lex_state = 397, .external_lex_state = 10}, + [2064] = {.lex_state = 397, .external_lex_state = 10}, + [2065] = {.lex_state = 375, .external_lex_state = 16}, + [2066] = {.lex_state = 411, .external_lex_state = 22}, + [2067] = {.lex_state = 411, .external_lex_state = 22}, + [2068] = {.lex_state = 203, .external_lex_state = 16}, + [2069] = {.lex_state = 375, .external_lex_state = 16}, + [2070] = {.lex_state = 397, .external_lex_state = 10}, + [2071] = {.lex_state = 375, .external_lex_state = 16}, + [2072] = {.lex_state = 397, .external_lex_state = 10}, + [2073] = {.lex_state = 375, .external_lex_state = 16}, + [2074] = {.lex_state = 397, .external_lex_state = 10}, + [2075] = {.lex_state = 375, .external_lex_state = 16}, + [2076] = {.lex_state = 397, .external_lex_state = 10}, + [2077] = {.lex_state = 375, .external_lex_state = 16}, + [2078] = {.lex_state = 266, .external_lex_state = 9}, + [2079] = {.lex_state = 444, .external_lex_state = 8}, + [2080] = {.lex_state = 203}, + [2081] = {.lex_state = 203}, + [2082] = {.lex_state = 297, .external_lex_state = 12}, + [2083] = {.lex_state = 299}, + [2084] = {.lex_state = 203}, + [2085] = {.lex_state = 434, .external_lex_state = 14}, + [2086] = {.lex_state = 248}, + [2087] = {.lex_state = 255}, + [2088] = {.lex_state = 434, .external_lex_state = 14}, + [2089] = {.lex_state = 258, .external_lex_state = 6}, + [2090] = {.lex_state = 133, .external_lex_state = 2}, + [2091] = {.lex_state = 133, .external_lex_state = 2}, + [2092] = {.lex_state = 133, .external_lex_state = 2}, + [2093] = {.lex_state = 434, .external_lex_state = 3}, + [2094] = {.lex_state = 203}, + [2095] = {.lex_state = 434, .external_lex_state = 3}, + [2096] = {.lex_state = 434, .external_lex_state = 10}, + [2097] = {.lex_state = 248}, + [2098] = {.lex_state = 255}, + [2099] = {.lex_state = 434, .external_lex_state = 10}, + [2100] = {.lex_state = 258, .external_lex_state = 6}, + [2101] = {.lex_state = 133, .external_lex_state = 2}, + [2102] = {.lex_state = 133, .external_lex_state = 2}, + [2103] = {.lex_state = 133, .external_lex_state = 2}, + [2104] = {.lex_state = 434, .external_lex_state = 4}, + [2105] = {.lex_state = 434, .external_lex_state = 4}, + [2106] = {.lex_state = 231}, + [2107] = {.lex_state = 440, .external_lex_state = 5}, + [2108] = {.lex_state = 440, .external_lex_state = 5}, + [2109] = {.lex_state = 248}, + [2110] = {.lex_state = 440, .external_lex_state = 5}, + [2111] = {.lex_state = 440, .external_lex_state = 5}, + [2112] = {.lex_state = 440, .external_lex_state = 5}, + [2113] = {.lex_state = 203}, + [2114] = {.lex_state = 308, .external_lex_state = 16}, + [2115] = {.lex_state = 316, .external_lex_state = 6}, + [2116] = {.lex_state = 308, .external_lex_state = 16}, + [2117] = {.lex_state = 308, .external_lex_state = 16}, + [2118] = {.lex_state = 203}, + [2119] = {.lex_state = 322, .external_lex_state = 2}, + [2120] = {.lex_state = 203}, + [2121] = {.lex_state = 330, .external_lex_state = 2}, + [2122] = {.lex_state = 203}, + [2123] = {.lex_state = 322, .external_lex_state = 2}, + [2124] = {.lex_state = 203}, + [2125] = {.lex_state = 133, .external_lex_state = 2}, + [2126] = {.lex_state = 425, .external_lex_state = 2}, + [2127] = {.lex_state = 133, .external_lex_state = 2}, + [2128] = {.lex_state = 425, .external_lex_state = 2}, + [2129] = {.lex_state = 133}, + [2130] = {.lex_state = 277}, + [2131] = {.lex_state = 231}, + [2132] = {.lex_state = 231}, + [2133] = {.lex_state = 440, .external_lex_state = 5}, + [2134] = {.lex_state = 440, .external_lex_state = 5}, + [2135] = {.lex_state = 440, .external_lex_state = 7}, + [2136] = {.lex_state = 446, .external_lex_state = 7}, + [2137] = {.lex_state = 440, .external_lex_state = 7}, + [2138] = {.lex_state = 401}, + [2139] = {.lex_state = 364, .external_lex_state = 4}, + [2140] = {.lex_state = 444, .external_lex_state = 8}, + [2141] = {.lex_state = 425, .external_lex_state = 2}, + [2142] = {.lex_state = 440, .external_lex_state = 7}, + [2143] = {.lex_state = 425, .external_lex_state = 2}, + [2144] = {.lex_state = 425, .external_lex_state = 2}, + [2145] = {.lex_state = 401}, + [2146] = {.lex_state = 364, .external_lex_state = 4}, + [2147] = {.lex_state = 444, .external_lex_state = 8}, + [2148] = {.lex_state = 425, .external_lex_state = 2}, + [2149] = {.lex_state = 332, .external_lex_state = 2}, + [2150] = {.lex_state = 228}, + [2151] = {.lex_state = 332, .external_lex_state = 2}, + [2152] = {.lex_state = 228}, + [2153] = {.lex_state = 364, .external_lex_state = 4}, + [2154] = {.lex_state = 364, .external_lex_state = 4}, + [2155] = {.lex_state = 270, .external_lex_state = 10}, + [2156] = {.lex_state = 270, .external_lex_state = 10}, + [2157] = {.lex_state = 270, .external_lex_state = 10}, + [2158] = {.lex_state = 428, .external_lex_state = 10}, + [2159] = {.lex_state = 297, .external_lex_state = 11}, + [2160] = {.lex_state = 297, .external_lex_state = 11}, + [2161] = {.lex_state = 297, .external_lex_state = 11}, + [2162] = {.lex_state = 371, .external_lex_state = 13}, + [2163] = {.lex_state = 371, .external_lex_state = 13}, + [2164] = {.lex_state = 371, .external_lex_state = 13}, + [2165] = {.lex_state = 273, .external_lex_state = 14}, + [2166] = {.lex_state = 273, .external_lex_state = 14}, + [2167] = {.lex_state = 273, .external_lex_state = 14}, + [2168] = {.lex_state = 273, .external_lex_state = 10}, + [2169] = {.lex_state = 273, .external_lex_state = 10}, + [2170] = {.lex_state = 273, .external_lex_state = 10}, + [2171] = {.lex_state = 322, .external_lex_state = 15}, + [2172] = {.lex_state = 322, .external_lex_state = 15}, + [2173] = {.lex_state = 322, .external_lex_state = 15}, + [2174] = {.lex_state = 248, .external_lex_state = 13}, + [2175] = {.lex_state = 248, .external_lex_state = 13}, + [2176] = {.lex_state = 248, .external_lex_state = 13}, + [2177] = {.lex_state = 411, .external_lex_state = 22}, + [2178] = {.lex_state = 411, .external_lex_state = 22}, + [2179] = {.lex_state = 411, .external_lex_state = 22}, + [2180] = {.lex_state = 375, .external_lex_state = 16}, + [2181] = {.lex_state = 411, .external_lex_state = 22}, + [2182] = {.lex_state = 411, .external_lex_state = 22}, + [2183] = {.lex_state = 203, .external_lex_state = 16}, + [2184] = {.lex_state = 375, .external_lex_state = 16}, + [2185] = {.lex_state = 411, .external_lex_state = 22}, + [2186] = {.lex_state = 375, .external_lex_state = 16}, + [2187] = {.lex_state = 411, .external_lex_state = 22}, + [2188] = {.lex_state = 375, .external_lex_state = 16}, + [2189] = {.lex_state = 411, .external_lex_state = 22}, + [2190] = {.lex_state = 375, .external_lex_state = 16}, + [2191] = {.lex_state = 411, .external_lex_state = 22}, + [2192] = {.lex_state = 375, .external_lex_state = 16}, + [2193] = {.lex_state = 375, .external_lex_state = 22}, + [2194] = {.lex_state = 375, .external_lex_state = 22}, + [2195] = {.lex_state = 375, .external_lex_state = 22}, + [2196] = {.lex_state = 375, .external_lex_state = 22}, + [2197] = {.lex_state = 375, .external_lex_state = 16}, + [2198] = {.lex_state = 375, .external_lex_state = 22}, + [2199] = {.lex_state = 375, .external_lex_state = 16}, + [2200] = {.lex_state = 375, .external_lex_state = 22}, + [2201] = {.lex_state = 375, .external_lex_state = 16}, + [2202] = {.lex_state = 375, .external_lex_state = 22}, + [2203] = {.lex_state = 375, .external_lex_state = 22}, + [2204] = {.lex_state = 203}, + [2205] = {.lex_state = 203}, + [2206] = {.lex_state = 203}, + [2207] = {.lex_state = 203}, + [2208] = {.lex_state = 203}, + [2209] = {.lex_state = 430, .external_lex_state = 13}, + [2210] = {.lex_state = 318, .external_lex_state = 23}, + [2211] = {.lex_state = 318, .external_lex_state = 23}, + [2212] = {.lex_state = 318, .external_lex_state = 23}, + [2213] = {.lex_state = 318, .external_lex_state = 23}, + [2214] = {.lex_state = 375, .external_lex_state = 16}, + [2215] = {.lex_state = 318, .external_lex_state = 23}, + [2216] = {.lex_state = 375, .external_lex_state = 16}, + [2217] = {.lex_state = 318, .external_lex_state = 23}, + [2218] = {.lex_state = 375, .external_lex_state = 16}, + [2219] = {.lex_state = 318, .external_lex_state = 23}, + [2220] = {.lex_state = 318, .external_lex_state = 23}, + [2221] = {.lex_state = 318, .external_lex_state = 13}, + [2222] = {.lex_state = 318, .external_lex_state = 13}, + [2223] = {.lex_state = 318, .external_lex_state = 13}, + [2224] = {.lex_state = 318, .external_lex_state = 13}, + [2225] = {.lex_state = 375, .external_lex_state = 16}, + [2226] = {.lex_state = 318, .external_lex_state = 13}, + [2227] = {.lex_state = 375, .external_lex_state = 16}, + [2228] = {.lex_state = 318, .external_lex_state = 13}, + [2229] = {.lex_state = 375, .external_lex_state = 16}, + [2230] = {.lex_state = 318, .external_lex_state = 13}, + [2231] = {.lex_state = 318, .external_lex_state = 13}, + [2232] = {.lex_state = 233, .external_lex_state = 17}, + [2233] = {.lex_state = 233, .external_lex_state = 17}, + [2234] = {.lex_state = 233, .external_lex_state = 17}, + [2235] = {.lex_state = 432, .external_lex_state = 13}, + [2236] = {.lex_state = 388, .external_lex_state = 24}, + [2237] = {.lex_state = 388, .external_lex_state = 24}, + [2238] = {.lex_state = 388, .external_lex_state = 24}, + [2239] = {.lex_state = 375, .external_lex_state = 16}, + [2240] = {.lex_state = 411, .external_lex_state = 22}, + [2241] = {.lex_state = 411, .external_lex_state = 22}, + [2242] = {.lex_state = 203, .external_lex_state = 16}, + [2243] = {.lex_state = 375, .external_lex_state = 16}, + [2244] = {.lex_state = 388, .external_lex_state = 24}, + [2245] = {.lex_state = 375, .external_lex_state = 16}, + [2246] = {.lex_state = 388, .external_lex_state = 24}, + [2247] = {.lex_state = 375, .external_lex_state = 16}, + [2248] = {.lex_state = 388, .external_lex_state = 24}, + [2249] = {.lex_state = 375, .external_lex_state = 16}, + [2250] = {.lex_state = 388, .external_lex_state = 24}, + [2251] = {.lex_state = 375, .external_lex_state = 16}, + [2252] = {.lex_state = 395, .external_lex_state = 13}, + [2253] = {.lex_state = 395, .external_lex_state = 13}, + [2254] = {.lex_state = 395, .external_lex_state = 13}, + [2255] = {.lex_state = 395, .external_lex_state = 13}, + [2256] = {.lex_state = 375, .external_lex_state = 16}, + [2257] = {.lex_state = 395, .external_lex_state = 13}, + [2258] = {.lex_state = 375, .external_lex_state = 16}, + [2259] = {.lex_state = 395, .external_lex_state = 13}, + [2260] = {.lex_state = 375, .external_lex_state = 16}, + [2261] = {.lex_state = 395, .external_lex_state = 13}, + [2262] = {.lex_state = 395, .external_lex_state = 13}, + [2263] = {.lex_state = 268, .external_lex_state = 20}, + [2264] = {.lex_state = 268, .external_lex_state = 20}, + [2265] = {.lex_state = 268, .external_lex_state = 20}, + [2266] = {.lex_state = 397, .external_lex_state = 10}, + [2267] = {.lex_state = 397, .external_lex_state = 10}, + [2268] = {.lex_state = 397, .external_lex_state = 10}, + [2269] = {.lex_state = 397, .external_lex_state = 10}, + [2270] = {.lex_state = 375, .external_lex_state = 16}, + [2271] = {.lex_state = 397, .external_lex_state = 10}, + [2272] = {.lex_state = 375, .external_lex_state = 16}, + [2273] = {.lex_state = 397, .external_lex_state = 10}, + [2274] = {.lex_state = 375, .external_lex_state = 16}, + [2275] = {.lex_state = 397, .external_lex_state = 10}, + [2276] = {.lex_state = 397, .external_lex_state = 10}, + [2277] = {.lex_state = 444, .external_lex_state = 8}, + [2278] = {.lex_state = 322}, + [2279] = {.lex_state = 444, .external_lex_state = 20}, + [2280] = {.lex_state = 248}, + [2281] = {.lex_state = 255}, + [2282] = {.lex_state = 444, .external_lex_state = 20}, + [2283] = {.lex_state = 258, .external_lex_state = 6}, + [2284] = {.lex_state = 133, .external_lex_state = 2}, + [2285] = {.lex_state = 133, .external_lex_state = 2}, + [2286] = {.lex_state = 133, .external_lex_state = 2}, + [2287] = {.lex_state = 446, .external_lex_state = 7}, + [2288] = {.lex_state = 203}, + [2289] = {.lex_state = 448, .external_lex_state = 7}, + [2290] = {.lex_state = 446, .external_lex_state = 7}, + [2291] = {.lex_state = 266, .external_lex_state = 9}, + [2292] = {.lex_state = 434, .external_lex_state = 3}, + [2293] = {.lex_state = 231}, + [2294] = {.lex_state = 434, .external_lex_state = 14}, + [2295] = {.lex_state = 434, .external_lex_state = 14}, + [2296] = {.lex_state = 248}, + [2297] = {.lex_state = 434, .external_lex_state = 14}, + [2298] = {.lex_state = 434, .external_lex_state = 14}, + [2299] = {.lex_state = 434, .external_lex_state = 14}, + [2300] = {.lex_state = 203}, + [2301] = {.lex_state = 308, .external_lex_state = 16}, + [2302] = {.lex_state = 316, .external_lex_state = 6}, + [2303] = {.lex_state = 308, .external_lex_state = 16}, + [2304] = {.lex_state = 308, .external_lex_state = 16}, + [2305] = {.lex_state = 203}, + [2306] = {.lex_state = 322, .external_lex_state = 2}, + [2307] = {.lex_state = 203}, + [2308] = {.lex_state = 330, .external_lex_state = 2}, + [2309] = {.lex_state = 203}, + [2310] = {.lex_state = 322, .external_lex_state = 2}, + [2311] = {.lex_state = 434, .external_lex_state = 3}, + [2312] = {.lex_state = 231}, + [2313] = {.lex_state = 434, .external_lex_state = 10}, + [2314] = {.lex_state = 434, .external_lex_state = 10}, + [2315] = {.lex_state = 248}, + [2316] = {.lex_state = 434, .external_lex_state = 10}, + [2317] = {.lex_state = 434, .external_lex_state = 10}, + [2318] = {.lex_state = 434, .external_lex_state = 10}, + [2319] = {.lex_state = 203}, + [2320] = {.lex_state = 308, .external_lex_state = 16}, + [2321] = {.lex_state = 316, .external_lex_state = 6}, + [2322] = {.lex_state = 308, .external_lex_state = 16}, + [2323] = {.lex_state = 308, .external_lex_state = 16}, + [2324] = {.lex_state = 203}, + [2325] = {.lex_state = 322, .external_lex_state = 2}, + [2326] = {.lex_state = 203}, + [2327] = {.lex_state = 330, .external_lex_state = 2}, + [2328] = {.lex_state = 203}, + [2329] = {.lex_state = 322, .external_lex_state = 2}, + [2330] = {.lex_state = 434, .external_lex_state = 4}, + [2331] = {.lex_state = 440, .external_lex_state = 5}, + [2332] = {.lex_state = 440, .external_lex_state = 5}, + [2333] = {.lex_state = 440, .external_lex_state = 5}, + [2334] = {.lex_state = 373, .external_lex_state = 16}, + [2335] = {.lex_state = 440, .external_lex_state = 5}, + [2336] = {.lex_state = 377}, + [2337] = {.lex_state = 375, .external_lex_state = 16}, + [2338] = {.lex_state = 203}, + [2339] = {.lex_state = 308, .external_lex_state = 16}, + [2340] = {.lex_state = 308, .external_lex_state = 16}, + [2341] = {.lex_state = 308, .external_lex_state = 16}, + [2342] = {.lex_state = 440, .external_lex_state = 5}, + [2343] = {.lex_state = 377}, + [2344] = {.lex_state = 375, .external_lex_state = 16}, + [2345] = {.lex_state = 440, .external_lex_state = 5}, + [2346] = {.lex_state = 377}, + [2347] = {.lex_state = 375, .external_lex_state = 16}, + [2348] = {.lex_state = 440, .external_lex_state = 5}, + [2349] = {.lex_state = 440, .external_lex_state = 5}, + [2350] = {.lex_state = 203}, + [2351] = {.lex_state = 444, .external_lex_state = 8}, + [2352] = {.lex_state = 364, .external_lex_state = 4}, + [2353] = {.lex_state = 444, .external_lex_state = 8}, + [2354] = {.lex_state = 231}, + [2355] = {.lex_state = 440, .external_lex_state = 5}, + [2356] = {.lex_state = 440, .external_lex_state = 5}, + [2357] = {.lex_state = 440, .external_lex_state = 7}, + [2358] = {.lex_state = 446, .external_lex_state = 5}, + [2359] = {.lex_state = 248}, + [2360] = {.lex_state = 255}, + [2361] = {.lex_state = 446, .external_lex_state = 5}, + [2362] = {.lex_state = 258, .external_lex_state = 6}, + [2363] = {.lex_state = 133, .external_lex_state = 2}, + [2364] = {.lex_state = 133, .external_lex_state = 2}, + [2365] = {.lex_state = 133, .external_lex_state = 2}, + [2366] = {.lex_state = 446, .external_lex_state = 5}, + [2367] = {.lex_state = 446, .external_lex_state = 5}, + [2368] = {.lex_state = 446, .external_lex_state = 7}, + [2369] = {.lex_state = 446, .external_lex_state = 7}, + [2370] = {.lex_state = 440, .external_lex_state = 7}, + [2371] = {.lex_state = 425, .external_lex_state = 2}, + [2372] = {.lex_state = 239, .external_lex_state = 4}, + [2373] = {.lex_state = 262, .external_lex_state = 8}, + [2374] = {.lex_state = 440, .external_lex_state = 7}, + [2375] = {.lex_state = 401}, + [2376] = {.lex_state = 364, .external_lex_state = 4}, + [2377] = {.lex_state = 444, .external_lex_state = 8}, + [2378] = {.lex_state = 425, .external_lex_state = 2}, + [2379] = {.lex_state = 401}, + [2380] = {.lex_state = 364, .external_lex_state = 4}, + [2381] = {.lex_state = 444, .external_lex_state = 8}, + [2382] = {.lex_state = 231}, + [2383] = {.lex_state = 239, .external_lex_state = 4}, + [2384] = {.lex_state = 262, .external_lex_state = 8}, + [2385] = {.lex_state = 332, .external_lex_state = 2}, + [2386] = {.lex_state = 332, .external_lex_state = 2}, + [2387] = {.lex_state = 231}, + [2388] = {.lex_state = 239, .external_lex_state = 4}, + [2389] = {.lex_state = 262, .external_lex_state = 8}, + [2390] = {.lex_state = 332, .external_lex_state = 2}, + [2391] = {.lex_state = 332, .external_lex_state = 2}, + [2392] = {.lex_state = 411, .external_lex_state = 22}, + [2393] = {.lex_state = 411, .external_lex_state = 22}, + [2394] = {.lex_state = 411, .external_lex_state = 22}, + [2395] = {.lex_state = 411, .external_lex_state = 22}, + [2396] = {.lex_state = 375, .external_lex_state = 16}, + [2397] = {.lex_state = 411, .external_lex_state = 22}, + [2398] = {.lex_state = 375, .external_lex_state = 16}, + [2399] = {.lex_state = 411, .external_lex_state = 22}, + [2400] = {.lex_state = 375, .external_lex_state = 16}, + [2401] = {.lex_state = 411, .external_lex_state = 22}, + [2402] = {.lex_state = 411, .external_lex_state = 22}, + [2403] = {.lex_state = 375, .external_lex_state = 22}, + [2404] = {.lex_state = 375, .external_lex_state = 22}, + [2405] = {.lex_state = 375, .external_lex_state = 22}, + [2406] = {.lex_state = 203}, + [2407] = {.lex_state = 203}, + [2408] = {.lex_state = 318, .external_lex_state = 23}, + [2409] = {.lex_state = 318, .external_lex_state = 23}, + [2410] = {.lex_state = 318, .external_lex_state = 23}, + [2411] = {.lex_state = 318, .external_lex_state = 13}, + [2412] = {.lex_state = 318, .external_lex_state = 13}, + [2413] = {.lex_state = 318, .external_lex_state = 13}, + [2414] = {.lex_state = 388, .external_lex_state = 24}, + [2415] = {.lex_state = 388, .external_lex_state = 24}, + [2416] = {.lex_state = 388, .external_lex_state = 24}, + [2417] = {.lex_state = 388, .external_lex_state = 24}, + [2418] = {.lex_state = 375, .external_lex_state = 16}, + [2419] = {.lex_state = 388, .external_lex_state = 24}, + [2420] = {.lex_state = 375, .external_lex_state = 16}, + [2421] = {.lex_state = 388, .external_lex_state = 24}, + [2422] = {.lex_state = 375, .external_lex_state = 16}, + [2423] = {.lex_state = 388, .external_lex_state = 24}, + [2424] = {.lex_state = 388, .external_lex_state = 24}, + [2425] = {.lex_state = 395, .external_lex_state = 13}, + [2426] = {.lex_state = 395, .external_lex_state = 13}, + [2427] = {.lex_state = 395, .external_lex_state = 13}, + [2428] = {.lex_state = 397, .external_lex_state = 10}, + [2429] = {.lex_state = 397, .external_lex_state = 10}, + [2430] = {.lex_state = 397, .external_lex_state = 10}, + [2431] = {.lex_state = 444, .external_lex_state = 8}, + [2432] = {.lex_state = 322}, + [2433] = {.lex_state = 231}, + [2434] = {.lex_state = 444, .external_lex_state = 20}, + [2435] = {.lex_state = 444, .external_lex_state = 20}, + [2436] = {.lex_state = 248}, + [2437] = {.lex_state = 444, .external_lex_state = 20}, + [2438] = {.lex_state = 444, .external_lex_state = 20}, + [2439] = {.lex_state = 444, .external_lex_state = 20}, + [2440] = {.lex_state = 203}, + [2441] = {.lex_state = 308, .external_lex_state = 16}, + [2442] = {.lex_state = 316, .external_lex_state = 6}, + [2443] = {.lex_state = 308, .external_lex_state = 16}, + [2444] = {.lex_state = 308, .external_lex_state = 16}, + [2445] = {.lex_state = 203}, + [2446] = {.lex_state = 322, .external_lex_state = 2}, + [2447] = {.lex_state = 203}, + [2448] = {.lex_state = 330, .external_lex_state = 2}, + [2449] = {.lex_state = 203}, + [2450] = {.lex_state = 322, .external_lex_state = 2}, + [2451] = {.lex_state = 446, .external_lex_state = 7}, + [2452] = {.lex_state = 203}, + [2453] = {.lex_state = 133}, + [2454] = {.lex_state = 231}, + [2455] = {.lex_state = 446, .external_lex_state = 7}, + [2456] = {.lex_state = 434, .external_lex_state = 3}, + [2457] = {.lex_state = 322}, + [2458] = {.lex_state = 434, .external_lex_state = 14}, + [2459] = {.lex_state = 434, .external_lex_state = 14}, + [2460] = {.lex_state = 434, .external_lex_state = 14}, + [2461] = {.lex_state = 434, .external_lex_state = 14}, + [2462] = {.lex_state = 434, .external_lex_state = 14}, + [2463] = {.lex_state = 373, .external_lex_state = 16}, + [2464] = {.lex_state = 434, .external_lex_state = 14}, + [2465] = {.lex_state = 377}, + [2466] = {.lex_state = 375, .external_lex_state = 16}, + [2467] = {.lex_state = 203}, + [2468] = {.lex_state = 308, .external_lex_state = 16}, + [2469] = {.lex_state = 308, .external_lex_state = 16}, + [2470] = {.lex_state = 308, .external_lex_state = 16}, + [2471] = {.lex_state = 434, .external_lex_state = 14}, + [2472] = {.lex_state = 377}, + [2473] = {.lex_state = 375, .external_lex_state = 16}, + [2474] = {.lex_state = 434, .external_lex_state = 14}, + [2475] = {.lex_state = 377}, + [2476] = {.lex_state = 375, .external_lex_state = 16}, + [2477] = {.lex_state = 434, .external_lex_state = 14}, + [2478] = {.lex_state = 434, .external_lex_state = 14}, + [2479] = {.lex_state = 434, .external_lex_state = 10}, + [2480] = {.lex_state = 434, .external_lex_state = 10}, + [2481] = {.lex_state = 434, .external_lex_state = 10}, + [2482] = {.lex_state = 373, .external_lex_state = 16}, + [2483] = {.lex_state = 434, .external_lex_state = 10}, + [2484] = {.lex_state = 377}, + [2485] = {.lex_state = 375, .external_lex_state = 16}, + [2486] = {.lex_state = 203}, + [2487] = {.lex_state = 308, .external_lex_state = 16}, + [2488] = {.lex_state = 308, .external_lex_state = 16}, + [2489] = {.lex_state = 308, .external_lex_state = 16}, + [2490] = {.lex_state = 434, .external_lex_state = 10}, + [2491] = {.lex_state = 377}, + [2492] = {.lex_state = 375, .external_lex_state = 16}, + [2493] = {.lex_state = 434, .external_lex_state = 10}, + [2494] = {.lex_state = 377}, + [2495] = {.lex_state = 375, .external_lex_state = 16}, + [2496] = {.lex_state = 434, .external_lex_state = 10}, + [2497] = {.lex_state = 434, .external_lex_state = 10}, + [2498] = {.lex_state = 440, .external_lex_state = 5}, + [2499] = {.lex_state = 411, .external_lex_state = 22}, + [2500] = {.lex_state = 411, .external_lex_state = 22}, + [2501] = {.lex_state = 203, .external_lex_state = 16}, + [2502] = {.lex_state = 375, .external_lex_state = 16}, + [2503] = {.lex_state = 440, .external_lex_state = 5}, + [2504] = {.lex_state = 373, .external_lex_state = 16}, + [2505] = {.lex_state = 440, .external_lex_state = 5}, + [2506] = {.lex_state = 377}, + [2507] = {.lex_state = 375, .external_lex_state = 16}, + [2508] = {.lex_state = 440, .external_lex_state = 5}, + [2509] = {.lex_state = 377}, + [2510] = {.lex_state = 375, .external_lex_state = 16}, + [2511] = {.lex_state = 377}, + [2512] = {.lex_state = 375, .external_lex_state = 16}, + [2513] = {.lex_state = 375, .external_lex_state = 16}, + [2514] = {.lex_state = 440, .external_lex_state = 5}, + [2515] = {.lex_state = 375, .external_lex_state = 16}, + [2516] = {.lex_state = 448, .external_lex_state = 7}, + [2517] = {.lex_state = 446, .external_lex_state = 5}, + [2518] = {.lex_state = 446, .external_lex_state = 5}, + [2519] = {.lex_state = 231}, + [2520] = {.lex_state = 446, .external_lex_state = 5}, + [2521] = {.lex_state = 446, .external_lex_state = 5}, + [2522] = {.lex_state = 248}, + [2523] = {.lex_state = 446, .external_lex_state = 5}, + [2524] = {.lex_state = 446, .external_lex_state = 5}, + [2525] = {.lex_state = 446, .external_lex_state = 5}, + [2526] = {.lex_state = 203}, + [2527] = {.lex_state = 308, .external_lex_state = 16}, + [2528] = {.lex_state = 316, .external_lex_state = 6}, + [2529] = {.lex_state = 308, .external_lex_state = 16}, + [2530] = {.lex_state = 308, .external_lex_state = 16}, + [2531] = {.lex_state = 203}, + [2532] = {.lex_state = 322, .external_lex_state = 2}, + [2533] = {.lex_state = 203}, + [2534] = {.lex_state = 330, .external_lex_state = 2}, + [2535] = {.lex_state = 203}, + [2536] = {.lex_state = 322, .external_lex_state = 2}, + [2537] = {.lex_state = 446, .external_lex_state = 7}, + [2538] = {.lex_state = 425, .external_lex_state = 2}, + [2539] = {.lex_state = 425, .external_lex_state = 2}, + [2540] = {.lex_state = 332, .external_lex_state = 2}, + [2541] = {.lex_state = 231}, + [2542] = {.lex_state = 239, .external_lex_state = 4}, + [2543] = {.lex_state = 262, .external_lex_state = 8}, + [2544] = {.lex_state = 332, .external_lex_state = 2}, + [2545] = {.lex_state = 332, .external_lex_state = 2}, + [2546] = {.lex_state = 332, .external_lex_state = 2}, + [2547] = {.lex_state = 231}, + [2548] = {.lex_state = 239, .external_lex_state = 4}, + [2549] = {.lex_state = 262, .external_lex_state = 8}, + [2550] = {.lex_state = 332, .external_lex_state = 2}, + [2551] = {.lex_state = 411, .external_lex_state = 22}, + [2552] = {.lex_state = 411, .external_lex_state = 22}, + [2553] = {.lex_state = 411, .external_lex_state = 22}, + [2554] = {.lex_state = 388, .external_lex_state = 24}, + [2555] = {.lex_state = 388, .external_lex_state = 24}, + [2556] = {.lex_state = 388, .external_lex_state = 24}, + [2557] = {.lex_state = 444, .external_lex_state = 8}, + [2558] = {.lex_state = 444, .external_lex_state = 20}, + [2559] = {.lex_state = 444, .external_lex_state = 20}, + [2560] = {.lex_state = 444, .external_lex_state = 20}, + [2561] = {.lex_state = 373, .external_lex_state = 16}, + [2562] = {.lex_state = 444, .external_lex_state = 20}, + [2563] = {.lex_state = 377}, + [2564] = {.lex_state = 375, .external_lex_state = 16}, + [2565] = {.lex_state = 203}, + [2566] = {.lex_state = 308, .external_lex_state = 16}, + [2567] = {.lex_state = 308, .external_lex_state = 16}, + [2568] = {.lex_state = 308, .external_lex_state = 16}, + [2569] = {.lex_state = 444, .external_lex_state = 20}, + [2570] = {.lex_state = 377}, + [2571] = {.lex_state = 375, .external_lex_state = 16}, + [2572] = {.lex_state = 444, .external_lex_state = 20}, + [2573] = {.lex_state = 377}, + [2574] = {.lex_state = 375, .external_lex_state = 16}, + [2575] = {.lex_state = 444, .external_lex_state = 20}, + [2576] = {.lex_state = 444, .external_lex_state = 20}, + [2577] = {.lex_state = 448, .external_lex_state = 7}, + [2578] = {.lex_state = 231}, + [2579] = {.lex_state = 450, .external_lex_state = 10}, + [2580] = {.lex_state = 248}, + [2581] = {.lex_state = 255}, + [2582] = {.lex_state = 450, .external_lex_state = 10}, + [2583] = {.lex_state = 258, .external_lex_state = 6}, + [2584] = {.lex_state = 133, .external_lex_state = 2}, + [2585] = {.lex_state = 133, .external_lex_state = 2}, + [2586] = {.lex_state = 133, .external_lex_state = 2}, + [2587] = {.lex_state = 434, .external_lex_state = 3}, + [2588] = {.lex_state = 322}, + [2589] = {.lex_state = 434, .external_lex_state = 14}, + [2590] = {.lex_state = 411, .external_lex_state = 22}, + [2591] = {.lex_state = 411, .external_lex_state = 22}, + [2592] = {.lex_state = 203, .external_lex_state = 16}, + [2593] = {.lex_state = 375, .external_lex_state = 16}, + [2594] = {.lex_state = 434, .external_lex_state = 14}, + [2595] = {.lex_state = 373, .external_lex_state = 16}, + [2596] = {.lex_state = 434, .external_lex_state = 14}, + [2597] = {.lex_state = 377}, + [2598] = {.lex_state = 375, .external_lex_state = 16}, + [2599] = {.lex_state = 434, .external_lex_state = 14}, + [2600] = {.lex_state = 377}, + [2601] = {.lex_state = 375, .external_lex_state = 16}, + [2602] = {.lex_state = 377}, + [2603] = {.lex_state = 375, .external_lex_state = 16}, + [2604] = {.lex_state = 375, .external_lex_state = 16}, + [2605] = {.lex_state = 434, .external_lex_state = 14}, + [2606] = {.lex_state = 375, .external_lex_state = 16}, + [2607] = {.lex_state = 434, .external_lex_state = 10}, + [2608] = {.lex_state = 411, .external_lex_state = 22}, + [2609] = {.lex_state = 411, .external_lex_state = 22}, + [2610] = {.lex_state = 203, .external_lex_state = 16}, + [2611] = {.lex_state = 375, .external_lex_state = 16}, + [2612] = {.lex_state = 434, .external_lex_state = 10}, + [2613] = {.lex_state = 373, .external_lex_state = 16}, + [2614] = {.lex_state = 434, .external_lex_state = 10}, + [2615] = {.lex_state = 377}, + [2616] = {.lex_state = 375, .external_lex_state = 16}, + [2617] = {.lex_state = 434, .external_lex_state = 10}, + [2618] = {.lex_state = 377}, + [2619] = {.lex_state = 375, .external_lex_state = 16}, + [2620] = {.lex_state = 377}, + [2621] = {.lex_state = 375, .external_lex_state = 16}, + [2622] = {.lex_state = 375, .external_lex_state = 16}, + [2623] = {.lex_state = 434, .external_lex_state = 10}, + [2624] = {.lex_state = 375, .external_lex_state = 16}, + [2625] = {.lex_state = 440, .external_lex_state = 5}, + [2626] = {.lex_state = 440, .external_lex_state = 5}, + [2627] = {.lex_state = 440, .external_lex_state = 5}, + [2628] = {.lex_state = 375, .external_lex_state = 16}, + [2629] = {.lex_state = 411, .external_lex_state = 22}, + [2630] = {.lex_state = 411, .external_lex_state = 22}, + [2631] = {.lex_state = 203, .external_lex_state = 16}, + [2632] = {.lex_state = 375, .external_lex_state = 16}, + [2633] = {.lex_state = 440, .external_lex_state = 5}, + [2634] = {.lex_state = 375, .external_lex_state = 16}, + [2635] = {.lex_state = 440, .external_lex_state = 5}, + [2636] = {.lex_state = 375, .external_lex_state = 16}, + [2637] = {.lex_state = 440, .external_lex_state = 5}, + [2638] = {.lex_state = 375, .external_lex_state = 16}, + [2639] = {.lex_state = 440, .external_lex_state = 5}, + [2640] = {.lex_state = 375, .external_lex_state = 16}, + [2641] = {.lex_state = 446, .external_lex_state = 5}, + [2642] = {.lex_state = 446, .external_lex_state = 5}, + [2643] = {.lex_state = 446, .external_lex_state = 5}, + [2644] = {.lex_state = 373, .external_lex_state = 16}, + [2645] = {.lex_state = 446, .external_lex_state = 5}, + [2646] = {.lex_state = 377}, + [2647] = {.lex_state = 375, .external_lex_state = 16}, + [2648] = {.lex_state = 203}, + [2649] = {.lex_state = 308, .external_lex_state = 16}, + [2650] = {.lex_state = 308, .external_lex_state = 16}, + [2651] = {.lex_state = 308, .external_lex_state = 16}, + [2652] = {.lex_state = 446, .external_lex_state = 5}, + [2653] = {.lex_state = 377}, + [2654] = {.lex_state = 375, .external_lex_state = 16}, + [2655] = {.lex_state = 446, .external_lex_state = 5}, + [2656] = {.lex_state = 377}, + [2657] = {.lex_state = 375, .external_lex_state = 16}, + [2658] = {.lex_state = 446, .external_lex_state = 5}, + [2659] = {.lex_state = 446, .external_lex_state = 5}, + [2660] = {.lex_state = 332, .external_lex_state = 2}, + [2661] = {.lex_state = 231}, + [2662] = {.lex_state = 239, .external_lex_state = 4}, + [2663] = {.lex_state = 262, .external_lex_state = 8}, + [2664] = {.lex_state = 332, .external_lex_state = 2}, + [2665] = {.lex_state = 231}, + [2666] = {.lex_state = 239, .external_lex_state = 4}, + [2667] = {.lex_state = 262, .external_lex_state = 8}, + [2668] = {.lex_state = 444, .external_lex_state = 20}, + [2669] = {.lex_state = 411, .external_lex_state = 22}, + [2670] = {.lex_state = 411, .external_lex_state = 22}, + [2671] = {.lex_state = 203, .external_lex_state = 16}, + [2672] = {.lex_state = 375, .external_lex_state = 16}, + [2673] = {.lex_state = 444, .external_lex_state = 20}, + [2674] = {.lex_state = 373, .external_lex_state = 16}, + [2675] = {.lex_state = 444, .external_lex_state = 20}, + [2676] = {.lex_state = 377}, + [2677] = {.lex_state = 375, .external_lex_state = 16}, + [2678] = {.lex_state = 444, .external_lex_state = 20}, + [2679] = {.lex_state = 377}, + [2680] = {.lex_state = 375, .external_lex_state = 16}, + [2681] = {.lex_state = 377}, + [2682] = {.lex_state = 375, .external_lex_state = 16}, + [2683] = {.lex_state = 375, .external_lex_state = 16}, + [2684] = {.lex_state = 444, .external_lex_state = 20}, + [2685] = {.lex_state = 375, .external_lex_state = 16}, + [2686] = {.lex_state = 450, .external_lex_state = 10}, + [2687] = {.lex_state = 450, .external_lex_state = 10}, + [2688] = {.lex_state = 231}, + [2689] = {.lex_state = 450, .external_lex_state = 10}, + [2690] = {.lex_state = 450, .external_lex_state = 10}, + [2691] = {.lex_state = 248}, + [2692] = {.lex_state = 450, .external_lex_state = 10}, + [2693] = {.lex_state = 450, .external_lex_state = 10}, + [2694] = {.lex_state = 450, .external_lex_state = 10}, + [2695] = {.lex_state = 203}, + [2696] = {.lex_state = 308, .external_lex_state = 16}, + [2697] = {.lex_state = 316, .external_lex_state = 6}, + [2698] = {.lex_state = 308, .external_lex_state = 16}, + [2699] = {.lex_state = 308, .external_lex_state = 16}, + [2700] = {.lex_state = 203}, + [2701] = {.lex_state = 322, .external_lex_state = 2}, + [2702] = {.lex_state = 203}, + [2703] = {.lex_state = 330, .external_lex_state = 2}, + [2704] = {.lex_state = 203}, + [2705] = {.lex_state = 322, .external_lex_state = 2}, + [2706] = {.lex_state = 434, .external_lex_state = 3}, + [2707] = {.lex_state = 434, .external_lex_state = 14}, + [2708] = {.lex_state = 434, .external_lex_state = 14}, + [2709] = {.lex_state = 434, .external_lex_state = 14}, + [2710] = {.lex_state = 375, .external_lex_state = 16}, + [2711] = {.lex_state = 411, .external_lex_state = 22}, + [2712] = {.lex_state = 411, .external_lex_state = 22}, + [2713] = {.lex_state = 203, .external_lex_state = 16}, + [2714] = {.lex_state = 375, .external_lex_state = 16}, + [2715] = {.lex_state = 434, .external_lex_state = 14}, + [2716] = {.lex_state = 375, .external_lex_state = 16}, + [2717] = {.lex_state = 434, .external_lex_state = 14}, + [2718] = {.lex_state = 375, .external_lex_state = 16}, + [2719] = {.lex_state = 434, .external_lex_state = 14}, + [2720] = {.lex_state = 375, .external_lex_state = 16}, + [2721] = {.lex_state = 434, .external_lex_state = 14}, + [2722] = {.lex_state = 375, .external_lex_state = 16}, + [2723] = {.lex_state = 434, .external_lex_state = 10}, + [2724] = {.lex_state = 434, .external_lex_state = 10}, + [2725] = {.lex_state = 434, .external_lex_state = 10}, + [2726] = {.lex_state = 375, .external_lex_state = 16}, + [2727] = {.lex_state = 411, .external_lex_state = 22}, + [2728] = {.lex_state = 411, .external_lex_state = 22}, + [2729] = {.lex_state = 203, .external_lex_state = 16}, + [2730] = {.lex_state = 375, .external_lex_state = 16}, + [2731] = {.lex_state = 434, .external_lex_state = 10}, + [2732] = {.lex_state = 375, .external_lex_state = 16}, + [2733] = {.lex_state = 434, .external_lex_state = 10}, + [2734] = {.lex_state = 375, .external_lex_state = 16}, + [2735] = {.lex_state = 434, .external_lex_state = 10}, + [2736] = {.lex_state = 375, .external_lex_state = 16}, + [2737] = {.lex_state = 434, .external_lex_state = 10}, + [2738] = {.lex_state = 375, .external_lex_state = 16}, + [2739] = {.lex_state = 440, .external_lex_state = 5}, + [2740] = {.lex_state = 440, .external_lex_state = 5}, + [2741] = {.lex_state = 440, .external_lex_state = 5}, + [2742] = {.lex_state = 440, .external_lex_state = 5}, + [2743] = {.lex_state = 375, .external_lex_state = 16}, + [2744] = {.lex_state = 440, .external_lex_state = 5}, + [2745] = {.lex_state = 375, .external_lex_state = 16}, + [2746] = {.lex_state = 440, .external_lex_state = 5}, + [2747] = {.lex_state = 375, .external_lex_state = 16}, + [2748] = {.lex_state = 440, .external_lex_state = 5}, + [2749] = {.lex_state = 440, .external_lex_state = 5}, + [2750] = {.lex_state = 446, .external_lex_state = 5}, + [2751] = {.lex_state = 411, .external_lex_state = 22}, + [2752] = {.lex_state = 411, .external_lex_state = 22}, + [2753] = {.lex_state = 203, .external_lex_state = 16}, + [2754] = {.lex_state = 375, .external_lex_state = 16}, + [2755] = {.lex_state = 446, .external_lex_state = 5}, + [2756] = {.lex_state = 373, .external_lex_state = 16}, + [2757] = {.lex_state = 446, .external_lex_state = 5}, + [2758] = {.lex_state = 377}, + [2759] = {.lex_state = 375, .external_lex_state = 16}, + [2760] = {.lex_state = 446, .external_lex_state = 5}, + [2761] = {.lex_state = 377}, + [2762] = {.lex_state = 375, .external_lex_state = 16}, + [2763] = {.lex_state = 377}, + [2764] = {.lex_state = 375, .external_lex_state = 16}, + [2765] = {.lex_state = 375, .external_lex_state = 16}, + [2766] = {.lex_state = 446, .external_lex_state = 5}, + [2767] = {.lex_state = 375, .external_lex_state = 16}, + [2768] = {.lex_state = 332, .external_lex_state = 2}, + [2769] = {.lex_state = 332, .external_lex_state = 2}, + [2770] = {.lex_state = 444, .external_lex_state = 20}, + [2771] = {.lex_state = 444, .external_lex_state = 20}, + [2772] = {.lex_state = 444, .external_lex_state = 20}, + [2773] = {.lex_state = 375, .external_lex_state = 16}, + [2774] = {.lex_state = 411, .external_lex_state = 22}, + [2775] = {.lex_state = 411, .external_lex_state = 22}, + [2776] = {.lex_state = 203, .external_lex_state = 16}, + [2777] = {.lex_state = 375, .external_lex_state = 16}, + [2778] = {.lex_state = 444, .external_lex_state = 20}, + [2779] = {.lex_state = 375, .external_lex_state = 16}, + [2780] = {.lex_state = 444, .external_lex_state = 20}, + [2781] = {.lex_state = 375, .external_lex_state = 16}, + [2782] = {.lex_state = 444, .external_lex_state = 20}, + [2783] = {.lex_state = 375, .external_lex_state = 16}, + [2784] = {.lex_state = 444, .external_lex_state = 20}, + [2785] = {.lex_state = 375, .external_lex_state = 16}, + [2786] = {.lex_state = 450, .external_lex_state = 10}, + [2787] = {.lex_state = 450, .external_lex_state = 10}, + [2788] = {.lex_state = 450, .external_lex_state = 10}, + [2789] = {.lex_state = 373, .external_lex_state = 16}, + [2790] = {.lex_state = 450, .external_lex_state = 10}, + [2791] = {.lex_state = 377}, + [2792] = {.lex_state = 375, .external_lex_state = 16}, + [2793] = {.lex_state = 203}, + [2794] = {.lex_state = 308, .external_lex_state = 16}, + [2795] = {.lex_state = 308, .external_lex_state = 16}, + [2796] = {.lex_state = 308, .external_lex_state = 16}, + [2797] = {.lex_state = 450, .external_lex_state = 10}, + [2798] = {.lex_state = 377}, + [2799] = {.lex_state = 375, .external_lex_state = 16}, + [2800] = {.lex_state = 450, .external_lex_state = 10}, + [2801] = {.lex_state = 377}, + [2802] = {.lex_state = 375, .external_lex_state = 16}, + [2803] = {.lex_state = 450, .external_lex_state = 10}, + [2804] = {.lex_state = 450, .external_lex_state = 10}, + [2805] = {.lex_state = 434, .external_lex_state = 14}, + [2806] = {.lex_state = 434, .external_lex_state = 14}, + [2807] = {.lex_state = 434, .external_lex_state = 14}, + [2808] = {.lex_state = 434, .external_lex_state = 14}, + [2809] = {.lex_state = 375, .external_lex_state = 16}, + [2810] = {.lex_state = 434, .external_lex_state = 14}, + [2811] = {.lex_state = 375, .external_lex_state = 16}, + [2812] = {.lex_state = 434, .external_lex_state = 14}, + [2813] = {.lex_state = 375, .external_lex_state = 16}, + [2814] = {.lex_state = 434, .external_lex_state = 14}, + [2815] = {.lex_state = 434, .external_lex_state = 14}, + [2816] = {.lex_state = 434, .external_lex_state = 10}, + [2817] = {.lex_state = 434, .external_lex_state = 10}, + [2818] = {.lex_state = 434, .external_lex_state = 10}, + [2819] = {.lex_state = 434, .external_lex_state = 10}, + [2820] = {.lex_state = 375, .external_lex_state = 16}, + [2821] = {.lex_state = 434, .external_lex_state = 10}, + [2822] = {.lex_state = 375, .external_lex_state = 16}, + [2823] = {.lex_state = 434, .external_lex_state = 10}, + [2824] = {.lex_state = 375, .external_lex_state = 16}, + [2825] = {.lex_state = 434, .external_lex_state = 10}, + [2826] = {.lex_state = 434, .external_lex_state = 10}, + [2827] = {.lex_state = 440, .external_lex_state = 5}, + [2828] = {.lex_state = 440, .external_lex_state = 5}, + [2829] = {.lex_state = 440, .external_lex_state = 5}, + [2830] = {.lex_state = 446, .external_lex_state = 5}, + [2831] = {.lex_state = 446, .external_lex_state = 5}, + [2832] = {.lex_state = 446, .external_lex_state = 5}, + [2833] = {.lex_state = 375, .external_lex_state = 16}, + [2834] = {.lex_state = 411, .external_lex_state = 22}, + [2835] = {.lex_state = 411, .external_lex_state = 22}, + [2836] = {.lex_state = 203, .external_lex_state = 16}, + [2837] = {.lex_state = 375, .external_lex_state = 16}, + [2838] = {.lex_state = 446, .external_lex_state = 5}, + [2839] = {.lex_state = 375, .external_lex_state = 16}, + [2840] = {.lex_state = 446, .external_lex_state = 5}, + [2841] = {.lex_state = 375, .external_lex_state = 16}, + [2842] = {.lex_state = 446, .external_lex_state = 5}, + [2843] = {.lex_state = 375, .external_lex_state = 16}, + [2844] = {.lex_state = 446, .external_lex_state = 5}, + [2845] = {.lex_state = 375, .external_lex_state = 16}, + [2846] = {.lex_state = 444, .external_lex_state = 20}, + [2847] = {.lex_state = 444, .external_lex_state = 20}, + [2848] = {.lex_state = 444, .external_lex_state = 20}, + [2849] = {.lex_state = 444, .external_lex_state = 20}, + [2850] = {.lex_state = 375, .external_lex_state = 16}, + [2851] = {.lex_state = 444, .external_lex_state = 20}, + [2852] = {.lex_state = 375, .external_lex_state = 16}, + [2853] = {.lex_state = 444, .external_lex_state = 20}, + [2854] = {.lex_state = 375, .external_lex_state = 16}, + [2855] = {.lex_state = 444, .external_lex_state = 20}, + [2856] = {.lex_state = 444, .external_lex_state = 20}, + [2857] = {.lex_state = 450, .external_lex_state = 10}, + [2858] = {.lex_state = 411, .external_lex_state = 22}, + [2859] = {.lex_state = 411, .external_lex_state = 22}, + [2860] = {.lex_state = 203, .external_lex_state = 16}, + [2861] = {.lex_state = 375, .external_lex_state = 16}, + [2862] = {.lex_state = 450, .external_lex_state = 10}, + [2863] = {.lex_state = 373, .external_lex_state = 16}, + [2864] = {.lex_state = 450, .external_lex_state = 10}, + [2865] = {.lex_state = 377}, + [2866] = {.lex_state = 375, .external_lex_state = 16}, + [2867] = {.lex_state = 450, .external_lex_state = 10}, + [2868] = {.lex_state = 377}, + [2869] = {.lex_state = 375, .external_lex_state = 16}, + [2870] = {.lex_state = 377}, + [2871] = {.lex_state = 375, .external_lex_state = 16}, + [2872] = {.lex_state = 375, .external_lex_state = 16}, + [2873] = {.lex_state = 450, .external_lex_state = 10}, + [2874] = {.lex_state = 375, .external_lex_state = 16}, + [2875] = {.lex_state = 434, .external_lex_state = 14}, + [2876] = {.lex_state = 434, .external_lex_state = 14}, + [2877] = {.lex_state = 434, .external_lex_state = 14}, + [2878] = {.lex_state = 434, .external_lex_state = 10}, + [2879] = {.lex_state = 434, .external_lex_state = 10}, + [2880] = {.lex_state = 434, .external_lex_state = 10}, + [2881] = {.lex_state = 446, .external_lex_state = 5}, + [2882] = {.lex_state = 446, .external_lex_state = 5}, + [2883] = {.lex_state = 446, .external_lex_state = 5}, + [2884] = {.lex_state = 446, .external_lex_state = 5}, + [2885] = {.lex_state = 375, .external_lex_state = 16}, + [2886] = {.lex_state = 446, .external_lex_state = 5}, + [2887] = {.lex_state = 375, .external_lex_state = 16}, + [2888] = {.lex_state = 446, .external_lex_state = 5}, + [2889] = {.lex_state = 375, .external_lex_state = 16}, + [2890] = {.lex_state = 446, .external_lex_state = 5}, + [2891] = {.lex_state = 446, .external_lex_state = 5}, + [2892] = {.lex_state = 444, .external_lex_state = 20}, + [2893] = {.lex_state = 444, .external_lex_state = 20}, + [2894] = {.lex_state = 444, .external_lex_state = 20}, + [2895] = {.lex_state = 450, .external_lex_state = 10}, + [2896] = {.lex_state = 450, .external_lex_state = 10}, + [2897] = {.lex_state = 450, .external_lex_state = 10}, + [2898] = {.lex_state = 375, .external_lex_state = 16}, + [2899] = {.lex_state = 411, .external_lex_state = 22}, + [2900] = {.lex_state = 411, .external_lex_state = 22}, + [2901] = {.lex_state = 203, .external_lex_state = 16}, + [2902] = {.lex_state = 375, .external_lex_state = 16}, + [2903] = {.lex_state = 450, .external_lex_state = 10}, + [2904] = {.lex_state = 375, .external_lex_state = 16}, + [2905] = {.lex_state = 450, .external_lex_state = 10}, + [2906] = {.lex_state = 375, .external_lex_state = 16}, + [2907] = {.lex_state = 450, .external_lex_state = 10}, + [2908] = {.lex_state = 375, .external_lex_state = 16}, + [2909] = {.lex_state = 450, .external_lex_state = 10}, + [2910] = {.lex_state = 375, .external_lex_state = 16}, + [2911] = {.lex_state = 446, .external_lex_state = 5}, + [2912] = {.lex_state = 446, .external_lex_state = 5}, + [2913] = {.lex_state = 446, .external_lex_state = 5}, + [2914] = {.lex_state = 450, .external_lex_state = 10}, + [2915] = {.lex_state = 450, .external_lex_state = 10}, + [2916] = {.lex_state = 450, .external_lex_state = 10}, + [2917] = {.lex_state = 450, .external_lex_state = 10}, + [2918] = {.lex_state = 375, .external_lex_state = 16}, + [2919] = {.lex_state = 450, .external_lex_state = 10}, + [2920] = {.lex_state = 375, .external_lex_state = 16}, + [2921] = {.lex_state = 450, .external_lex_state = 10}, + [2922] = {.lex_state = 375, .external_lex_state = 16}, + [2923] = {.lex_state = 450, .external_lex_state = 10}, + [2924] = {.lex_state = 450, .external_lex_state = 10}, + [2925] = {.lex_state = 450, .external_lex_state = 10}, + [2926] = {.lex_state = 450, .external_lex_state = 10}, + [2927] = {.lex_state = 450, .external_lex_state = 10}, }; enum { @@ -11668,6 +10779,8 @@ static bool ts_external_scanner_states[25][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__empty_value] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, + [ts_external_token_RBRACE] = true, + [ts_external_token_RBRACK] = true, }, [2] = { [ts_external_token_file_descriptor] = true, @@ -11773,507 +10886,613 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__empty_value] = ACTIONS(1), [sym__concat] = ACTIONS(1), [sym_variable_name] = ACTIONS(1), - [ts_builtin_sym_end] = ACTIONS(3), - [sym__special_characters] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1), + [anon_sym_for] = ACTIONS(3), + [anon_sym_in] = ACTIONS(3), + [anon_sym_while] = ACTIONS(3), + [anon_sym_do] = ACTIONS(3), + [anon_sym_done] = ACTIONS(3), + [anon_sym_if] = ACTIONS(3), + [anon_sym_then] = ACTIONS(3), + [anon_sym_fi] = ACTIONS(3), + [anon_sym_elif] = ACTIONS(3), + [anon_sym_else] = ACTIONS(3), + [anon_sym_case] = ACTIONS(3), + [anon_sym_esac] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1), + [anon_sym_SEMI_SEMI] = ACTIONS(1), + [anon_sym_function] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_PIPE_AMP] = ACTIONS(1), + [anon_sym_AMP_AMP] = ACTIONS(1), + [anon_sym_PIPE_PIPE] = ACTIONS(1), + [anon_sym_EQ_TILDE] = ACTIONS(1), + [anon_sym_EQ_EQ] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(3), + [anon_sym_RBRACK] = ACTIONS(3), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1), + [anon_sym_declare] = ACTIONS(3), + [anon_sym_typeset] = ACTIONS(3), + [anon_sym_export] = ACTIONS(3), + [anon_sym_readonly] = ACTIONS(3), + [anon_sym_local] = ACTIONS(3), + [anon_sym_unset] = ACTIONS(3), + [anon_sym_unsetenv] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(3), + [anon_sym_GT] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_AMP_GT] = ACTIONS(3), + [anon_sym_AMP_GT_GT] = ACTIONS(1), + [anon_sym_LT_AMP] = ACTIONS(1), + [anon_sym_GT_AMP] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(3), + [anon_sym_LT_LT_DASH] = ACTIONS(1), + [anon_sym_LT_LT_LT] = ACTIONS(1), + [sym__special_characters] = ACTIONS(3), + [anon_sym_DQUOTE] = ACTIONS(1), [anon_sym_DOLLAR] = ACTIONS(3), - [sym__string_content] = ACTIONS(3), + [sym_raw_string] = ACTIONS(1), [anon_sym_POUND] = ACTIONS(1), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), + [aux_sym_SLASH] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(3), + [anon_sym_COLON_QMARK] = ACTIONS(1), + [anon_sym_COLON_DASH] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3), - [sym_comment] = ACTIONS(7), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1), + [anon_sym_BQUOTE] = ACTIONS(1), + [anon_sym_LT_LPAREN] = ACTIONS(1), + [anon_sym_GT_LPAREN] = ACTIONS(1), + [sym_comment] = ACTIONS(5), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3), [anon_sym_STAR] = ACTIONS(1), [anon_sym_AT] = ACTIONS(1), [anon_sym_QMARK] = ACTIONS(1), - [anon_sym_0] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), + [anon_sym_0] = ACTIONS(3), + [anon_sym__] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(3), }, [1] = { [sym_program] = STATE(24), - [sym__terminated_statement] = STATE(25), - [sym_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_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(26), - [sym_variable_assignment] = STATE(28), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym__terminated_statement] = STATE(30), + [sym_for_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_function_definition] = STATE(25), + [sym_subshell] = STATE(25), + [sym_pipeline] = STATE(25), + [sym_list] = STATE(25), + [sym_command] = STATE(25), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(25), + [sym_variable_assignment] = STATE(27), + [sym_declaration_command] = STATE(25), + [sym_unset_command] = STATE(25), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), [sym_string] = STATE(18), [sym_simple_expansion] = STATE(18), [sym_string_expansion] = STATE(18), [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(32), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [ts_builtin_sym_end] = ACTIONS(14), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [aux_sym_program_repeat1] = STATE(30), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [ts_builtin_sym_end] = ACTIONS(12), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), }, [2] = { - [anon_sym_LT] = ACTIONS(60), - [anon_sym_GT] = ACTIONS(60), - [anon_sym_GT_GT] = ACTIONS(62), - [anon_sym_AMP_GT] = ACTIONS(60), - [anon_sym_AMP_GT_GT] = ACTIONS(62), - [anon_sym_LT_AMP] = ACTIONS(62), - [anon_sym_GT_AMP] = ACTIONS(62), - [sym_comment] = ACTIONS(56), + [anon_sym_LT] = ACTIONS(58), + [anon_sym_GT] = ACTIONS(58), + [anon_sym_GT_GT] = ACTIONS(60), + [anon_sym_AMP_GT] = ACTIONS(58), + [anon_sym_AMP_GT_GT] = ACTIONS(60), + [anon_sym_LT_AMP] = ACTIONS(60), + [anon_sym_GT_AMP] = ACTIONS(60), + [sym_comment] = ACTIONS(54), }, [3] = { - [sym__assignment] = STATE(37), - [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(66), - [anon_sym_PLUS_EQ] = ACTIONS(66), - [sym_comment] = ACTIONS(56), + [sym__assignment] = STATE(35), + [anon_sym_LBRACK] = ACTIONS(62), + [anon_sym_EQ] = ACTIONS(64), + [anon_sym_PLUS_EQ] = ACTIONS(64), + [sym_comment] = ACTIONS(54), }, [4] = { - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(68), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(66), }, [5] = { - [sym__terminated_statement] = STATE(39), - [sym_for_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_function_definition] = STATE(40), - [sym_subshell] = STATE(40), - [sym_pipeline] = STATE(40), - [sym_list] = STATE(40), - [sym_command] = STATE(40), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(40), - [sym_variable_assignment] = STATE(41), - [sym_declaration_command] = STATE(40), - [sym_unset_command] = STATE(40), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym__terminated_statement] = STATE(37), + [sym_for_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_case_statement] = STATE(38), + [sym_function_definition] = STATE(38), + [sym_subshell] = STATE(38), + [sym_pipeline] = STATE(38), + [sym_list] = STATE(38), + [sym_command] = STATE(38), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(38), + [sym_variable_assignment] = STATE(39), + [sym_declaration_command] = STATE(38), + [sym_unset_command] = STATE(38), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), [sym_string] = STATE(18), [sym_simple_expansion] = STATE(18), [sym_string_expansion] = STATE(18), [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), }, [6] = { - [sym__terminated_statement] = STATE(42), - [sym_for_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_function_definition] = STATE(40), - [sym_subshell] = STATE(40), - [sym_pipeline] = STATE(40), - [sym_list] = STATE(40), - [sym_command] = STATE(40), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(40), - [sym_variable_assignment] = STATE(41), - [sym_declaration_command] = STATE(40), - [sym_unset_command] = STATE(40), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym__terminated_statement] = STATE(40), + [sym_for_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_case_statement] = STATE(38), + [sym_function_definition] = STATE(38), + [sym_subshell] = STATE(38), + [sym_pipeline] = STATE(38), + [sym_list] = STATE(38), + [sym_command] = STATE(38), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(38), + [sym_variable_assignment] = STATE(39), + [sym_declaration_command] = STATE(38), + [sym_unset_command] = STATE(38), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), [sym_string] = STATE(18), [sym_simple_expansion] = STATE(18), [sym_string_expansion] = STATE(18), [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), }, [7] = { - [sym_concatenation] = STATE(51), - [sym_string] = STATE(46), - [sym_simple_expansion] = STATE(46), - [sym_string_expansion] = STATE(46), - [sym_expansion] = STATE(46), - [sym_command_substitution] = STATE(46), - [sym_process_substitution] = STATE(46), - [sym__special_characters] = ACTIONS(70), - [anon_sym_DQUOTE] = ACTIONS(72), - [anon_sym_DOLLAR] = ACTIONS(74), - [sym_raw_string] = ACTIONS(76), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(78), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(80), - [anon_sym_BQUOTE] = ACTIONS(82), - [anon_sym_LT_LPAREN] = ACTIONS(84), - [anon_sym_GT_LPAREN] = ACTIONS(84), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(86), + [sym_concatenation] = STATE(49), + [sym_string] = STATE(44), + [sym_simple_expansion] = STATE(44), + [sym_string_expansion] = STATE(44), + [sym_expansion] = STATE(44), + [sym_command_substitution] = STATE(44), + [sym_process_substitution] = STATE(44), + [sym__special_characters] = ACTIONS(68), + [anon_sym_DQUOTE] = ACTIONS(70), + [anon_sym_DOLLAR] = ACTIONS(72), + [sym_raw_string] = ACTIONS(74), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(76), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(78), + [anon_sym_BQUOTE] = ACTIONS(80), + [anon_sym_LT_LPAREN] = ACTIONS(82), + [anon_sym_GT_LPAREN] = ACTIONS(82), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(74), }, [8] = { - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(88), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(84), }, [9] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_if_statement] = STATE(69), - [sym_case_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_subshell] = STATE(69), - [sym_pipeline] = STATE(69), - [sym_list] = STATE(69), - [sym_command] = STATE(69), - [sym_command_name] = STATE(70), - [sym_bracket_command] = STATE(69), - [sym_variable_assignment] = STATE(71), - [sym_declaration_command] = STATE(69), - [sym_unset_command] = STATE(69), - [sym_subscript] = STATE(72), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(63), - [sym_simple_expansion] = STATE(63), - [sym_string_expansion] = STATE(63), - [sym_expansion] = STATE(63), - [sym_command_substitution] = STATE(63), - [sym_process_substitution] = STATE(63), - [aux_sym_program_repeat1] = STATE(73), - [aux_sym_command_repeat1] = STATE(74), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(90), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(92), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(94), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(96), - [anon_sym_LBRACK_LBRACK] = ACTIONS(98), - [anon_sym_declare] = ACTIONS(100), - [anon_sym_typeset] = ACTIONS(100), - [anon_sym_export] = ACTIONS(100), - [anon_sym_readonly] = ACTIONS(100), - [anon_sym_local] = ACTIONS(100), - [anon_sym_unset] = ACTIONS(102), - [anon_sym_unsetenv] = ACTIONS(102), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(104), - [anon_sym_DQUOTE] = ACTIONS(106), - [anon_sym_DOLLAR] = ACTIONS(108), - [sym_raw_string] = ACTIONS(110), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(114), - [anon_sym_BQUOTE] = ACTIONS(116), - [anon_sym_LT_LPAREN] = ACTIONS(118), - [anon_sym_GT_LPAREN] = ACTIONS(118), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(120), + [sym__terminated_statement] = STATE(65), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_if_statement] = STATE(61), + [sym_case_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_subshell] = STATE(61), + [sym_pipeline] = STATE(61), + [sym_list] = STATE(61), + [sym_command] = STATE(61), + [sym_command_name] = STATE(62), + [sym_bracket_command] = STATE(61), + [sym_variable_assignment] = STATE(63), + [sym_declaration_command] = STATE(61), + [sym_unset_command] = STATE(61), + [sym_subscript] = STATE(64), + [sym_file_redirect] = STATE(66), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(59), + [sym_simple_expansion] = STATE(59), + [sym_string_expansion] = STATE(59), + [sym_expansion] = STATE(59), + [sym_command_substitution] = STATE(59), + [sym_process_substitution] = STATE(59), + [aux_sym_program_repeat1] = STATE(65), + [aux_sym_command_repeat1] = STATE(66), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(86), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(88), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(90), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK_LBRACK] = ACTIONS(94), + [anon_sym_declare] = ACTIONS(96), + [anon_sym_typeset] = ACTIONS(96), + [anon_sym_export] = ACTIONS(96), + [anon_sym_readonly] = ACTIONS(96), + [anon_sym_local] = ACTIONS(96), + [anon_sym_unset] = ACTIONS(98), + [anon_sym_unsetenv] = ACTIONS(98), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(100), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(104), }, [10] = { - [sym_concatenation] = STATE(84), - [sym_string] = STATE(79), - [sym_simple_expansion] = STATE(79), - [sym_string_expansion] = STATE(79), - [sym_expansion] = STATE(79), - [sym_command_substitution] = STATE(79), - [sym_process_substitution] = STATE(79), - [aux_sym_command_repeat2] = STATE(85), - [anon_sym_EQ_TILDE] = ACTIONS(122), - [anon_sym_EQ_EQ] = ACTIONS(122), - [sym__special_characters] = ACTIONS(124), - [anon_sym_DQUOTE] = ACTIONS(126), - [anon_sym_DOLLAR] = ACTIONS(128), - [sym_raw_string] = ACTIONS(130), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), - [anon_sym_BQUOTE] = ACTIONS(136), - [anon_sym_LT_LPAREN] = ACTIONS(138), - [anon_sym_GT_LPAREN] = ACTIONS(138), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(140), + [sym_concatenation] = STATE(76), + [sym_string] = STATE(71), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [sym_expansion] = STATE(71), + [sym_command_substitution] = STATE(71), + [sym_process_substitution] = STATE(71), + [aux_sym_command_repeat2] = STATE(77), + [anon_sym_EQ_TILDE] = ACTIONS(106), + [anon_sym_EQ_EQ] = ACTIONS(106), + [sym__special_characters] = ACTIONS(108), + [anon_sym_DQUOTE] = ACTIONS(110), + [anon_sym_DOLLAR] = ACTIONS(112), + [sym_raw_string] = ACTIONS(114), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(118), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_LT_LPAREN] = ACTIONS(122), + [anon_sym_GT_LPAREN] = ACTIONS(122), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(124), }, [11] = { - [sym_concatenation] = STATE(95), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_string_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat2] = STATE(96), - [anon_sym_EQ_TILDE] = ACTIONS(142), - [anon_sym_EQ_EQ] = ACTIONS(142), - [sym__special_characters] = ACTIONS(144), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(148), - [sym_raw_string] = ACTIONS(150), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(156), - [anon_sym_LT_LPAREN] = ACTIONS(158), - [anon_sym_GT_LPAREN] = ACTIONS(158), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(160), + [sym_concatenation] = STATE(87), + [sym_string] = STATE(82), + [sym_simple_expansion] = STATE(82), + [sym_string_expansion] = STATE(82), + [sym_expansion] = STATE(82), + [sym_command_substitution] = STATE(82), + [sym_process_substitution] = STATE(82), + [aux_sym_command_repeat2] = STATE(88), + [anon_sym_EQ_TILDE] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(126), + [sym__special_characters] = ACTIONS(128), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(144), }, [12] = { - [sym_variable_assignment] = STATE(107), - [sym_subscript] = STATE(108), - [sym_concatenation] = STATE(107), - [sym_string] = STATE(101), - [sym_simple_expansion] = STATE(101), - [sym_string_expansion] = STATE(101), - [sym_expansion] = STATE(101), - [sym_command_substitution] = STATE(101), - [sym_process_substitution] = STATE(101), - [aux_sym_declaration_command_repeat1] = STATE(109), - [sym_variable_name] = ACTIONS(162), - [anon_sym_PIPE] = ACTIONS(164), - [anon_sym_SEMI_SEMI] = ACTIONS(164), - [anon_sym_PIPE_AMP] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(164), - [anon_sym_PIPE_PIPE] = ACTIONS(164), - [sym__special_characters] = ACTIONS(166), - [anon_sym_DQUOTE] = ACTIONS(168), - [anon_sym_DOLLAR] = ACTIONS(170), - [sym_raw_string] = ACTIONS(172), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(174), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(176), - [anon_sym_BQUOTE] = ACTIONS(178), - [anon_sym_LT_LPAREN] = ACTIONS(180), - [anon_sym_GT_LPAREN] = ACTIONS(180), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(184), - [sym_word] = ACTIONS(172), - [anon_sym_SEMI] = ACTIONS(164), - [anon_sym_LF] = ACTIONS(164), - [anon_sym_AMP] = ACTIONS(164), + [sym_variable_assignment] = STATE(100), + [sym_subscript] = STATE(99), + [sym_concatenation] = STATE(100), + [sym_string] = STATE(93), + [sym_simple_expansion] = STATE(93), + [sym_string_expansion] = STATE(93), + [sym_expansion] = STATE(93), + [sym_command_substitution] = STATE(93), + [sym_process_substitution] = STATE(93), + [aux_sym_declaration_command_repeat1] = STATE(100), + [sym_variable_name] = ACTIONS(146), + [anon_sym_PIPE] = ACTIONS(148), + [anon_sym_SEMI_SEMI] = ACTIONS(148), + [anon_sym_PIPE_AMP] = ACTIONS(148), + [anon_sym_AMP_AMP] = ACTIONS(148), + [anon_sym_PIPE_PIPE] = ACTIONS(148), + [sym__special_characters] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(152), + [anon_sym_DOLLAR] = ACTIONS(154), + [sym_raw_string] = ACTIONS(156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(160), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_LT_LPAREN] = ACTIONS(164), + [anon_sym_GT_LPAREN] = ACTIONS(164), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(168), + [sym_word] = ACTIONS(156), + [anon_sym_SEMI] = ACTIONS(148), + [anon_sym_LF] = ACTIONS(170), + [anon_sym_AMP] = ACTIONS(148), }, [13] = { - [sym_concatenation] = STATE(119), - [sym_string] = STATE(113), - [sym_simple_expansion] = STATE(113), - [sym_string_expansion] = STATE(113), - [sym_expansion] = STATE(113), - [sym_command_substitution] = STATE(113), - [sym_process_substitution] = STATE(113), - [aux_sym_unset_command_repeat1] = STATE(120), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_SEMI_SEMI] = ACTIONS(186), - [anon_sym_PIPE_AMP] = ACTIONS(186), - [anon_sym_AMP_AMP] = ACTIONS(186), - [anon_sym_PIPE_PIPE] = ACTIONS(186), - [sym__special_characters] = ACTIONS(188), - [anon_sym_DQUOTE] = ACTIONS(190), - [anon_sym_DOLLAR] = ACTIONS(192), - [sym_raw_string] = ACTIONS(194), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), - [anon_sym_BQUOTE] = ACTIONS(200), - [anon_sym_LT_LPAREN] = ACTIONS(202), - [anon_sym_GT_LPAREN] = ACTIONS(202), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(204), - [sym_word] = ACTIONS(194), - [anon_sym_SEMI] = ACTIONS(186), - [anon_sym_LF] = ACTIONS(186), - [anon_sym_AMP] = ACTIONS(186), + [sym_concatenation] = STATE(110), + [sym_string] = STATE(104), + [sym_simple_expansion] = STATE(104), + [sym_string_expansion] = STATE(104), + [sym_expansion] = STATE(104), + [sym_command_substitution] = STATE(104), + [sym_process_substitution] = STATE(104), + [aux_sym_unset_command_repeat1] = STATE(110), + [anon_sym_PIPE] = ACTIONS(172), + [anon_sym_SEMI_SEMI] = ACTIONS(172), + [anon_sym_PIPE_AMP] = ACTIONS(172), + [anon_sym_AMP_AMP] = ACTIONS(172), + [anon_sym_PIPE_PIPE] = ACTIONS(172), + [sym__special_characters] = ACTIONS(174), + [anon_sym_DQUOTE] = ACTIONS(176), + [anon_sym_DOLLAR] = ACTIONS(178), + [sym_raw_string] = ACTIONS(180), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(182), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(184), + [anon_sym_BQUOTE] = ACTIONS(186), + [anon_sym_LT_LPAREN] = ACTIONS(188), + [anon_sym_GT_LPAREN] = ACTIONS(188), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(190), + [sym_word] = ACTIONS(180), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_LF] = ACTIONS(192), + [anon_sym_AMP] = ACTIONS(172), }, [14] = { - [sym_concatenation] = STATE(129), - [sym_string] = STATE(124), - [sym_simple_expansion] = STATE(124), - [sym_string_expansion] = STATE(124), - [sym_expansion] = STATE(124), - [sym_command_substitution] = STATE(124), - [sym_process_substitution] = STATE(124), - [sym__special_characters] = ACTIONS(206), - [anon_sym_DQUOTE] = ACTIONS(208), - [anon_sym_DOLLAR] = ACTIONS(210), - [sym_raw_string] = ACTIONS(212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), - [anon_sym_BQUOTE] = ACTIONS(218), - [anon_sym_LT_LPAREN] = ACTIONS(220), - [anon_sym_GT_LPAREN] = ACTIONS(220), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(222), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(114), + [sym_simple_expansion] = STATE(114), + [sym_string_expansion] = STATE(114), + [sym_expansion] = STATE(114), + [sym_command_substitution] = STATE(114), + [sym_process_substitution] = STATE(114), + [sym__special_characters] = ACTIONS(194), + [anon_sym_DQUOTE] = ACTIONS(196), + [anon_sym_DOLLAR] = ACTIONS(198), + [sym_raw_string] = ACTIONS(200), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(204), + [anon_sym_BQUOTE] = ACTIONS(206), + [anon_sym_LT_LPAREN] = ACTIONS(208), + [anon_sym_GT_LPAREN] = ACTIONS(208), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(200), }, [15] = { - [aux_sym_concatenation_repeat1] = STATE(131), - [sym_file_descriptor] = ACTIONS(224), - [sym__concat] = ACTIONS(226), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_SEMI_SEMI] = ACTIONS(228), - [anon_sym_PIPE_AMP] = ACTIONS(228), - [anon_sym_AMP_AMP] = ACTIONS(228), - [anon_sym_PIPE_PIPE] = ACTIONS(228), - [anon_sym_EQ_TILDE] = ACTIONS(228), - [anon_sym_EQ_EQ] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(228), - [anon_sym_GT] = ACTIONS(228), - [anon_sym_GT_GT] = ACTIONS(228), - [anon_sym_AMP_GT] = ACTIONS(228), - [anon_sym_AMP_GT_GT] = ACTIONS(228), - [anon_sym_LT_AMP] = ACTIONS(228), - [anon_sym_GT_AMP] = ACTIONS(228), - [anon_sym_LT_LT] = ACTIONS(228), - [anon_sym_LT_LT_DASH] = ACTIONS(228), - [anon_sym_LT_LT_LT] = ACTIONS(228), - [sym__special_characters] = ACTIONS(228), - [anon_sym_DQUOTE] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym_raw_string] = ACTIONS(228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(228), - [anon_sym_BQUOTE] = ACTIONS(228), - [anon_sym_LT_LPAREN] = ACTIONS(228), - [anon_sym_GT_LPAREN] = ACTIONS(228), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [anon_sym_LF] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(228), + [aux_sym_concatenation_repeat1] = STATE(121), + [sym_file_descriptor] = ACTIONS(210), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(214), + [anon_sym_SEMI_SEMI] = ACTIONS(214), + [anon_sym_PIPE_AMP] = ACTIONS(214), + [anon_sym_AMP_AMP] = ACTIONS(214), + [anon_sym_PIPE_PIPE] = ACTIONS(214), + [anon_sym_EQ_TILDE] = ACTIONS(214), + [anon_sym_EQ_EQ] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(214), + [anon_sym_GT] = ACTIONS(214), + [anon_sym_GT_GT] = ACTIONS(214), + [anon_sym_AMP_GT] = ACTIONS(214), + [anon_sym_AMP_GT_GT] = ACTIONS(214), + [anon_sym_LT_AMP] = ACTIONS(214), + [anon_sym_GT_AMP] = ACTIONS(214), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_LT_LT_DASH] = ACTIONS(214), + [anon_sym_LT_LT_LT] = ACTIONS(214), + [sym__special_characters] = ACTIONS(214), + [anon_sym_DQUOTE] = ACTIONS(214), + [anon_sym_DOLLAR] = ACTIONS(214), + [sym_raw_string] = ACTIONS(214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(214), + [anon_sym_BQUOTE] = ACTIONS(214), + [anon_sym_LT_LPAREN] = ACTIONS(214), + [anon_sym_GT_LPAREN] = ACTIONS(214), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(214), + [anon_sym_SEMI] = ACTIONS(214), + [anon_sym_LF] = ACTIONS(210), + [anon_sym_AMP] = ACTIONS(214), }, [16] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(138), - [anon_sym_DQUOTE] = ACTIONS(230), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(128), + [anon_sym_DQUOTE] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), }, [17] = { - [sym_string] = STATE(140), - [anon_sym_DQUOTE] = ACTIONS(42), + [sym_string] = STATE(130), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(228), + [sym_raw_string] = ACTIONS(230), + [anon_sym_POUND] = ACTIONS(228), + [anon_sym_DASH] = ACTIONS(228), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(232), + [anon_sym_STAR] = ACTIONS(228), + [anon_sym_AT] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_0] = ACTIONS(234), + [anon_sym__] = ACTIONS(234), + }, + [18] = { + [aux_sym_concatenation_repeat1] = STATE(121), + [sym_file_descriptor] = ACTIONS(236), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(238), + [anon_sym_SEMI_SEMI] = ACTIONS(238), + [anon_sym_PIPE_AMP] = ACTIONS(238), + [anon_sym_AMP_AMP] = ACTIONS(238), + [anon_sym_PIPE_PIPE] = ACTIONS(238), + [anon_sym_EQ_TILDE] = ACTIONS(238), + [anon_sym_EQ_EQ] = ACTIONS(238), + [anon_sym_LT] = ACTIONS(238), + [anon_sym_GT] = ACTIONS(238), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(238), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_LT_LT] = ACTIONS(238), + [anon_sym_LT_LT_DASH] = ACTIONS(238), + [anon_sym_LT_LT_LT] = ACTIONS(238), + [sym__special_characters] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(238), + [anon_sym_SEMI] = ACTIONS(238), + [anon_sym_LF] = ACTIONS(236), + [anon_sym_AMP] = ACTIONS(238), + }, + [19] = { + [sym_subscript] = STATE(136), + [sym_variable_name] = ACTIONS(240), [anon_sym_DOLLAR] = ACTIONS(242), - [sym_raw_string] = ACTIONS(244), - [anon_sym_POUND] = ACTIONS(242), + [anon_sym_POUND] = ACTIONS(244), [anon_sym_DASH] = ACTIONS(242), - [sym_comment] = ACTIONS(182), + [sym_comment] = ACTIONS(166), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(246), [anon_sym_STAR] = ACTIONS(242), [anon_sym_AT] = ACTIONS(242), @@ -12281,2074 +11500,2716 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(248), [anon_sym__] = ACTIONS(248), }, - [18] = { - [aux_sym_concatenation_repeat1] = STATE(131), - [sym_file_descriptor] = ACTIONS(250), - [sym__concat] = ACTIONS(226), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SEMI_SEMI] = ACTIONS(252), - [anon_sym_PIPE_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(252), - [anon_sym_AMP_GT] = ACTIONS(252), - [anon_sym_AMP_GT_GT] = ACTIONS(252), - [anon_sym_LT_AMP] = ACTIONS(252), - [anon_sym_GT_AMP] = ACTIONS(252), - [anon_sym_LT_LT] = ACTIONS(252), - [anon_sym_LT_LT_DASH] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [sym__special_characters] = ACTIONS(252), - [anon_sym_DQUOTE] = ACTIONS(252), - [anon_sym_DOLLAR] = ACTIONS(252), - [sym_raw_string] = ACTIONS(252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(252), - [anon_sym_LT_LPAREN] = ACTIONS(252), - [anon_sym_GT_LPAREN] = ACTIONS(252), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(252), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_LF] = ACTIONS(252), - [anon_sym_AMP] = ACTIONS(252), - }, - [19] = { - [sym_subscript] = STATE(146), - [sym_variable_name] = ACTIONS(254), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_POUND] = ACTIONS(258), - [anon_sym_DASH] = ACTIONS(256), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(260), - [anon_sym_STAR] = ACTIONS(256), - [anon_sym_AT] = ACTIONS(256), - [anon_sym_QMARK] = ACTIONS(256), - [anon_sym_0] = ACTIONS(262), - [anon_sym__] = ACTIONS(262), - }, [20] = { - [sym_for_statement] = STATE(167), - [sym_while_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_function_definition] = STATE(167), - [sym_subshell] = STATE(167), - [sym_pipeline] = STATE(167), - [sym_list] = STATE(167), - [sym_command] = STATE(167), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(167), - [sym_variable_assignment] = STATE(169), - [sym_declaration_command] = STATE(167), - [sym_unset_command] = STATE(167), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [sym_for_statement] = STATE(157), + [sym_while_statement] = STATE(157), + [sym_if_statement] = STATE(157), + [sym_case_statement] = STATE(157), + [sym_function_definition] = STATE(157), + [sym_subshell] = STATE(157), + [sym_pipeline] = STATE(157), + [sym_list] = STATE(157), + [sym_command] = STATE(157), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(157), + [sym_variable_assignment] = STATE(159), + [sym_declaration_command] = STATE(157), + [sym_unset_command] = STATE(157), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), }, [21] = { - [sym_for_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_case_statement] = STATE(189), - [sym_function_definition] = STATE(189), - [sym_subshell] = STATE(189), - [sym_pipeline] = STATE(189), - [sym_list] = STATE(189), - [sym_command] = STATE(189), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(189), - [sym_variable_assignment] = STATE(191), - [sym_declaration_command] = STATE(189), - [sym_unset_command] = STATE(189), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), + [sym_for_statement] = STATE(173), + [sym_while_statement] = STATE(173), + [sym_if_statement] = STATE(173), + [sym_case_statement] = STATE(173), + [sym_function_definition] = STATE(173), + [sym_subshell] = STATE(173), + [sym_pipeline] = STATE(173), + [sym_list] = STATE(173), + [sym_command] = STATE(173), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(173), + [sym_variable_assignment] = STATE(175), + [sym_declaration_command] = STATE(173), + [sym_unset_command] = STATE(173), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), }, [22] = { - [sym_for_statement] = STATE(194), - [sym_while_statement] = STATE(194), - [sym_if_statement] = STATE(194), - [sym_case_statement] = STATE(194), - [sym_function_definition] = STATE(194), - [sym_subshell] = STATE(194), - [sym_pipeline] = STATE(194), - [sym_list] = STATE(194), - [sym_command] = STATE(194), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(194), - [sym_variable_assignment] = STATE(195), - [sym_declaration_command] = STATE(194), - [sym_unset_command] = STATE(194), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [sym_for_statement] = STATE(178), + [sym_while_statement] = STATE(178), + [sym_if_statement] = STATE(178), + [sym_case_statement] = STATE(178), + [sym_function_definition] = STATE(178), + [sym_subshell] = STATE(178), + [sym_pipeline] = STATE(178), + [sym_list] = STATE(178), + [sym_command] = STATE(178), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(178), + [sym_variable_assignment] = STATE(179), + [sym_declaration_command] = STATE(178), + [sym_unset_command] = STATE(178), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), }, [23] = { - [aux_sym_concatenation_repeat1] = STATE(131), - [sym_file_descriptor] = ACTIONS(250), - [sym__concat] = ACTIONS(226), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SEMI_SEMI] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_PIPE_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(252), - [anon_sym_AMP_GT] = ACTIONS(252), - [anon_sym_AMP_GT_GT] = ACTIONS(252), - [anon_sym_LT_AMP] = ACTIONS(252), - [anon_sym_GT_AMP] = ACTIONS(252), - [anon_sym_LT_LT] = ACTIONS(252), - [anon_sym_LT_LT_DASH] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [sym__special_characters] = ACTIONS(252), - [anon_sym_DQUOTE] = ACTIONS(252), - [anon_sym_DOLLAR] = ACTIONS(252), - [sym_raw_string] = ACTIONS(252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(252), - [anon_sym_LT_LPAREN] = ACTIONS(252), - [anon_sym_GT_LPAREN] = ACTIONS(252), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(252), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_LF] = ACTIONS(252), - [anon_sym_AMP] = ACTIONS(252), + [aux_sym_concatenation_repeat1] = STATE(121), + [sym_file_descriptor] = ACTIONS(236), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(238), + [anon_sym_SEMI_SEMI] = ACTIONS(238), + [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_PIPE_AMP] = ACTIONS(238), + [anon_sym_AMP_AMP] = ACTIONS(238), + [anon_sym_PIPE_PIPE] = ACTIONS(238), + [anon_sym_EQ_TILDE] = ACTIONS(238), + [anon_sym_EQ_EQ] = ACTIONS(238), + [anon_sym_LT] = ACTIONS(238), + [anon_sym_GT] = ACTIONS(238), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(238), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_LT_LT] = ACTIONS(238), + [anon_sym_LT_LT_DASH] = ACTIONS(238), + [anon_sym_LT_LT_LT] = ACTIONS(238), + [sym__special_characters] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(238), + [anon_sym_SEMI] = ACTIONS(238), + [anon_sym_LF] = ACTIONS(236), + [anon_sym_AMP] = ACTIONS(238), }, [24] = { - [ts_builtin_sym_end] = ACTIONS(338), - [sym_comment] = ACTIONS(56), + [ts_builtin_sym_end] = ACTIONS(312), + [sym_comment] = ACTIONS(54), }, [25] = { - [sym_file_descriptor] = ACTIONS(340), - [sym_variable_name] = ACTIONS(340), - [ts_builtin_sym_end] = ACTIONS(340), - [anon_sym_for] = ACTIONS(342), - [anon_sym_while] = ACTIONS(342), - [anon_sym_if] = ACTIONS(342), - [anon_sym_case] = ACTIONS(342), - [anon_sym_SEMI_SEMI] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_LBRACK] = ACTIONS(342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(340), - [anon_sym_declare] = ACTIONS(342), - [anon_sym_typeset] = ACTIONS(342), - [anon_sym_export] = ACTIONS(342), - [anon_sym_readonly] = ACTIONS(342), - [anon_sym_local] = ACTIONS(342), - [anon_sym_unset] = ACTIONS(342), - [anon_sym_unsetenv] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(340), - [anon_sym_AMP_GT] = ACTIONS(342), - [anon_sym_AMP_GT_GT] = ACTIONS(340), - [anon_sym_LT_AMP] = ACTIONS(340), - [anon_sym_GT_AMP] = ACTIONS(340), - [sym__special_characters] = ACTIONS(344), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(342), - [sym_raw_string] = ACTIONS(340), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(340), - [anon_sym_BQUOTE] = ACTIONS(340), - [anon_sym_LT_LPAREN] = ACTIONS(340), - [anon_sym_GT_LPAREN] = ACTIONS(340), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(344), + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(316), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LF] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(316), }, [26] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(348), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(348), + [sym_file_redirect] = STATE(192), + [sym_heredoc_redirect] = STATE(192), + [sym_herestring_redirect] = STATE(192), + [sym_concatenation] = STATE(191), + [sym_string] = STATE(190), + [sym_simple_expansion] = STATE(190), + [sym_string_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [sym_process_substitution] = STATE(190), + [aux_sym_while_statement_repeat1] = STATE(192), + [aux_sym_command_repeat2] = STATE(193), + [sym_file_descriptor] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(324), + [anon_sym_SEMI_SEMI] = ACTIONS(324), + [anon_sym_PIPE_AMP] = ACTIONS(324), + [anon_sym_AMP_AMP] = ACTIONS(324), + [anon_sym_PIPE_PIPE] = ACTIONS(324), + [anon_sym_EQ_TILDE] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(326), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(328), + [anon_sym_GT_GT] = ACTIONS(328), + [anon_sym_AMP_GT] = ACTIONS(328), + [anon_sym_AMP_GT_GT] = ACTIONS(328), + [anon_sym_LT_AMP] = ACTIONS(328), + [anon_sym_GT_AMP] = ACTIONS(328), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(332), + [sym__special_characters] = ACTIONS(334), + [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(342), + [anon_sym_BQUOTE] = ACTIONS(344), + [anon_sym_LT_LPAREN] = ACTIONS(346), + [anon_sym_GT_LPAREN] = ACTIONS(346), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(338), + [anon_sym_SEMI] = ACTIONS(324), [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(324), }, [27] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [sym_concatenation] = STATE(208), - [sym_string] = STATE(206), - [sym_simple_expansion] = STATE(206), - [sym_string_expansion] = STATE(206), - [sym_expansion] = STATE(206), - [sym_command_substitution] = STATE(206), - [sym_process_substitution] = STATE(206), - [aux_sym_while_statement_repeat1] = STATE(209), - [aux_sym_command_repeat2] = STATE(210), - [sym_file_descriptor] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(354), - [anon_sym_SEMI_SEMI] = ACTIONS(354), - [anon_sym_PIPE_AMP] = ACTIONS(354), - [anon_sym_AMP_AMP] = ACTIONS(354), - [anon_sym_PIPE_PIPE] = ACTIONS(354), - [anon_sym_EQ_TILDE] = ACTIONS(356), - [anon_sym_EQ_EQ] = ACTIONS(356), - [anon_sym_LT] = ACTIONS(358), - [anon_sym_GT] = ACTIONS(358), - [anon_sym_GT_GT] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(358), - [anon_sym_AMP_GT_GT] = ACTIONS(358), - [anon_sym_LT_AMP] = ACTIONS(358), - [anon_sym_GT_AMP] = ACTIONS(358), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(362), - [sym__special_characters] = ACTIONS(364), - [anon_sym_DQUOTE] = ACTIONS(366), - [anon_sym_DOLLAR] = ACTIONS(368), - [sym_raw_string] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_LT_LPAREN] = ACTIONS(378), - [anon_sym_GT_LPAREN] = ACTIONS(378), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(354), - [anon_sym_LF] = ACTIONS(354), - [anon_sym_AMP] = ACTIONS(354), + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(316), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LF] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(316), }, [28] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(348), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), + [sym__assignment] = STATE(35), + [anon_sym_EQ] = ACTIONS(64), + [anon_sym_PLUS_EQ] = ACTIONS(64), + [sym_comment] = ACTIONS(54), }, [29] = { - [sym__assignment] = STATE(37), - [anon_sym_EQ] = ACTIONS(66), - [anon_sym_PLUS_EQ] = ACTIONS(66), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(236), + [anon_sym_PIPE] = ACTIONS(238), + [anon_sym_RPAREN] = ACTIONS(238), + [anon_sym_SEMI_SEMI] = ACTIONS(238), + [anon_sym_PIPE_AMP] = ACTIONS(238), + [anon_sym_AMP_AMP] = ACTIONS(238), + [anon_sym_PIPE_PIPE] = ACTIONS(238), + [anon_sym_EQ_TILDE] = ACTIONS(238), + [anon_sym_EQ_EQ] = ACTIONS(238), + [anon_sym_LT] = ACTIONS(238), + [anon_sym_GT] = ACTIONS(238), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(238), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_LT_LT] = ACTIONS(238), + [anon_sym_LT_LT_DASH] = ACTIONS(238), + [anon_sym_LT_LT_LT] = ACTIONS(238), + [sym__special_characters] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(238), + [anon_sym_SEMI] = ACTIONS(238), + [anon_sym_LF] = ACTIONS(236), + [anon_sym_AMP] = ACTIONS(238), }, [30] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [sym__terminated_statement] = STATE(194), + [sym_for_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_function_definition] = STATE(25), + [sym_subshell] = STATE(25), + [sym_pipeline] = STATE(25), + [sym_list] = STATE(25), + [sym_command] = STATE(25), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(25), + [sym_variable_assignment] = STATE(27), + [sym_declaration_command] = STATE(25), + [sym_unset_command] = STATE(25), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [ts_builtin_sym_end] = ACTIONS(354), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), }, [31] = { - [sym_file_descriptor] = ACTIONS(250), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_RPAREN] = ACTIONS(252), - [anon_sym_SEMI_SEMI] = ACTIONS(252), - [anon_sym_PIPE_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(252), - [anon_sym_AMP_GT] = ACTIONS(252), - [anon_sym_AMP_GT_GT] = ACTIONS(252), - [anon_sym_LT_AMP] = ACTIONS(252), - [anon_sym_GT_AMP] = ACTIONS(252), - [anon_sym_LT_LT] = ACTIONS(252), - [anon_sym_LT_LT_DASH] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [sym__special_characters] = ACTIONS(252), - [anon_sym_DQUOTE] = ACTIONS(252), - [anon_sym_DOLLAR] = ACTIONS(252), - [sym_raw_string] = ACTIONS(252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(252), - [anon_sym_LT_LPAREN] = ACTIONS(252), - [anon_sym_GT_LPAREN] = ACTIONS(252), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(252), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_LF] = ACTIONS(252), - [anon_sym_AMP] = ACTIONS(252), + [sym_command_name] = STATE(196), + [sym_variable_assignment] = STATE(198), + [sym_subscript] = STATE(197), + [sym_file_redirect] = STATE(198), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_command_repeat1] = STATE(198), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(356), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(358), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(44), }, [32] = { - [sym__terminated_statement] = STATE(25), - [sym_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_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(26), - [sym_variable_assignment] = STATE(28), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(211), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [ts_builtin_sym_end] = ACTIONS(386), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [sym_concatenation] = STATE(201), + [sym_string] = STATE(200), + [sym_simple_expansion] = STATE(200), + [sym_string_expansion] = STATE(200), + [sym_expansion] = STATE(200), + [sym_command_substitution] = STATE(200), + [sym_process_substitution] = STATE(200), + [sym__special_characters] = ACTIONS(360), + [anon_sym_DQUOTE] = ACTIONS(196), + [anon_sym_DOLLAR] = ACTIONS(198), + [sym_raw_string] = ACTIONS(362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(204), + [anon_sym_BQUOTE] = ACTIONS(206), + [anon_sym_LT_LPAREN] = ACTIONS(208), + [anon_sym_GT_LPAREN] = ACTIONS(208), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(362), }, [33] = { - [sym_command_name] = STATE(213), - [sym_variable_assignment] = STATE(30), - [sym_subscript] = STATE(214), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_command_repeat1] = STATE(215), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(388), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(392), + [sym_concatenation] = STATE(204), + [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), + [sym__special_characters] = ACTIONS(364), + [anon_sym_DQUOTE] = ACTIONS(110), + [anon_sym_DOLLAR] = ACTIONS(112), + [sym_raw_string] = ACTIONS(366), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(118), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_LT_LPAREN] = ACTIONS(122), + [anon_sym_GT_LPAREN] = ACTIONS(122), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(366), }, [34] = { - [sym_concatenation] = STATE(218), - [sym_string] = STATE(217), - [sym_simple_expansion] = STATE(217), - [sym_string_expansion] = STATE(217), - [sym_expansion] = STATE(217), - [sym_command_substitution] = STATE(217), - [sym_process_substitution] = STATE(217), - [sym__special_characters] = ACTIONS(394), - [anon_sym_DQUOTE] = ACTIONS(208), - [anon_sym_DOLLAR] = ACTIONS(210), - [sym_raw_string] = ACTIONS(396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), - [anon_sym_BQUOTE] = ACTIONS(218), - [anon_sym_LT_LPAREN] = ACTIONS(220), - [anon_sym_GT_LPAREN] = ACTIONS(220), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(398), + [sym_concatenation] = STATE(205), + [sym_string] = STATE(210), + [sym_array] = STATE(205), + [sym_simple_expansion] = STATE(210), + [sym_string_expansion] = STATE(210), + [sym_expansion] = STATE(210), + [sym_command_substitution] = STATE(210), + [sym_process_substitution] = STATE(210), + [sym__empty_value] = ACTIONS(368), + [anon_sym_LPAREN] = ACTIONS(370), + [sym__special_characters] = ACTIONS(372), + [anon_sym_DQUOTE] = ACTIONS(374), + [anon_sym_DOLLAR] = ACTIONS(376), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(384), + [anon_sym_LT_LPAREN] = ACTIONS(386), + [anon_sym_GT_LPAREN] = ACTIONS(386), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(378), }, [35] = { - [sym_concatenation] = STATE(227), - [sym_string] = STATE(222), - [sym_simple_expansion] = STATE(222), - [sym_string_expansion] = STATE(222), - [sym_expansion] = STATE(222), - [sym_command_substitution] = STATE(222), - [sym_process_substitution] = STATE(222), - [sym__special_characters] = ACTIONS(400), - [anon_sym_DQUOTE] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_raw_string] = ACTIONS(406), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), - [anon_sym_BQUOTE] = ACTIONS(412), - [anon_sym_LT_LPAREN] = ACTIONS(414), - [anon_sym_GT_LPAREN] = ACTIONS(414), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(416), + [sym_file_descriptor] = ACTIONS(388), + [sym_variable_name] = ACTIONS(388), + [anon_sym_PIPE] = ACTIONS(390), + [anon_sym_RPAREN] = ACTIONS(390), + [anon_sym_SEMI_SEMI] = ACTIONS(390), + [anon_sym_PIPE_AMP] = ACTIONS(390), + [anon_sym_AMP_AMP] = ACTIONS(390), + [anon_sym_PIPE_PIPE] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(390), + [anon_sym_GT_GT] = ACTIONS(390), + [anon_sym_AMP_GT] = ACTIONS(390), + [anon_sym_AMP_GT_GT] = ACTIONS(390), + [anon_sym_LT_AMP] = ACTIONS(390), + [anon_sym_GT_AMP] = ACTIONS(390), + [sym__special_characters] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(390), + [sym_raw_string] = ACTIONS(390), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(390), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_BQUOTE] = ACTIONS(390), + [anon_sym_LT_LPAREN] = ACTIONS(390), + [anon_sym_GT_LPAREN] = ACTIONS(390), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(390), + [anon_sym_SEMI] = ACTIONS(390), + [anon_sym_LF] = ACTIONS(388), + [anon_sym_AMP] = ACTIONS(390), }, [36] = { - [sym_concatenation] = STATE(228), - [sym_string] = STATE(233), - [sym_array] = STATE(228), - [sym_simple_expansion] = STATE(233), - [sym_string_expansion] = STATE(233), - [sym_expansion] = STATE(233), - [sym_command_substitution] = STATE(233), - [sym_process_substitution] = STATE(233), - [sym__empty_value] = ACTIONS(418), - [anon_sym_LPAREN] = ACTIONS(420), - [sym__special_characters] = ACTIONS(422), - [anon_sym_DQUOTE] = ACTIONS(424), - [anon_sym_DOLLAR] = ACTIONS(426), - [sym_raw_string] = ACTIONS(428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(430), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(432), - [anon_sym_BQUOTE] = ACTIONS(434), - [anon_sym_LT_LPAREN] = ACTIONS(436), - [anon_sym_GT_LPAREN] = ACTIONS(436), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(438), + [anon_sym_in] = ACTIONS(392), + [anon_sym_SEMI_SEMI] = ACTIONS(394), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(394), + [anon_sym_LF] = ACTIONS(396), + [anon_sym_AMP] = ACTIONS(394), }, [37] = { - [sym_file_descriptor] = ACTIONS(440), - [sym_variable_name] = ACTIONS(440), - [anon_sym_PIPE] = ACTIONS(442), - [anon_sym_RPAREN] = ACTIONS(442), - [anon_sym_SEMI_SEMI] = ACTIONS(442), - [anon_sym_PIPE_AMP] = ACTIONS(442), - [anon_sym_AMP_AMP] = ACTIONS(442), - [anon_sym_PIPE_PIPE] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_GT_GT] = ACTIONS(442), - [anon_sym_AMP_GT] = ACTIONS(442), - [anon_sym_AMP_GT_GT] = ACTIONS(442), - [anon_sym_LT_AMP] = ACTIONS(442), - [anon_sym_GT_AMP] = ACTIONS(442), - [sym__special_characters] = ACTIONS(442), - [anon_sym_DQUOTE] = ACTIONS(442), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym_raw_string] = ACTIONS(442), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(442), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(442), - [anon_sym_BQUOTE] = ACTIONS(442), - [anon_sym_LT_LPAREN] = ACTIONS(442), - [anon_sym_GT_LPAREN] = ACTIONS(442), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(442), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_LF] = ACTIONS(442), - [anon_sym_AMP] = ACTIONS(442), + [sym_do_group] = STATE(218), + [anon_sym_do] = ACTIONS(398), + [sym_comment] = ACTIONS(54), }, [38] = { - [anon_sym_in] = ACTIONS(444), - [anon_sym_SEMI_SEMI] = ACTIONS(446), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym_LF] = ACTIONS(446), - [anon_sym_AMP] = ACTIONS(446), + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(400), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(400), + [anon_sym_LF] = ACTIONS(402), + [anon_sym_AMP] = ACTIONS(400), }, [39] = { - [sym_do_group] = STATE(241), - [anon_sym_do] = ACTIONS(448), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(400), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(400), + [anon_sym_LF] = ACTIONS(402), + [anon_sym_AMP] = ACTIONS(400), }, [40] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(450), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(450), - [anon_sym_LF] = ACTIONS(450), - [anon_sym_AMP] = ACTIONS(450), + [anon_sym_then] = ACTIONS(404), + [sym_comment] = ACTIONS(54), }, [41] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(450), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(450), - [anon_sym_LF] = ACTIONS(450), - [anon_sym_AMP] = ACTIONS(450), + [aux_sym_concatenation_repeat1] = STATE(224), + [sym__concat] = ACTIONS(406), + [anon_sym_in] = ACTIONS(408), + [anon_sym_SEMI_SEMI] = ACTIONS(410), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_LF] = ACTIONS(412), + [anon_sym_AMP] = ACTIONS(410), }, [42] = { - [anon_sym_then] = ACTIONS(452), - [sym_comment] = ACTIONS(56), + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(226), + [anon_sym_DQUOTE] = ACTIONS(414), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), }, [43] = { - [aux_sym_concatenation_repeat1] = STATE(247), - [sym__concat] = ACTIONS(454), - [anon_sym_in] = ACTIONS(456), - [anon_sym_SEMI_SEMI] = ACTIONS(458), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(458), - [anon_sym_LF] = ACTIONS(458), - [anon_sym_AMP] = ACTIONS(458), + [sym_string] = STATE(228), + [anon_sym_DQUOTE] = ACTIONS(70), + [anon_sym_DOLLAR] = ACTIONS(416), + [sym_raw_string] = ACTIONS(418), + [anon_sym_POUND] = ACTIONS(416), + [anon_sym_DASH] = ACTIONS(416), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(416), + [anon_sym_AT] = ACTIONS(416), + [anon_sym_QMARK] = ACTIONS(416), + [anon_sym_0] = ACTIONS(422), + [anon_sym__] = ACTIONS(422), }, [44] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(249), - [anon_sym_DQUOTE] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), + [aux_sym_concatenation_repeat1] = STATE(224), + [sym__concat] = ACTIONS(406), + [anon_sym_in] = ACTIONS(424), + [anon_sym_SEMI_SEMI] = ACTIONS(426), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(426), + [anon_sym_LF] = ACTIONS(428), + [anon_sym_AMP] = ACTIONS(426), }, [45] = { - [sym_string] = STATE(251), - [anon_sym_DQUOTE] = ACTIONS(72), - [anon_sym_DOLLAR] = ACTIONS(462), - [sym_raw_string] = ACTIONS(464), - [anon_sym_POUND] = ACTIONS(462), - [anon_sym_DASH] = ACTIONS(462), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(462), - [anon_sym_QMARK] = ACTIONS(462), - [anon_sym_0] = ACTIONS(468), - [anon_sym__] = ACTIONS(468), + [sym_subscript] = STATE(236), + [sym_variable_name] = ACTIONS(430), + [anon_sym_DOLLAR] = ACTIONS(432), + [anon_sym_POUND] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(432), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(436), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_AT] = ACTIONS(432), + [anon_sym_QMARK] = ACTIONS(432), + [anon_sym_0] = ACTIONS(438), + [anon_sym__] = ACTIONS(438), }, [46] = { - [aux_sym_concatenation_repeat1] = STATE(247), - [sym__concat] = ACTIONS(454), - [anon_sym_in] = ACTIONS(470), - [anon_sym_SEMI_SEMI] = ACTIONS(472), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_LF] = ACTIONS(472), - [anon_sym_AMP] = ACTIONS(472), + [sym_for_statement] = STATE(237), + [sym_while_statement] = STATE(237), + [sym_if_statement] = STATE(237), + [sym_case_statement] = STATE(237), + [sym_function_definition] = STATE(237), + [sym_subshell] = STATE(237), + [sym_pipeline] = STATE(237), + [sym_list] = STATE(237), + [sym_command] = STATE(237), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(237), + [sym_variable_assignment] = STATE(238), + [sym_declaration_command] = STATE(237), + [sym_unset_command] = STATE(237), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), }, [47] = { - [sym_subscript] = STATE(259), - [sym_variable_name] = ACTIONS(474), - [anon_sym_DOLLAR] = ACTIONS(476), - [anon_sym_POUND] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(476), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(480), - [anon_sym_STAR] = ACTIONS(476), - [anon_sym_AT] = ACTIONS(476), - [anon_sym_QMARK] = ACTIONS(476), - [anon_sym_0] = ACTIONS(482), - [anon_sym__] = ACTIONS(482), + [sym_for_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_case_statement] = STATE(239), + [sym_function_definition] = STATE(239), + [sym_subshell] = STATE(239), + [sym_pipeline] = STATE(239), + [sym_list] = STATE(239), + [sym_command] = STATE(239), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(239), + [sym_variable_assignment] = STATE(240), + [sym_declaration_command] = STATE(239), + [sym_unset_command] = STATE(239), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), }, [48] = { - [sym_for_statement] = STATE(260), - [sym_while_statement] = STATE(260), - [sym_if_statement] = STATE(260), - [sym_case_statement] = STATE(260), - [sym_function_definition] = STATE(260), - [sym_subshell] = STATE(260), - [sym_pipeline] = STATE(260), - [sym_list] = STATE(260), - [sym_command] = STATE(260), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(260), - [sym_variable_assignment] = STATE(261), - [sym_declaration_command] = STATE(260), - [sym_unset_command] = STATE(260), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [sym_for_statement] = STATE(241), + [sym_while_statement] = STATE(241), + [sym_if_statement] = STATE(241), + [sym_case_statement] = STATE(241), + [sym_function_definition] = STATE(241), + [sym_subshell] = STATE(241), + [sym_pipeline] = STATE(241), + [sym_list] = STATE(241), + [sym_command] = STATE(241), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(241), + [sym_variable_assignment] = STATE(242), + [sym_declaration_command] = STATE(241), + [sym_unset_command] = STATE(241), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), }, [49] = { - [sym_for_statement] = STATE(262), - [sym_while_statement] = STATE(262), - [sym_if_statement] = STATE(262), - [sym_case_statement] = STATE(262), - [sym_function_definition] = STATE(262), - [sym_subshell] = STATE(262), - [sym_pipeline] = STATE(262), - [sym_list] = STATE(262), - [sym_command] = STATE(262), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(262), - [sym_variable_assignment] = STATE(263), - [sym_declaration_command] = STATE(262), - [sym_unset_command] = STATE(262), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), + [anon_sym_in] = ACTIONS(424), + [anon_sym_SEMI_SEMI] = ACTIONS(426), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(426), + [anon_sym_LF] = ACTIONS(428), + [anon_sym_AMP] = ACTIONS(426), }, [50] = { - [sym_for_statement] = STATE(264), - [sym_while_statement] = STATE(264), - [sym_if_statement] = STATE(264), - [sym_case_statement] = STATE(264), - [sym_function_definition] = STATE(264), - [sym_subshell] = STATE(264), - [sym_pipeline] = STATE(264), - [sym_list] = STATE(264), - [sym_command] = STATE(264), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(264), - [sym_variable_assignment] = STATE(265), - [sym_declaration_command] = STATE(264), - [sym_unset_command] = STATE(264), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [sym_compound_statement] = STATE(245), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(442), + [sym_comment] = ACTIONS(54), }, [51] = { - [anon_sym_in] = ACTIONS(470), - [anon_sym_SEMI_SEMI] = ACTIONS(472), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_LF] = ACTIONS(472), - [anon_sym_AMP] = ACTIONS(472), + [sym__assignment] = STATE(35), + [anon_sym_LBRACK] = ACTIONS(62), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_PLUS_EQ] = ACTIONS(444), + [sym_comment] = ACTIONS(54), }, [52] = { - [sym_compound_statement] = STATE(268), - [anon_sym_LPAREN] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(56), - }, - [53] = { - [sym__assignment] = STATE(37), - [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(488), - [anon_sym_PLUS_EQ] = ACTIONS(488), - [sym_comment] = ACTIONS(56), - }, - [54] = { - [sym__terminated_statement] = STATE(270), - [sym_for_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_function_definition] = STATE(40), - [sym_subshell] = STATE(40), - [sym_pipeline] = STATE(40), - [sym_list] = STATE(40), - [sym_command] = STATE(40), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(40), - [sym_variable_assignment] = STATE(41), - [sym_declaration_command] = STATE(40), - [sym_unset_command] = STATE(40), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [sym__terminated_statement] = STATE(247), + [sym_for_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_case_statement] = STATE(38), + [sym_function_definition] = STATE(38), + [sym_subshell] = STATE(38), + [sym_pipeline] = STATE(38), + [sym_list] = STATE(38), + [sym_command] = STATE(38), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(38), + [sym_variable_assignment] = STATE(39), + [sym_declaration_command] = STATE(38), + [sym_unset_command] = STATE(38), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), [sym_string] = STATE(18), [sym_simple_expansion] = STATE(18), [sym_string_expansion] = STATE(18), [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [53] = { + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(446), + }, + [54] = { + [sym_concatenation] = STATE(76), + [sym_string] = STATE(71), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [sym_expansion] = STATE(71), + [sym_command_substitution] = STATE(71), + [sym_process_substitution] = STATE(71), + [aux_sym_command_repeat2] = STATE(249), + [anon_sym_EQ_TILDE] = ACTIONS(106), + [anon_sym_EQ_EQ] = ACTIONS(106), + [sym__special_characters] = ACTIONS(108), + [anon_sym_DQUOTE] = ACTIONS(110), + [anon_sym_DOLLAR] = ACTIONS(112), + [sym_raw_string] = ACTIONS(114), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(118), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_LT_LPAREN] = ACTIONS(122), + [anon_sym_GT_LPAREN] = ACTIONS(122), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(124), }, [55] = { - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(490), + [sym_concatenation] = STATE(87), + [sym_string] = STATE(82), + [sym_simple_expansion] = STATE(82), + [sym_string_expansion] = STATE(82), + [sym_expansion] = STATE(82), + [sym_command_substitution] = STATE(82), + [sym_process_substitution] = STATE(82), + [aux_sym_command_repeat2] = STATE(250), + [anon_sym_EQ_TILDE] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(126), + [sym__special_characters] = ACTIONS(128), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(144), }, [56] = { - [sym_concatenation] = STATE(84), - [sym_string] = STATE(79), - [sym_simple_expansion] = STATE(79), - [sym_string_expansion] = STATE(79), - [sym_expansion] = STATE(79), - [sym_command_substitution] = STATE(79), - [sym_process_substitution] = STATE(79), - [aux_sym_command_repeat2] = STATE(272), - [anon_sym_EQ_TILDE] = ACTIONS(122), - [anon_sym_EQ_EQ] = ACTIONS(122), - [sym__special_characters] = ACTIONS(124), - [anon_sym_DQUOTE] = ACTIONS(126), - [anon_sym_DOLLAR] = ACTIONS(128), - [sym_raw_string] = ACTIONS(130), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), - [anon_sym_BQUOTE] = ACTIONS(136), - [anon_sym_LT_LPAREN] = ACTIONS(138), - [anon_sym_GT_LPAREN] = ACTIONS(138), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(140), + [sym_variable_assignment] = STATE(255), + [sym_subscript] = STATE(254), + [sym_concatenation] = STATE(255), + [sym_string] = STATE(253), + [sym_simple_expansion] = STATE(253), + [sym_string_expansion] = STATE(253), + [sym_expansion] = STATE(253), + [sym_command_substitution] = STATE(253), + [sym_process_substitution] = STATE(253), + [aux_sym_declaration_command_repeat1] = STATE(255), + [sym_variable_name] = ACTIONS(448), + [anon_sym_PIPE] = ACTIONS(148), + [anon_sym_RPAREN] = ACTIONS(148), + [anon_sym_SEMI_SEMI] = ACTIONS(148), + [anon_sym_PIPE_AMP] = ACTIONS(148), + [anon_sym_AMP_AMP] = ACTIONS(148), + [anon_sym_PIPE_PIPE] = ACTIONS(148), + [sym__special_characters] = ACTIONS(450), + [anon_sym_DQUOTE] = ACTIONS(152), + [anon_sym_DOLLAR] = ACTIONS(154), + [sym_raw_string] = ACTIONS(452), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(160), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_LT_LPAREN] = ACTIONS(164), + [anon_sym_GT_LPAREN] = ACTIONS(164), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(168), + [sym_word] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(148), + [anon_sym_LF] = ACTIONS(170), + [anon_sym_AMP] = ACTIONS(148), }, [57] = { - [sym_concatenation] = STATE(95), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_string_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat2] = STATE(273), - [anon_sym_EQ_TILDE] = ACTIONS(142), - [anon_sym_EQ_EQ] = ACTIONS(142), - [sym__special_characters] = ACTIONS(144), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(148), - [sym_raw_string] = ACTIONS(150), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(156), - [anon_sym_LT_LPAREN] = ACTIONS(158), - [anon_sym_GT_LPAREN] = ACTIONS(158), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(160), + [sym_concatenation] = STATE(258), + [sym_string] = STATE(257), + [sym_simple_expansion] = STATE(257), + [sym_string_expansion] = STATE(257), + [sym_expansion] = STATE(257), + [sym_command_substitution] = STATE(257), + [sym_process_substitution] = STATE(257), + [aux_sym_unset_command_repeat1] = STATE(258), + [anon_sym_PIPE] = ACTIONS(172), + [anon_sym_RPAREN] = ACTIONS(172), + [anon_sym_SEMI_SEMI] = ACTIONS(172), + [anon_sym_PIPE_AMP] = ACTIONS(172), + [anon_sym_AMP_AMP] = ACTIONS(172), + [anon_sym_PIPE_PIPE] = ACTIONS(172), + [sym__special_characters] = ACTIONS(454), + [anon_sym_DQUOTE] = ACTIONS(176), + [anon_sym_DOLLAR] = ACTIONS(178), + [sym_raw_string] = ACTIONS(456), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(182), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(184), + [anon_sym_BQUOTE] = ACTIONS(186), + [anon_sym_LT_LPAREN] = ACTIONS(188), + [anon_sym_GT_LPAREN] = ACTIONS(188), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(190), + [sym_word] = ACTIONS(456), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_LF] = ACTIONS(192), + [anon_sym_AMP] = ACTIONS(172), }, [58] = { - [sym_variable_assignment] = STATE(107), - [sym_subscript] = STATE(283), - [sym_concatenation] = STATE(107), + [aux_sym_concatenation_repeat1] = STATE(259), + [sym_file_descriptor] = ACTIONS(210), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(214), + [anon_sym_RPAREN] = ACTIONS(214), + [anon_sym_SEMI_SEMI] = ACTIONS(214), + [anon_sym_PIPE_AMP] = ACTIONS(214), + [anon_sym_AMP_AMP] = ACTIONS(214), + [anon_sym_PIPE_PIPE] = ACTIONS(214), + [anon_sym_EQ_TILDE] = ACTIONS(214), + [anon_sym_EQ_EQ] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(214), + [anon_sym_GT] = ACTIONS(214), + [anon_sym_GT_GT] = ACTIONS(214), + [anon_sym_AMP_GT] = ACTIONS(214), + [anon_sym_AMP_GT_GT] = ACTIONS(214), + [anon_sym_LT_AMP] = ACTIONS(214), + [anon_sym_GT_AMP] = ACTIONS(214), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_LT_LT_DASH] = ACTIONS(214), + [anon_sym_LT_LT_LT] = ACTIONS(214), + [sym__special_characters] = ACTIONS(214), + [anon_sym_DQUOTE] = ACTIONS(214), + [anon_sym_DOLLAR] = ACTIONS(214), + [sym_raw_string] = ACTIONS(214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(214), + [anon_sym_BQUOTE] = ACTIONS(214), + [anon_sym_LT_LPAREN] = ACTIONS(214), + [anon_sym_GT_LPAREN] = ACTIONS(214), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(214), + [anon_sym_SEMI] = ACTIONS(214), + [anon_sym_LF] = ACTIONS(210), + [anon_sym_AMP] = ACTIONS(214), + }, + [59] = { + [aux_sym_concatenation_repeat1] = STATE(259), + [sym_file_descriptor] = ACTIONS(236), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(238), + [anon_sym_RPAREN] = ACTIONS(238), + [anon_sym_SEMI_SEMI] = ACTIONS(238), + [anon_sym_PIPE_AMP] = ACTIONS(238), + [anon_sym_AMP_AMP] = ACTIONS(238), + [anon_sym_PIPE_PIPE] = ACTIONS(238), + [anon_sym_EQ_TILDE] = ACTIONS(238), + [anon_sym_EQ_EQ] = ACTIONS(238), + [anon_sym_LT] = ACTIONS(238), + [anon_sym_GT] = ACTIONS(238), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(238), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_LT_LT] = ACTIONS(238), + [anon_sym_LT_LT_DASH] = ACTIONS(238), + [anon_sym_LT_LT_LT] = ACTIONS(238), + [sym__special_characters] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(238), + [anon_sym_SEMI] = ACTIONS(238), + [anon_sym_LF] = ACTIONS(236), + [anon_sym_AMP] = ACTIONS(238), + }, + [60] = { + [aux_sym_concatenation_repeat1] = STATE(259), + [sym_file_descriptor] = ACTIONS(236), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(238), + [anon_sym_RPAREN] = ACTIONS(238), + [anon_sym_SEMI_SEMI] = ACTIONS(238), + [anon_sym_LPAREN] = ACTIONS(458), + [anon_sym_PIPE_AMP] = ACTIONS(238), + [anon_sym_AMP_AMP] = ACTIONS(238), + [anon_sym_PIPE_PIPE] = ACTIONS(238), + [anon_sym_EQ_TILDE] = ACTIONS(238), + [anon_sym_EQ_EQ] = ACTIONS(238), + [anon_sym_LT] = ACTIONS(238), + [anon_sym_GT] = ACTIONS(238), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(238), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_LT_LT] = ACTIONS(238), + [anon_sym_LT_LT_DASH] = ACTIONS(238), + [anon_sym_LT_LT_LT] = ACTIONS(238), + [sym__special_characters] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(238), + [anon_sym_SEMI] = ACTIONS(238), + [anon_sym_LF] = ACTIONS(236), + [anon_sym_AMP] = ACTIONS(238), + }, + [61] = { + [anon_sym_PIPE] = ACTIONS(460), + [anon_sym_RPAREN] = ACTIONS(462), + [anon_sym_SEMI_SEMI] = ACTIONS(464), + [anon_sym_PIPE_AMP] = ACTIONS(460), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(464), + [anon_sym_LF] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(464), + }, + [62] = { + [sym_file_redirect] = STATE(271), + [sym_heredoc_redirect] = STATE(271), + [sym_herestring_redirect] = STATE(271), + [sym_concatenation] = STATE(191), + [sym_string] = STATE(270), + [sym_simple_expansion] = STATE(270), + [sym_string_expansion] = STATE(270), + [sym_expansion] = STATE(270), + [sym_command_substitution] = STATE(270), + [sym_process_substitution] = STATE(270), + [aux_sym_while_statement_repeat1] = STATE(271), + [aux_sym_command_repeat2] = STATE(272), + [sym_file_descriptor] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(324), + [anon_sym_RPAREN] = ACTIONS(324), + [anon_sym_SEMI_SEMI] = ACTIONS(324), + [anon_sym_PIPE_AMP] = ACTIONS(324), + [anon_sym_AMP_AMP] = ACTIONS(324), + [anon_sym_PIPE_PIPE] = ACTIONS(324), + [anon_sym_EQ_TILDE] = ACTIONS(472), + [anon_sym_EQ_EQ] = ACTIONS(472), + [anon_sym_LT] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(474), + [anon_sym_GT_GT] = ACTIONS(474), + [anon_sym_AMP_GT] = ACTIONS(474), + [anon_sym_AMP_GT_GT] = ACTIONS(474), + [anon_sym_LT_AMP] = ACTIONS(474), + [anon_sym_GT_AMP] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(476), + [sym__special_characters] = ACTIONS(478), + [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(342), + [anon_sym_BQUOTE] = ACTIONS(344), + [anon_sym_LT_LPAREN] = ACTIONS(346), + [anon_sym_GT_LPAREN] = ACTIONS(346), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(480), + [anon_sym_SEMI] = ACTIONS(324), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(324), + }, + [63] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(460), + [anon_sym_RPAREN] = ACTIONS(462), + [anon_sym_SEMI_SEMI] = ACTIONS(464), + [anon_sym_PIPE_AMP] = ACTIONS(460), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(464), + [anon_sym_LF] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(464), + }, + [64] = { + [sym__assignment] = STATE(35), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_PLUS_EQ] = ACTIONS(444), + [sym_comment] = ACTIONS(54), + }, + [65] = { + [sym__terminated_statement] = STATE(275), + [sym_for_statement] = STATE(273), + [sym_while_statement] = STATE(273), + [sym_if_statement] = STATE(273), + [sym_case_statement] = STATE(273), + [sym_function_definition] = STATE(273), + [sym_subshell] = STATE(273), + [sym_pipeline] = STATE(273), + [sym_list] = STATE(273), + [sym_command] = STATE(273), + [sym_command_name] = STATE(62), + [sym_bracket_command] = STATE(273), + [sym_variable_assignment] = STATE(274), + [sym_declaration_command] = STATE(273), + [sym_unset_command] = STATE(273), + [sym_subscript] = STATE(64), + [sym_file_redirect] = STATE(66), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(59), + [sym_simple_expansion] = STATE(59), + [sym_string_expansion] = STATE(59), + [sym_expansion] = STATE(59), + [sym_command_substitution] = STATE(59), + [sym_process_substitution] = STATE(59), + [aux_sym_program_repeat1] = STATE(275), + [aux_sym_command_repeat1] = STATE(66), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(86), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(88), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(90), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK_LBRACK] = ACTIONS(94), + [anon_sym_declare] = ACTIONS(96), + [anon_sym_typeset] = ACTIONS(96), + [anon_sym_export] = ACTIONS(96), + [anon_sym_readonly] = ACTIONS(96), + [anon_sym_local] = ACTIONS(96), + [anon_sym_unset] = ACTIONS(98), + [anon_sym_unsetenv] = ACTIONS(98), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(100), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(104), + }, + [66] = { + [sym_command_name] = STATE(276), + [sym_variable_assignment] = STATE(198), + [sym_subscript] = STATE(197), + [sym_file_redirect] = STATE(198), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(59), + [sym_simple_expansion] = STATE(59), + [sym_string_expansion] = STATE(59), + [sym_expansion] = STATE(59), + [sym_command_substitution] = STATE(59), + [sym_process_substitution] = STATE(59), + [aux_sym_command_repeat1] = STATE(198), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(356), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(482), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(102), + }, + [67] = { + [sym_concatenation] = STATE(279), [sym_string] = STATE(278), [sym_simple_expansion] = STATE(278), [sym_string_expansion] = STATE(278), [sym_expansion] = STATE(278), [sym_command_substitution] = STATE(278), [sym_process_substitution] = STATE(278), - [aux_sym_declaration_command_repeat1] = STATE(284), - [sym_variable_name] = ACTIONS(492), - [anon_sym_PIPE] = ACTIONS(164), - [anon_sym_RPAREN] = ACTIONS(164), - [anon_sym_SEMI_SEMI] = ACTIONS(164), - [anon_sym_PIPE_AMP] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(164), - [anon_sym_PIPE_PIPE] = ACTIONS(164), - [sym__special_characters] = ACTIONS(494), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DOLLAR] = ACTIONS(498), - [sym_raw_string] = ACTIONS(500), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(502), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(504), - [anon_sym_BQUOTE] = ACTIONS(506), - [anon_sym_LT_LPAREN] = ACTIONS(508), - [anon_sym_GT_LPAREN] = ACTIONS(508), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(184), - [sym_word] = ACTIONS(500), - [anon_sym_SEMI] = ACTIONS(164), - [anon_sym_LF] = ACTIONS(164), - [anon_sym_AMP] = ACTIONS(164), - }, - [59] = { - [sym_concatenation] = STATE(119), - [sym_string] = STATE(288), - [sym_simple_expansion] = STATE(288), - [sym_string_expansion] = STATE(288), - [sym_expansion] = STATE(288), - [sym_command_substitution] = STATE(288), - [sym_process_substitution] = STATE(288), - [aux_sym_unset_command_repeat1] = STATE(293), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_RPAREN] = ACTIONS(186), - [anon_sym_SEMI_SEMI] = ACTIONS(186), - [anon_sym_PIPE_AMP] = ACTIONS(186), - [anon_sym_AMP_AMP] = ACTIONS(186), - [anon_sym_PIPE_PIPE] = ACTIONS(186), - [sym__special_characters] = ACTIONS(510), - [anon_sym_DQUOTE] = ACTIONS(512), - [anon_sym_DOLLAR] = ACTIONS(514), - [sym_raw_string] = ACTIONS(516), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(518), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(520), - [anon_sym_BQUOTE] = ACTIONS(522), - [anon_sym_LT_LPAREN] = ACTIONS(524), - [anon_sym_GT_LPAREN] = ACTIONS(524), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(204), - [sym_word] = ACTIONS(516), - [anon_sym_SEMI] = ACTIONS(186), - [anon_sym_LF] = ACTIONS(186), - [anon_sym_AMP] = ACTIONS(186), - }, - [60] = { - [aux_sym_concatenation_repeat1] = STATE(295), - [sym_file_descriptor] = ACTIONS(224), - [sym__concat] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_RPAREN] = ACTIONS(228), - [anon_sym_SEMI_SEMI] = ACTIONS(228), - [anon_sym_PIPE_AMP] = ACTIONS(228), - [anon_sym_AMP_AMP] = ACTIONS(228), - [anon_sym_PIPE_PIPE] = ACTIONS(228), - [anon_sym_EQ_TILDE] = ACTIONS(228), - [anon_sym_EQ_EQ] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(228), - [anon_sym_GT] = ACTIONS(228), - [anon_sym_GT_GT] = ACTIONS(228), - [anon_sym_AMP_GT] = ACTIONS(228), - [anon_sym_AMP_GT_GT] = ACTIONS(228), - [anon_sym_LT_AMP] = ACTIONS(228), - [anon_sym_GT_AMP] = ACTIONS(228), - [anon_sym_LT_LT] = ACTIONS(228), - [anon_sym_LT_LT_DASH] = ACTIONS(228), - [anon_sym_LT_LT_LT] = ACTIONS(228), - [sym__special_characters] = ACTIONS(228), - [anon_sym_DQUOTE] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym_raw_string] = ACTIONS(228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(228), - [anon_sym_BQUOTE] = ACTIONS(228), - [anon_sym_LT_LPAREN] = ACTIONS(228), - [anon_sym_GT_LPAREN] = ACTIONS(228), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [anon_sym_LF] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(228), - }, - [61] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(297), - [anon_sym_DQUOTE] = ACTIONS(528), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [62] = { - [sym_string] = STATE(299), - [anon_sym_DQUOTE] = ACTIONS(106), - [anon_sym_DOLLAR] = ACTIONS(530), - [sym_raw_string] = ACTIONS(532), - [anon_sym_POUND] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(534), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_AT] = ACTIONS(530), - [anon_sym_QMARK] = ACTIONS(530), - [anon_sym_0] = ACTIONS(536), - [anon_sym__] = ACTIONS(536), - }, - [63] = { - [aux_sym_concatenation_repeat1] = STATE(295), - [sym_file_descriptor] = ACTIONS(250), - [sym__concat] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_RPAREN] = ACTIONS(252), - [anon_sym_SEMI_SEMI] = ACTIONS(252), - [anon_sym_PIPE_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(252), - [anon_sym_AMP_GT] = ACTIONS(252), - [anon_sym_AMP_GT_GT] = ACTIONS(252), - [anon_sym_LT_AMP] = ACTIONS(252), - [anon_sym_GT_AMP] = ACTIONS(252), - [anon_sym_LT_LT] = ACTIONS(252), - [anon_sym_LT_LT_DASH] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [sym__special_characters] = ACTIONS(252), - [anon_sym_DQUOTE] = ACTIONS(252), - [anon_sym_DOLLAR] = ACTIONS(252), - [sym_raw_string] = ACTIONS(252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(252), - [anon_sym_LT_LPAREN] = ACTIONS(252), - [anon_sym_GT_LPAREN] = ACTIONS(252), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(252), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_LF] = ACTIONS(252), - [anon_sym_AMP] = ACTIONS(252), - }, - [64] = { - [sym_subscript] = STATE(305), - [sym_variable_name] = ACTIONS(538), - [anon_sym_DOLLAR] = ACTIONS(540), - [anon_sym_POUND] = ACTIONS(542), - [anon_sym_DASH] = ACTIONS(540), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(540), - [anon_sym_QMARK] = ACTIONS(540), - [anon_sym_0] = ACTIONS(546), - [anon_sym__] = ACTIONS(546), - }, - [65] = { - [sym_for_statement] = STATE(306), - [sym_while_statement] = STATE(306), - [sym_if_statement] = STATE(306), - [sym_case_statement] = STATE(306), - [sym_function_definition] = STATE(306), - [sym_subshell] = STATE(306), - [sym_pipeline] = STATE(306), - [sym_list] = STATE(306), - [sym_command] = STATE(306), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(306), - [sym_variable_assignment] = STATE(307), - [sym_declaration_command] = STATE(306), - [sym_unset_command] = STATE(306), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [66] = { - [sym_for_statement] = STATE(308), - [sym_while_statement] = STATE(308), - [sym_if_statement] = STATE(308), - [sym_case_statement] = STATE(308), - [sym_function_definition] = STATE(308), - [sym_subshell] = STATE(308), - [sym_pipeline] = STATE(308), - [sym_list] = STATE(308), - [sym_command] = STATE(308), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(308), - [sym_variable_assignment] = STATE(309), - [sym_declaration_command] = STATE(308), - [sym_unset_command] = STATE(308), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [67] = { - [sym_for_statement] = STATE(310), - [sym_while_statement] = STATE(310), - [sym_if_statement] = STATE(310), - [sym_case_statement] = STATE(310), - [sym_function_definition] = STATE(310), - [sym_subshell] = STATE(310), - [sym_pipeline] = STATE(310), - [sym_list] = STATE(310), - [sym_command] = STATE(310), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(310), - [sym_variable_assignment] = STATE(311), - [sym_declaration_command] = STATE(310), - [sym_unset_command] = STATE(310), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [sym__special_characters] = ACTIONS(484), + [anon_sym_DQUOTE] = ACTIONS(486), + [anon_sym_DOLLAR] = ACTIONS(112), + [sym_raw_string] = ACTIONS(488), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(490), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(492), + [anon_sym_BQUOTE] = ACTIONS(494), + [anon_sym_LT_LPAREN] = ACTIONS(496), + [anon_sym_GT_LPAREN] = ACTIONS(496), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(488), + [sym_regex] = ACTIONS(498), }, [68] = { - [aux_sym_concatenation_repeat1] = STATE(295), - [sym_file_descriptor] = ACTIONS(250), - [sym__concat] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_RPAREN] = ACTIONS(252), - [anon_sym_SEMI_SEMI] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_PIPE_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(252), - [anon_sym_AMP_GT] = ACTIONS(252), - [anon_sym_AMP_GT_GT] = ACTIONS(252), - [anon_sym_LT_AMP] = ACTIONS(252), - [anon_sym_GT_AMP] = ACTIONS(252), - [anon_sym_LT_LT] = ACTIONS(252), - [anon_sym_LT_LT_DASH] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [sym__special_characters] = ACTIONS(252), - [anon_sym_DQUOTE] = ACTIONS(252), - [anon_sym_DOLLAR] = ACTIONS(252), - [sym_raw_string] = ACTIONS(252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(252), - [anon_sym_LT_LPAREN] = ACTIONS(252), - [anon_sym_GT_LPAREN] = ACTIONS(252), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(252), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_LF] = ACTIONS(252), - [anon_sym_AMP] = ACTIONS(252), + [aux_sym_concatenation_repeat1] = STATE(281), + [sym__concat] = ACTIONS(500), + [anon_sym_EQ_TILDE] = ACTIONS(502), + [anon_sym_EQ_EQ] = ACTIONS(502), + [anon_sym_RBRACK] = ACTIONS(504), + [sym__special_characters] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(504), + [anon_sym_DOLLAR] = ACTIONS(502), + [sym_raw_string] = ACTIONS(504), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(504), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(504), + [anon_sym_BQUOTE] = ACTIONS(504), + [anon_sym_LT_LPAREN] = ACTIONS(504), + [anon_sym_GT_LPAREN] = ACTIONS(504), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(502), }, [69] = { - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_RPAREN] = ACTIONS(552), - [anon_sym_SEMI_SEMI] = ACTIONS(554), - [anon_sym_PIPE_AMP] = ACTIONS(550), - [anon_sym_AMP_AMP] = ACTIONS(556), - [anon_sym_PIPE_PIPE] = ACTIONS(556), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LF] = ACTIONS(554), - [anon_sym_AMP] = ACTIONS(554), + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(506), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), }, [70] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [sym_concatenation] = STATE(208), - [sym_string] = STATE(322), - [sym_simple_expansion] = STATE(322), - [sym_string_expansion] = STATE(322), - [sym_expansion] = STATE(322), - [sym_command_substitution] = STATE(322), - [sym_process_substitution] = STATE(322), - [aux_sym_while_statement_repeat1] = STATE(323), - [aux_sym_command_repeat2] = STATE(324), - [sym_file_descriptor] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(354), - [anon_sym_RPAREN] = ACTIONS(354), - [anon_sym_SEMI_SEMI] = ACTIONS(354), - [anon_sym_PIPE_AMP] = ACTIONS(354), - [anon_sym_AMP_AMP] = ACTIONS(354), - [anon_sym_PIPE_PIPE] = ACTIONS(354), - [anon_sym_EQ_TILDE] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(562), - [anon_sym_AMP_GT] = ACTIONS(562), - [anon_sym_AMP_GT_GT] = ACTIONS(562), - [anon_sym_LT_AMP] = ACTIONS(562), - [anon_sym_GT_AMP] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(564), - [sym__special_characters] = ACTIONS(566), - [anon_sym_DQUOTE] = ACTIONS(568), - [anon_sym_DOLLAR] = ACTIONS(570), - [sym_raw_string] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_LT_LPAREN] = ACTIONS(580), - [anon_sym_GT_LPAREN] = ACTIONS(580), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(572), - [anon_sym_SEMI] = ACTIONS(354), - [anon_sym_LF] = ACTIONS(354), - [anon_sym_AMP] = ACTIONS(354), + [sym_string] = STATE(285), + [anon_sym_DQUOTE] = ACTIONS(110), + [anon_sym_DOLLAR] = ACTIONS(508), + [sym_raw_string] = ACTIONS(510), + [anon_sym_POUND] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(512), + [anon_sym_STAR] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_QMARK] = ACTIONS(508), + [anon_sym_0] = ACTIONS(514), + [anon_sym__] = ACTIONS(514), }, [71] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_RPAREN] = ACTIONS(552), - [anon_sym_SEMI_SEMI] = ACTIONS(554), - [anon_sym_PIPE_AMP] = ACTIONS(550), - [anon_sym_AMP_AMP] = ACTIONS(556), - [anon_sym_PIPE_PIPE] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LF] = ACTIONS(554), - [anon_sym_AMP] = ACTIONS(554), + [aux_sym_concatenation_repeat1] = STATE(281), + [sym__concat] = ACTIONS(500), + [anon_sym_EQ_TILDE] = ACTIONS(516), + [anon_sym_EQ_EQ] = ACTIONS(516), + [anon_sym_RBRACK] = ACTIONS(518), + [sym__special_characters] = ACTIONS(516), + [anon_sym_DQUOTE] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(516), + [sym_raw_string] = ACTIONS(518), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(518), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(518), + [anon_sym_BQUOTE] = ACTIONS(518), + [anon_sym_LT_LPAREN] = ACTIONS(518), + [anon_sym_GT_LPAREN] = ACTIONS(518), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(516), }, [72] = { - [sym__assignment] = STATE(37), - [anon_sym_EQ] = ACTIONS(488), - [anon_sym_PLUS_EQ] = ACTIONS(488), - [sym_comment] = ACTIONS(56), + [sym_subscript] = STATE(291), + [sym_variable_name] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(522), + [anon_sym_POUND] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(522), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(526), + [anon_sym_STAR] = ACTIONS(522), + [anon_sym_AT] = ACTIONS(522), + [anon_sym_QMARK] = ACTIONS(522), + [anon_sym_0] = ACTIONS(528), + [anon_sym__] = ACTIONS(528), }, [73] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(325), - [sym_while_statement] = STATE(325), - [sym_if_statement] = STATE(325), - [sym_case_statement] = STATE(325), - [sym_function_definition] = STATE(325), - [sym_subshell] = STATE(325), - [sym_pipeline] = STATE(325), - [sym_list] = STATE(325), - [sym_command] = STATE(325), - [sym_command_name] = STATE(70), - [sym_bracket_command] = STATE(325), - [sym_variable_assignment] = STATE(326), - [sym_declaration_command] = STATE(325), - [sym_unset_command] = STATE(325), - [sym_subscript] = STATE(72), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(63), - [sym_simple_expansion] = STATE(63), - [sym_string_expansion] = STATE(63), - [sym_expansion] = STATE(63), - [sym_command_substitution] = STATE(63), - [sym_process_substitution] = STATE(63), - [aux_sym_program_repeat1] = STATE(327), - [aux_sym_command_repeat1] = STATE(74), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(90), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(92), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(94), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(96), - [anon_sym_LBRACK_LBRACK] = ACTIONS(98), - [anon_sym_declare] = ACTIONS(100), - [anon_sym_typeset] = ACTIONS(100), - [anon_sym_export] = ACTIONS(100), - [anon_sym_readonly] = ACTIONS(100), - [anon_sym_local] = ACTIONS(100), - [anon_sym_unset] = ACTIONS(102), - [anon_sym_unsetenv] = ACTIONS(102), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(104), - [anon_sym_DQUOTE] = ACTIONS(106), - [anon_sym_DOLLAR] = ACTIONS(108), - [sym_raw_string] = ACTIONS(110), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(114), - [anon_sym_BQUOTE] = ACTIONS(116), - [anon_sym_LT_LPAREN] = ACTIONS(118), - [anon_sym_GT_LPAREN] = ACTIONS(118), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(120), + [sym_for_statement] = STATE(292), + [sym_while_statement] = STATE(292), + [sym_if_statement] = STATE(292), + [sym_case_statement] = STATE(292), + [sym_function_definition] = STATE(292), + [sym_subshell] = STATE(292), + [sym_pipeline] = STATE(292), + [sym_list] = STATE(292), + [sym_command] = STATE(292), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(292), + [sym_variable_assignment] = STATE(293), + [sym_declaration_command] = STATE(292), + [sym_unset_command] = STATE(292), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), }, [74] = { - [sym_command_name] = STATE(328), - [sym_variable_assignment] = STATE(30), - [sym_subscript] = STATE(214), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(63), - [sym_simple_expansion] = STATE(63), - [sym_string_expansion] = STATE(63), - [sym_expansion] = STATE(63), - [sym_command_substitution] = STATE(63), - [sym_process_substitution] = STATE(63), - [aux_sym_command_repeat1] = STATE(215), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(388), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(582), - [anon_sym_DQUOTE] = ACTIONS(106), - [anon_sym_DOLLAR] = ACTIONS(108), - [sym_raw_string] = ACTIONS(110), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(114), - [anon_sym_BQUOTE] = ACTIONS(116), - [anon_sym_LT_LPAREN] = ACTIONS(118), - [anon_sym_GT_LPAREN] = ACTIONS(118), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(584), + [sym_for_statement] = STATE(294), + [sym_while_statement] = STATE(294), + [sym_if_statement] = STATE(294), + [sym_case_statement] = STATE(294), + [sym_function_definition] = STATE(294), + [sym_subshell] = STATE(294), + [sym_pipeline] = STATE(294), + [sym_list] = STATE(294), + [sym_command] = STATE(294), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(294), + [sym_variable_assignment] = STATE(295), + [sym_declaration_command] = STATE(294), + [sym_unset_command] = STATE(294), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), }, [75] = { - [sym_concatenation] = STATE(331), - [sym_string] = STATE(330), - [sym_simple_expansion] = STATE(330), - [sym_string_expansion] = STATE(330), - [sym_expansion] = STATE(330), - [sym_command_substitution] = STATE(330), - [sym_process_substitution] = STATE(330), - [sym__special_characters] = ACTIONS(586), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_DOLLAR] = ACTIONS(590), - [sym_raw_string] = ACTIONS(592), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(594), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), - [anon_sym_BQUOTE] = ACTIONS(598), - [anon_sym_LT_LPAREN] = ACTIONS(600), - [anon_sym_GT_LPAREN] = ACTIONS(600), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(592), - [sym_regex] = ACTIONS(602), + [sym_for_statement] = STATE(296), + [sym_while_statement] = STATE(296), + [sym_if_statement] = STATE(296), + [sym_case_statement] = STATE(296), + [sym_function_definition] = STATE(296), + [sym_subshell] = STATE(296), + [sym_pipeline] = STATE(296), + [sym_list] = STATE(296), + [sym_command] = STATE(296), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(296), + [sym_variable_assignment] = STATE(297), + [sym_declaration_command] = STATE(296), + [sym_unset_command] = STATE(296), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), }, [76] = { - [aux_sym_concatenation_repeat1] = STATE(333), - [sym__concat] = ACTIONS(604), - [anon_sym_EQ_TILDE] = ACTIONS(606), - [anon_sym_EQ_EQ] = ACTIONS(606), - [anon_sym_RBRACK] = ACTIONS(608), - [sym__special_characters] = ACTIONS(610), - [anon_sym_DQUOTE] = ACTIONS(608), - [anon_sym_DOLLAR] = ACTIONS(606), - [sym_raw_string] = ACTIONS(608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(608), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(610), + [anon_sym_EQ_TILDE] = ACTIONS(516), + [anon_sym_EQ_EQ] = ACTIONS(516), + [anon_sym_RBRACK] = ACTIONS(518), + [sym__special_characters] = ACTIONS(516), + [anon_sym_DQUOTE] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(516), + [sym_raw_string] = ACTIONS(518), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(518), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(518), + [anon_sym_BQUOTE] = ACTIONS(518), + [anon_sym_LT_LPAREN] = ACTIONS(518), + [anon_sym_GT_LPAREN] = ACTIONS(518), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(516), }, [77] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(335), - [anon_sym_DQUOTE] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), + [sym_concatenation] = STATE(76), + [sym_string] = STATE(71), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [sym_expansion] = STATE(71), + [sym_command_substitution] = STATE(71), + [sym_process_substitution] = STATE(71), + [aux_sym_command_repeat2] = STATE(299), + [anon_sym_EQ_TILDE] = ACTIONS(106), + [anon_sym_EQ_EQ] = ACTIONS(106), + [anon_sym_RBRACK] = ACTIONS(530), + [sym__special_characters] = ACTIONS(532), + [anon_sym_DQUOTE] = ACTIONS(110), + [anon_sym_DOLLAR] = ACTIONS(112), + [sym_raw_string] = ACTIONS(114), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(118), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_LT_LPAREN] = ACTIONS(122), + [anon_sym_GT_LPAREN] = ACTIONS(122), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(124), }, [78] = { - [sym_string] = STATE(337), - [anon_sym_DQUOTE] = ACTIONS(126), - [anon_sym_DOLLAR] = ACTIONS(614), - [sym_raw_string] = ACTIONS(616), - [anon_sym_POUND] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(614), - [anon_sym_AT] = ACTIONS(614), - [anon_sym_QMARK] = ACTIONS(614), - [anon_sym_0] = ACTIONS(620), - [anon_sym__] = ACTIONS(620), + [sym_concatenation] = STATE(302), + [sym_string] = STATE(301), + [sym_simple_expansion] = STATE(301), + [sym_string_expansion] = STATE(301), + [sym_expansion] = STATE(301), + [sym_command_substitution] = STATE(301), + [sym_process_substitution] = STATE(301), + [sym__special_characters] = ACTIONS(534), + [anon_sym_DQUOTE] = ACTIONS(536), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(538), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(540), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(542), + [anon_sym_BQUOTE] = ACTIONS(544), + [anon_sym_LT_LPAREN] = ACTIONS(546), + [anon_sym_GT_LPAREN] = ACTIONS(546), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(538), + [sym_regex] = ACTIONS(548), }, [79] = { - [aux_sym_concatenation_repeat1] = STATE(333), - [sym__concat] = ACTIONS(604), - [anon_sym_EQ_TILDE] = ACTIONS(622), - [anon_sym_EQ_EQ] = ACTIONS(622), - [anon_sym_RBRACK] = ACTIONS(624), - [sym__special_characters] = ACTIONS(626), - [anon_sym_DQUOTE] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(622), - [sym_raw_string] = ACTIONS(624), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), - [anon_sym_BQUOTE] = ACTIONS(624), - [anon_sym_LT_LPAREN] = ACTIONS(624), - [anon_sym_GT_LPAREN] = ACTIONS(624), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(626), + [aux_sym_concatenation_repeat1] = STATE(304), + [sym__concat] = ACTIONS(550), + [anon_sym_EQ_TILDE] = ACTIONS(502), + [anon_sym_EQ_EQ] = ACTIONS(502), + [anon_sym_RBRACK_RBRACK] = ACTIONS(504), + [sym__special_characters] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(504), + [anon_sym_DOLLAR] = ACTIONS(502), + [sym_raw_string] = ACTIONS(504), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(504), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(504), + [anon_sym_BQUOTE] = ACTIONS(504), + [anon_sym_LT_LPAREN] = ACTIONS(504), + [anon_sym_GT_LPAREN] = ACTIONS(504), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(502), }, [80] = { - [sym_subscript] = STATE(343), - [sym_variable_name] = ACTIONS(628), - [anon_sym_DOLLAR] = ACTIONS(630), - [anon_sym_POUND] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(630), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(634), - [anon_sym_STAR] = ACTIONS(630), - [anon_sym_AT] = ACTIONS(630), - [anon_sym_QMARK] = ACTIONS(630), - [anon_sym_0] = ACTIONS(636), - [anon_sym__] = ACTIONS(636), + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(306), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), }, [81] = { - [sym_for_statement] = STATE(344), - [sym_while_statement] = STATE(344), - [sym_if_statement] = STATE(344), - [sym_case_statement] = STATE(344), - [sym_function_definition] = STATE(344), - [sym_subshell] = STATE(344), - [sym_pipeline] = STATE(344), - [sym_list] = STATE(344), - [sym_command] = STATE(344), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(344), - [sym_variable_assignment] = STATE(345), - [sym_declaration_command] = STATE(344), - [sym_unset_command] = STATE(344), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [sym_string] = STATE(308), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(554), + [sym_raw_string] = ACTIONS(556), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(554), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(558), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_0] = ACTIONS(560), + [anon_sym__] = ACTIONS(560), }, [82] = { - [sym_for_statement] = STATE(346), - [sym_while_statement] = STATE(346), - [sym_if_statement] = STATE(346), - [sym_case_statement] = STATE(346), - [sym_function_definition] = STATE(346), - [sym_subshell] = STATE(346), - [sym_pipeline] = STATE(346), - [sym_list] = STATE(346), - [sym_command] = STATE(346), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(346), - [sym_variable_assignment] = STATE(347), - [sym_declaration_command] = STATE(346), - [sym_unset_command] = STATE(346), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), + [aux_sym_concatenation_repeat1] = STATE(304), + [sym__concat] = ACTIONS(550), + [anon_sym_EQ_TILDE] = ACTIONS(516), + [anon_sym_EQ_EQ] = ACTIONS(516), + [anon_sym_RBRACK_RBRACK] = ACTIONS(518), + [sym__special_characters] = ACTIONS(516), + [anon_sym_DQUOTE] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(516), + [sym_raw_string] = ACTIONS(518), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(518), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(518), + [anon_sym_BQUOTE] = ACTIONS(518), + [anon_sym_LT_LPAREN] = ACTIONS(518), + [anon_sym_GT_LPAREN] = ACTIONS(518), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(516), }, [83] = { - [sym_for_statement] = STATE(348), - [sym_while_statement] = STATE(348), - [sym_if_statement] = STATE(348), - [sym_case_statement] = STATE(348), - [sym_function_definition] = STATE(348), - [sym_subshell] = STATE(348), - [sym_pipeline] = STATE(348), - [sym_list] = STATE(348), - [sym_command] = STATE(348), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(348), - [sym_variable_assignment] = STATE(349), - [sym_declaration_command] = STATE(348), - [sym_unset_command] = STATE(348), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [sym_subscript] = STATE(314), + [sym_variable_name] = ACTIONS(562), + [anon_sym_DOLLAR] = ACTIONS(564), + [anon_sym_POUND] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(564), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_AT] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(564), + [anon_sym_0] = ACTIONS(570), + [anon_sym__] = ACTIONS(570), }, [84] = { - [anon_sym_EQ_TILDE] = ACTIONS(622), - [anon_sym_EQ_EQ] = ACTIONS(622), - [anon_sym_RBRACK] = ACTIONS(624), - [sym__special_characters] = ACTIONS(626), - [anon_sym_DQUOTE] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(622), - [sym_raw_string] = ACTIONS(624), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), - [anon_sym_BQUOTE] = ACTIONS(624), - [anon_sym_LT_LPAREN] = ACTIONS(624), - [anon_sym_GT_LPAREN] = ACTIONS(624), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(626), + [sym_for_statement] = STATE(315), + [sym_while_statement] = STATE(315), + [sym_if_statement] = STATE(315), + [sym_case_statement] = STATE(315), + [sym_function_definition] = STATE(315), + [sym_subshell] = STATE(315), + [sym_pipeline] = STATE(315), + [sym_list] = STATE(315), + [sym_command] = STATE(315), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(315), + [sym_variable_assignment] = STATE(316), + [sym_declaration_command] = STATE(315), + [sym_unset_command] = STATE(315), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), }, [85] = { - [sym_concatenation] = STATE(84), - [sym_string] = STATE(79), - [sym_simple_expansion] = STATE(79), - [sym_string_expansion] = STATE(79), - [sym_expansion] = STATE(79), - [sym_command_substitution] = STATE(79), - [sym_process_substitution] = STATE(79), - [aux_sym_command_repeat2] = STATE(351), - [anon_sym_EQ_TILDE] = ACTIONS(122), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_RBRACK] = ACTIONS(638), - [sym__special_characters] = ACTIONS(640), - [anon_sym_DQUOTE] = ACTIONS(126), - [anon_sym_DOLLAR] = ACTIONS(128), - [sym_raw_string] = ACTIONS(130), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), - [anon_sym_BQUOTE] = ACTIONS(136), - [anon_sym_LT_LPAREN] = ACTIONS(138), - [anon_sym_GT_LPAREN] = ACTIONS(138), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(140), + [sym_for_statement] = STATE(317), + [sym_while_statement] = STATE(317), + [sym_if_statement] = STATE(317), + [sym_case_statement] = STATE(317), + [sym_function_definition] = STATE(317), + [sym_subshell] = STATE(317), + [sym_pipeline] = STATE(317), + [sym_list] = STATE(317), + [sym_command] = STATE(317), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(317), + [sym_variable_assignment] = STATE(318), + [sym_declaration_command] = STATE(317), + [sym_unset_command] = STATE(317), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), }, [86] = { - [sym_concatenation] = STATE(354), - [sym_string] = STATE(353), - [sym_simple_expansion] = STATE(353), - [sym_string_expansion] = STATE(353), - [sym_expansion] = STATE(353), - [sym_command_substitution] = STATE(353), - [sym_process_substitution] = STATE(353), - [sym__special_characters] = ACTIONS(642), - [anon_sym_DQUOTE] = ACTIONS(644), - [anon_sym_DOLLAR] = ACTIONS(646), - [sym_raw_string] = ACTIONS(648), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(650), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(652), - [anon_sym_BQUOTE] = ACTIONS(654), - [anon_sym_LT_LPAREN] = ACTIONS(656), - [anon_sym_GT_LPAREN] = ACTIONS(656), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(648), - [sym_regex] = ACTIONS(658), + [sym_for_statement] = STATE(319), + [sym_while_statement] = STATE(319), + [sym_if_statement] = STATE(319), + [sym_case_statement] = STATE(319), + [sym_function_definition] = STATE(319), + [sym_subshell] = STATE(319), + [sym_pipeline] = STATE(319), + [sym_list] = STATE(319), + [sym_command] = STATE(319), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(319), + [sym_variable_assignment] = STATE(320), + [sym_declaration_command] = STATE(319), + [sym_unset_command] = STATE(319), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), }, [87] = { - [aux_sym_concatenation_repeat1] = STATE(356), - [sym__concat] = ACTIONS(660), - [anon_sym_EQ_TILDE] = ACTIONS(606), - [anon_sym_EQ_EQ] = ACTIONS(606), - [anon_sym_RBRACK_RBRACK] = ACTIONS(608), - [sym__special_characters] = ACTIONS(610), - [anon_sym_DQUOTE] = ACTIONS(608), - [anon_sym_DOLLAR] = ACTIONS(606), - [sym_raw_string] = ACTIONS(608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(608), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(610), + [anon_sym_EQ_TILDE] = ACTIONS(516), + [anon_sym_EQ_EQ] = ACTIONS(516), + [anon_sym_RBRACK_RBRACK] = ACTIONS(518), + [sym__special_characters] = ACTIONS(516), + [anon_sym_DQUOTE] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(516), + [sym_raw_string] = ACTIONS(518), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(518), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(518), + [anon_sym_BQUOTE] = ACTIONS(518), + [anon_sym_LT_LPAREN] = ACTIONS(518), + [anon_sym_GT_LPAREN] = ACTIONS(518), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(516), }, [88] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(358), - [anon_sym_DQUOTE] = ACTIONS(662), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), + [sym_concatenation] = STATE(87), + [sym_string] = STATE(82), + [sym_simple_expansion] = STATE(82), + [sym_string_expansion] = STATE(82), + [sym_expansion] = STATE(82), + [sym_command_substitution] = STATE(82), + [sym_process_substitution] = STATE(82), + [aux_sym_command_repeat2] = STATE(321), + [anon_sym_EQ_TILDE] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(126), + [anon_sym_RBRACK_RBRACK] = ACTIONS(530), + [sym__special_characters] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(144), }, [89] = { - [sym_string] = STATE(360), - [anon_sym_DQUOTE] = ACTIONS(146), + [sym__assignment] = STATE(323), + [anon_sym_LBRACK] = ACTIONS(62), + [anon_sym_EQ] = ACTIONS(574), + [anon_sym_PLUS_EQ] = ACTIONS(574), + [sym_comment] = ACTIONS(54), + }, + [90] = { + [aux_sym_concatenation_repeat1] = STATE(325), + [sym__concat] = ACTIONS(576), + [sym_variable_name] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_SEMI_SEMI] = ACTIONS(580), + [anon_sym_PIPE_AMP] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(580), + [anon_sym_PIPE_PIPE] = ACTIONS(580), + [sym__special_characters] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_DOLLAR] = ACTIONS(580), + [sym_raw_string] = ACTIONS(580), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(580), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(580), + [anon_sym_BQUOTE] = ACTIONS(580), + [anon_sym_LT_LPAREN] = ACTIONS(580), + [anon_sym_GT_LPAREN] = ACTIONS(580), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(580), + [sym_word] = ACTIONS(580), + [anon_sym_SEMI] = ACTIONS(580), + [anon_sym_LF] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(580), + }, + [91] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(327), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [92] = { + [sym_string] = STATE(329), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_DOLLAR] = ACTIONS(586), + [sym_raw_string] = ACTIONS(588), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(590), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_0] = ACTIONS(592), + [anon_sym__] = ACTIONS(592), + }, + [93] = { + [aux_sym_concatenation_repeat1] = STATE(325), + [sym__concat] = ACTIONS(576), + [sym_variable_name] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_SEMI_SEMI] = ACTIONS(596), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [sym__special_characters] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(596), + [sym_raw_string] = ACTIONS(596), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_LT_LPAREN] = ACTIONS(596), + [anon_sym_GT_LPAREN] = ACTIONS(596), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(596), + [sym_word] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_LF] = ACTIONS(594), + [anon_sym_AMP] = ACTIONS(596), + }, + [94] = { + [sym_subscript] = STATE(335), + [sym_variable_name] = ACTIONS(598), + [anon_sym_DOLLAR] = ACTIONS(600), + [anon_sym_POUND] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(600), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_AT] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_0] = ACTIONS(606), + [anon_sym__] = ACTIONS(606), + }, + [95] = { + [sym_for_statement] = STATE(336), + [sym_while_statement] = STATE(336), + [sym_if_statement] = STATE(336), + [sym_case_statement] = STATE(336), + [sym_function_definition] = STATE(336), + [sym_subshell] = STATE(336), + [sym_pipeline] = STATE(336), + [sym_list] = STATE(336), + [sym_command] = STATE(336), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(336), + [sym_variable_assignment] = STATE(337), + [sym_declaration_command] = STATE(336), + [sym_unset_command] = STATE(336), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [96] = { + [sym_for_statement] = STATE(338), + [sym_while_statement] = STATE(338), + [sym_if_statement] = STATE(338), + [sym_case_statement] = STATE(338), + [sym_function_definition] = STATE(338), + [sym_subshell] = STATE(338), + [sym_pipeline] = STATE(338), + [sym_list] = STATE(338), + [sym_command] = STATE(338), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(338), + [sym_variable_assignment] = STATE(339), + [sym_declaration_command] = STATE(338), + [sym_unset_command] = STATE(338), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), + }, + [97] = { + [sym_for_statement] = STATE(340), + [sym_while_statement] = STATE(340), + [sym_if_statement] = STATE(340), + [sym_case_statement] = STATE(340), + [sym_function_definition] = STATE(340), + [sym_subshell] = STATE(340), + [sym_pipeline] = STATE(340), + [sym_list] = STATE(340), + [sym_command] = STATE(340), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(340), + [sym_variable_assignment] = STATE(341), + [sym_declaration_command] = STATE(340), + [sym_unset_command] = STATE(340), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [98] = { + [sym_variable_name] = ACTIONS(608), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_RPAREN] = ACTIONS(610), + [anon_sym_SEMI_SEMI] = ACTIONS(610), + [anon_sym_PIPE_AMP] = ACTIONS(610), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_PIPE_PIPE] = ACTIONS(610), + [sym__special_characters] = ACTIONS(610), + [anon_sym_DQUOTE] = ACTIONS(610), + [anon_sym_DOLLAR] = ACTIONS(610), + [sym_raw_string] = ACTIONS(610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(610), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(610), + [anon_sym_BQUOTE] = ACTIONS(610), + [anon_sym_LT_LPAREN] = ACTIONS(610), + [anon_sym_GT_LPAREN] = ACTIONS(610), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(610), + [sym_word] = ACTIONS(610), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_LF] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(610), + }, + [99] = { + [sym__assignment] = STATE(323), + [anon_sym_EQ] = ACTIONS(574), + [anon_sym_PLUS_EQ] = ACTIONS(574), + [sym_comment] = ACTIONS(54), + }, + [100] = { + [sym_variable_assignment] = STATE(342), + [sym_subscript] = STATE(99), + [sym_concatenation] = STATE(342), + [sym_string] = STATE(93), + [sym_simple_expansion] = STATE(93), + [sym_string_expansion] = STATE(93), + [sym_expansion] = STATE(93), + [sym_command_substitution] = STATE(93), + [sym_process_substitution] = STATE(93), + [aux_sym_declaration_command_repeat1] = STATE(342), + [sym_variable_name] = ACTIONS(146), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_SEMI_SEMI] = ACTIONS(612), + [anon_sym_PIPE_AMP] = ACTIONS(612), + [anon_sym_AMP_AMP] = ACTIONS(612), + [anon_sym_PIPE_PIPE] = ACTIONS(612), + [sym__special_characters] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(152), + [anon_sym_DOLLAR] = ACTIONS(154), + [sym_raw_string] = ACTIONS(156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(160), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_LT_LPAREN] = ACTIONS(164), + [anon_sym_GT_LPAREN] = ACTIONS(164), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(168), + [sym_word] = ACTIONS(156), + [anon_sym_SEMI] = ACTIONS(612), + [anon_sym_LF] = ACTIONS(614), + [anon_sym_AMP] = ACTIONS(612), + }, + [101] = { + [aux_sym_concatenation_repeat1] = STATE(344), + [sym__concat] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(618), + [anon_sym_SEMI_SEMI] = ACTIONS(618), + [anon_sym_PIPE_AMP] = ACTIONS(618), + [anon_sym_AMP_AMP] = ACTIONS(618), + [anon_sym_PIPE_PIPE] = ACTIONS(618), + [sym__special_characters] = ACTIONS(618), + [anon_sym_DQUOTE] = ACTIONS(618), + [anon_sym_DOLLAR] = ACTIONS(618), + [sym_raw_string] = ACTIONS(618), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(618), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(618), + [anon_sym_BQUOTE] = ACTIONS(618), + [anon_sym_LT_LPAREN] = ACTIONS(618), + [anon_sym_GT_LPAREN] = ACTIONS(618), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(618), + [sym_word] = ACTIONS(618), + [anon_sym_SEMI] = ACTIONS(618), + [anon_sym_LF] = ACTIONS(620), + [anon_sym_AMP] = ACTIONS(618), + }, + [102] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(346), + [anon_sym_DQUOTE] = ACTIONS(622), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [103] = { + [sym_string] = STATE(348), + [anon_sym_DQUOTE] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(626), + [sym_raw_string] = ACTIONS(628), + [anon_sym_POUND] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(626), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(630), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_0] = ACTIONS(632), + [anon_sym__] = ACTIONS(632), + }, + [104] = { + [aux_sym_concatenation_repeat1] = STATE(344), + [sym__concat] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(634), + [anon_sym_SEMI_SEMI] = ACTIONS(634), + [anon_sym_PIPE_AMP] = ACTIONS(634), + [anon_sym_AMP_AMP] = ACTIONS(634), + [anon_sym_PIPE_PIPE] = ACTIONS(634), + [sym__special_characters] = ACTIONS(634), + [anon_sym_DQUOTE] = ACTIONS(634), + [anon_sym_DOLLAR] = ACTIONS(634), + [sym_raw_string] = ACTIONS(634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(634), + [anon_sym_BQUOTE] = ACTIONS(634), + [anon_sym_LT_LPAREN] = ACTIONS(634), + [anon_sym_GT_LPAREN] = ACTIONS(634), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(634), + [sym_word] = ACTIONS(634), + [anon_sym_SEMI] = ACTIONS(634), + [anon_sym_LF] = ACTIONS(636), + [anon_sym_AMP] = ACTIONS(634), + }, + [105] = { + [sym_subscript] = STATE(354), + [sym_variable_name] = ACTIONS(638), + [anon_sym_DOLLAR] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(640), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_0] = ACTIONS(646), + [anon_sym__] = ACTIONS(646), + }, + [106] = { + [sym_for_statement] = STATE(355), + [sym_while_statement] = STATE(355), + [sym_if_statement] = STATE(355), + [sym_case_statement] = STATE(355), + [sym_function_definition] = STATE(355), + [sym_subshell] = STATE(355), + [sym_pipeline] = STATE(355), + [sym_list] = STATE(355), + [sym_command] = STATE(355), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(355), + [sym_variable_assignment] = STATE(356), + [sym_declaration_command] = STATE(355), + [sym_unset_command] = STATE(355), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [107] = { + [sym_for_statement] = STATE(357), + [sym_while_statement] = STATE(357), + [sym_if_statement] = STATE(357), + [sym_case_statement] = STATE(357), + [sym_function_definition] = STATE(357), + [sym_subshell] = STATE(357), + [sym_pipeline] = STATE(357), + [sym_list] = STATE(357), + [sym_command] = STATE(357), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(357), + [sym_variable_assignment] = STATE(358), + [sym_declaration_command] = STATE(357), + [sym_unset_command] = STATE(357), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), + }, + [108] = { + [sym_for_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_case_statement] = STATE(359), + [sym_function_definition] = STATE(359), + [sym_subshell] = STATE(359), + [sym_pipeline] = STATE(359), + [sym_list] = STATE(359), + [sym_command] = STATE(359), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(359), + [sym_variable_assignment] = STATE(360), + [sym_declaration_command] = STATE(359), + [sym_unset_command] = STATE(359), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [109] = { + [anon_sym_PIPE] = ACTIONS(648), + [anon_sym_RPAREN] = ACTIONS(648), + [anon_sym_SEMI_SEMI] = ACTIONS(648), + [anon_sym_PIPE_AMP] = ACTIONS(648), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [sym__special_characters] = ACTIONS(648), + [anon_sym_DQUOTE] = ACTIONS(648), + [anon_sym_DOLLAR] = ACTIONS(648), + [sym_raw_string] = ACTIONS(648), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(648), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(648), + [anon_sym_BQUOTE] = ACTIONS(648), + [anon_sym_LT_LPAREN] = ACTIONS(648), + [anon_sym_GT_LPAREN] = ACTIONS(648), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(648), + [sym_word] = ACTIONS(648), + [anon_sym_SEMI] = ACTIONS(648), + [anon_sym_LF] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(648), + }, + [110] = { + [sym_concatenation] = STATE(361), + [sym_string] = STATE(104), + [sym_simple_expansion] = STATE(104), + [sym_string_expansion] = STATE(104), + [sym_expansion] = STATE(104), + [sym_command_substitution] = STATE(104), + [sym_process_substitution] = STATE(104), + [aux_sym_unset_command_repeat1] = STATE(361), + [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_SEMI_SEMI] = ACTIONS(652), + [anon_sym_PIPE_AMP] = ACTIONS(652), + [anon_sym_AMP_AMP] = ACTIONS(652), + [anon_sym_PIPE_PIPE] = ACTIONS(652), + [sym__special_characters] = ACTIONS(174), + [anon_sym_DQUOTE] = ACTIONS(176), + [anon_sym_DOLLAR] = ACTIONS(178), + [sym_raw_string] = ACTIONS(180), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(182), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(184), + [anon_sym_BQUOTE] = ACTIONS(186), + [anon_sym_LT_LPAREN] = ACTIONS(188), + [anon_sym_GT_LPAREN] = ACTIONS(188), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(190), + [sym_word] = ACTIONS(180), + [anon_sym_SEMI] = ACTIONS(652), + [anon_sym_LF] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(652), + }, + [111] = { + [aux_sym_concatenation_repeat1] = STATE(363), + [sym_file_descriptor] = ACTIONS(656), + [sym__concat] = ACTIONS(658), + [sym_variable_name] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(660), + [anon_sym_GT] = ACTIONS(660), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_AMP_GT] = ACTIONS(660), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [sym__special_characters] = ACTIONS(656), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_DOLLAR] = ACTIONS(660), + [sym_raw_string] = ACTIONS(656), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(656), + [anon_sym_BQUOTE] = ACTIONS(656), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(656), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(656), + }, + [112] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(365), + [anon_sym_DQUOTE] = ACTIONS(662), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [113] = { + [sym_string] = STATE(367), + [anon_sym_DQUOTE] = ACTIONS(196), [anon_sym_DOLLAR] = ACTIONS(664), [sym_raw_string] = ACTIONS(666), [anon_sym_POUND] = ACTIONS(664), [anon_sym_DASH] = ACTIONS(664), - [sym_comment] = ACTIONS(182), + [sym_comment] = ACTIONS(166), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(668), [anon_sym_STAR] = ACTIONS(664), [anon_sym_AT] = ACTIONS(664), @@ -14356,271 +14217,5301 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(670), [anon_sym__] = ACTIONS(670), }, - [90] = { - [aux_sym_concatenation_repeat1] = STATE(356), - [sym__concat] = ACTIONS(660), - [anon_sym_EQ_TILDE] = ACTIONS(622), - [anon_sym_EQ_EQ] = ACTIONS(622), - [anon_sym_RBRACK_RBRACK] = ACTIONS(624), - [sym__special_characters] = ACTIONS(626), - [anon_sym_DQUOTE] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(622), - [sym_raw_string] = ACTIONS(624), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), - [anon_sym_BQUOTE] = ACTIONS(624), - [anon_sym_LT_LPAREN] = ACTIONS(624), - [anon_sym_GT_LPAREN] = ACTIONS(624), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(626), - }, - [91] = { - [sym_subscript] = STATE(366), + [114] = { + [aux_sym_concatenation_repeat1] = STATE(363), + [sym_file_descriptor] = ACTIONS(672), + [sym__concat] = ACTIONS(658), [sym_variable_name] = ACTIONS(672), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(672), + [anon_sym_AMP_GT] = ACTIONS(674), + [anon_sym_AMP_GT_GT] = ACTIONS(672), + [anon_sym_LT_AMP] = ACTIONS(672), + [anon_sym_GT_AMP] = ACTIONS(672), + [sym__special_characters] = ACTIONS(672), + [anon_sym_DQUOTE] = ACTIONS(672), [anon_sym_DOLLAR] = ACTIONS(674), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(674), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(678), - [anon_sym_STAR] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(674), - [anon_sym_0] = ACTIONS(680), - [anon_sym__] = ACTIONS(680), + [sym_raw_string] = ACTIONS(672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(672), + [anon_sym_BQUOTE] = ACTIONS(672), + [anon_sym_LT_LPAREN] = ACTIONS(672), + [anon_sym_GT_LPAREN] = ACTIONS(672), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(672), }, - [92] = { - [sym_for_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_case_statement] = STATE(367), - [sym_function_definition] = STATE(367), - [sym_subshell] = STATE(367), - [sym_pipeline] = STATE(367), - [sym_list] = STATE(367), - [sym_command] = STATE(367), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(367), - [sym_variable_assignment] = STATE(368), - [sym_declaration_command] = STATE(367), - [sym_unset_command] = STATE(367), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [115] = { + [sym_subscript] = STATE(373), + [sym_variable_name] = ACTIONS(676), + [anon_sym_DOLLAR] = ACTIONS(678), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_DASH] = ACTIONS(678), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_AT] = ACTIONS(678), + [anon_sym_QMARK] = ACTIONS(678), + [anon_sym_0] = ACTIONS(684), + [anon_sym__] = ACTIONS(684), }, - [93] = { - [sym_for_statement] = STATE(369), - [sym_while_statement] = STATE(369), - [sym_if_statement] = STATE(369), - [sym_case_statement] = STATE(369), - [sym_function_definition] = STATE(369), - [sym_subshell] = STATE(369), - [sym_pipeline] = STATE(369), - [sym_list] = STATE(369), - [sym_command] = STATE(369), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(369), - [sym_variable_assignment] = STATE(370), - [sym_declaration_command] = STATE(369), - [sym_unset_command] = STATE(369), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), + [116] = { + [sym_for_statement] = STATE(374), + [sym_while_statement] = STATE(374), + [sym_if_statement] = STATE(374), + [sym_case_statement] = STATE(374), + [sym_function_definition] = STATE(374), + [sym_subshell] = STATE(374), + [sym_pipeline] = STATE(374), + [sym_list] = STATE(374), + [sym_command] = STATE(374), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(374), + [sym_variable_assignment] = STATE(375), + [sym_declaration_command] = STATE(374), + [sym_unset_command] = STATE(374), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), }, - [94] = { - [sym_for_statement] = STATE(371), - [sym_while_statement] = STATE(371), - [sym_if_statement] = STATE(371), - [sym_case_statement] = STATE(371), - [sym_function_definition] = STATE(371), - [sym_subshell] = STATE(371), - [sym_pipeline] = STATE(371), - [sym_list] = STATE(371), - [sym_command] = STATE(371), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(371), - [sym_variable_assignment] = STATE(372), - [sym_declaration_command] = STATE(371), - [sym_unset_command] = STATE(371), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [117] = { + [sym_for_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_function_definition] = STATE(376), + [sym_subshell] = STATE(376), + [sym_pipeline] = STATE(376), + [sym_list] = STATE(376), + [sym_command] = STATE(376), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(376), + [sym_variable_assignment] = STATE(377), + [sym_declaration_command] = STATE(376), + [sym_unset_command] = STATE(376), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), }, - [95] = { - [anon_sym_EQ_TILDE] = ACTIONS(622), - [anon_sym_EQ_EQ] = ACTIONS(622), - [anon_sym_RBRACK_RBRACK] = ACTIONS(624), - [sym__special_characters] = ACTIONS(626), - [anon_sym_DQUOTE] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(622), - [sym_raw_string] = ACTIONS(624), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), - [anon_sym_BQUOTE] = ACTIONS(624), - [anon_sym_LT_LPAREN] = ACTIONS(624), - [anon_sym_GT_LPAREN] = ACTIONS(624), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(626), + [118] = { + [sym_for_statement] = STATE(378), + [sym_while_statement] = STATE(378), + [sym_if_statement] = STATE(378), + [sym_case_statement] = STATE(378), + [sym_function_definition] = STATE(378), + [sym_subshell] = STATE(378), + [sym_pipeline] = STATE(378), + [sym_list] = STATE(378), + [sym_command] = STATE(378), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(378), + [sym_variable_assignment] = STATE(379), + [sym_declaration_command] = STATE(378), + [sym_unset_command] = STATE(378), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), }, - [96] = { - [sym_concatenation] = STATE(95), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_string_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat2] = STATE(373), - [anon_sym_EQ_TILDE] = ACTIONS(142), - [anon_sym_EQ_EQ] = ACTIONS(142), - [anon_sym_RBRACK_RBRACK] = ACTIONS(638), - [sym__special_characters] = ACTIONS(682), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(148), - [sym_raw_string] = ACTIONS(150), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(156), - [anon_sym_LT_LPAREN] = ACTIONS(158), - [anon_sym_GT_LPAREN] = ACTIONS(158), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(160), + [119] = { + [sym_file_descriptor] = ACTIONS(672), + [sym_variable_name] = ACTIONS(672), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(672), + [anon_sym_AMP_GT] = ACTIONS(674), + [anon_sym_AMP_GT_GT] = ACTIONS(672), + [anon_sym_LT_AMP] = ACTIONS(672), + [anon_sym_GT_AMP] = ACTIONS(672), + [sym__special_characters] = ACTIONS(672), + [anon_sym_DQUOTE] = ACTIONS(672), + [anon_sym_DOLLAR] = ACTIONS(674), + [sym_raw_string] = ACTIONS(672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(672), + [anon_sym_BQUOTE] = ACTIONS(672), + [anon_sym_LT_LPAREN] = ACTIONS(672), + [anon_sym_GT_LPAREN] = ACTIONS(672), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(672), }, - [97] = { - [sym__assignment] = STATE(375), - [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(684), - [anon_sym_PLUS_EQ] = ACTIONS(684), - [sym_comment] = ACTIONS(56), + [120] = { + [sym_string] = STATE(380), + [sym_simple_expansion] = STATE(380), + [sym_string_expansion] = STATE(380), + [sym_expansion] = STATE(380), + [sym_command_substitution] = STATE(380), + [sym_process_substitution] = STATE(380), + [sym__special_characters] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(686), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(686), }, - [98] = { - [aux_sym_concatenation_repeat1] = STATE(377), - [sym__concat] = ACTIONS(686), + [121] = { + [aux_sym_concatenation_repeat1] = STATE(381), + [sym_file_descriptor] = ACTIONS(688), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_EQ_TILDE] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(690), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_LT_LT_DASH] = ACTIONS(690), + [anon_sym_LT_LT_LT] = ACTIONS(690), + [sym__special_characters] = ACTIONS(690), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(690), + [anon_sym_BQUOTE] = ACTIONS(690), + [anon_sym_LT_LPAREN] = ACTIONS(690), + [anon_sym_GT_LPAREN] = ACTIONS(690), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(690), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), + }, + [122] = { + [sym_file_descriptor] = ACTIONS(692), + [sym__concat] = ACTIONS(692), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(694), + [anon_sym_SEMI_SEMI] = ACTIONS(694), + [anon_sym_PIPE_AMP] = ACTIONS(694), + [anon_sym_AMP_AMP] = ACTIONS(694), + [anon_sym_PIPE_PIPE] = ACTIONS(694), + [anon_sym_EQ_TILDE] = ACTIONS(694), + [anon_sym_EQ_EQ] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_AMP_GT] = ACTIONS(694), + [anon_sym_AMP_GT_GT] = ACTIONS(694), + [anon_sym_LT_AMP] = ACTIONS(694), + [anon_sym_GT_AMP] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_LT_LT_DASH] = ACTIONS(694), + [anon_sym_LT_LT_LT] = ACTIONS(694), + [sym__special_characters] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(694), + [sym_raw_string] = ACTIONS(694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(694), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LT_LPAREN] = ACTIONS(694), + [anon_sym_GT_LPAREN] = ACTIONS(694), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), + }, + [123] = { + [anon_sym_DOLLAR] = ACTIONS(696), + [sym__string_content] = ACTIONS(698), + [anon_sym_POUND] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(700), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(702), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_AT] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(700), + [anon_sym_0] = ACTIONS(696), + [anon_sym__] = ACTIONS(696), + }, + [124] = { + [sym__concat] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(706), + [anon_sym_DOLLAR] = ACTIONS(706), + [sym__string_content] = ACTIONS(708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(706), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(706), + [anon_sym_BQUOTE] = ACTIONS(706), + [sym_comment] = ACTIONS(166), + }, + [125] = { + [sym_subscript] = STATE(390), + [sym_variable_name] = ACTIONS(710), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_POUND] = ACTIONS(714), + [anon_sym_DASH] = ACTIONS(712), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(716), + [anon_sym_STAR] = ACTIONS(712), + [anon_sym_AT] = ACTIONS(712), + [anon_sym_QMARK] = ACTIONS(712), + [anon_sym_0] = ACTIONS(718), + [anon_sym__] = ACTIONS(718), + }, + [126] = { + [sym_for_statement] = STATE(391), + [sym_while_statement] = STATE(391), + [sym_if_statement] = STATE(391), + [sym_case_statement] = STATE(391), + [sym_function_definition] = STATE(391), + [sym_subshell] = STATE(391), + [sym_pipeline] = STATE(391), + [sym_list] = STATE(391), + [sym_command] = STATE(391), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(391), + [sym_variable_assignment] = STATE(392), + [sym_declaration_command] = STATE(391), + [sym_unset_command] = STATE(391), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [127] = { + [sym_for_statement] = STATE(393), + [sym_while_statement] = STATE(393), + [sym_if_statement] = STATE(393), + [sym_case_statement] = STATE(393), + [sym_function_definition] = STATE(393), + [sym_subshell] = STATE(393), + [sym_pipeline] = STATE(393), + [sym_list] = STATE(393), + [sym_command] = STATE(393), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(393), + [sym_variable_assignment] = STATE(394), + [sym_declaration_command] = STATE(393), + [sym_unset_command] = STATE(393), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), + }, + [128] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [129] = { + [sym_file_descriptor] = ACTIONS(722), + [sym__concat] = ACTIONS(722), + [anon_sym_PIPE] = ACTIONS(724), + [anon_sym_RPAREN] = ACTIONS(724), + [anon_sym_SEMI_SEMI] = ACTIONS(724), + [anon_sym_PIPE_AMP] = ACTIONS(724), + [anon_sym_AMP_AMP] = ACTIONS(724), + [anon_sym_PIPE_PIPE] = ACTIONS(724), + [anon_sym_EQ_TILDE] = ACTIONS(724), + [anon_sym_EQ_EQ] = ACTIONS(724), + [anon_sym_LT] = ACTIONS(724), + [anon_sym_GT] = ACTIONS(724), + [anon_sym_GT_GT] = ACTIONS(724), + [anon_sym_AMP_GT] = ACTIONS(724), + [anon_sym_AMP_GT_GT] = ACTIONS(724), + [anon_sym_LT_AMP] = ACTIONS(724), + [anon_sym_GT_AMP] = ACTIONS(724), + [anon_sym_LT_LT] = ACTIONS(724), + [anon_sym_LT_LT_DASH] = ACTIONS(724), + [anon_sym_LT_LT_LT] = ACTIONS(724), + [sym__special_characters] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(724), + [sym_raw_string] = ACTIONS(724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(724), + [anon_sym_BQUOTE] = ACTIONS(724), + [anon_sym_LT_LPAREN] = ACTIONS(724), + [anon_sym_GT_LPAREN] = ACTIONS(724), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(724), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LF] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(724), + }, + [130] = { + [sym_file_descriptor] = ACTIONS(726), + [sym__concat] = ACTIONS(726), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_SEMI_SEMI] = ACTIONS(728), + [anon_sym_PIPE_AMP] = ACTIONS(728), + [anon_sym_AMP_AMP] = ACTIONS(728), + [anon_sym_PIPE_PIPE] = ACTIONS(728), + [anon_sym_EQ_TILDE] = ACTIONS(728), + [anon_sym_EQ_EQ] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(728), + [anon_sym_GT] = ACTIONS(728), + [anon_sym_GT_GT] = ACTIONS(728), + [anon_sym_AMP_GT] = ACTIONS(728), + [anon_sym_AMP_GT_GT] = ACTIONS(728), + [anon_sym_LT_AMP] = ACTIONS(728), + [anon_sym_GT_AMP] = ACTIONS(728), + [anon_sym_LT_LT] = ACTIONS(728), + [anon_sym_LT_LT_DASH] = ACTIONS(728), + [anon_sym_LT_LT_LT] = ACTIONS(728), + [sym__special_characters] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(728), + [anon_sym_DOLLAR] = ACTIONS(728), + [sym_raw_string] = ACTIONS(728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(728), + [anon_sym_BQUOTE] = ACTIONS(728), + [anon_sym_LT_LPAREN] = ACTIONS(728), + [anon_sym_GT_LPAREN] = ACTIONS(728), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(728), + [anon_sym_SEMI] = ACTIONS(728), + [anon_sym_LF] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(728), + }, + [131] = { + [sym_file_descriptor] = ACTIONS(730), + [sym__concat] = ACTIONS(730), + [anon_sym_PIPE] = ACTIONS(732), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_SEMI_SEMI] = ACTIONS(732), + [anon_sym_PIPE_AMP] = ACTIONS(732), + [anon_sym_AMP_AMP] = ACTIONS(732), + [anon_sym_PIPE_PIPE] = ACTIONS(732), + [anon_sym_EQ_TILDE] = ACTIONS(732), + [anon_sym_EQ_EQ] = ACTIONS(732), + [anon_sym_LT] = ACTIONS(732), + [anon_sym_GT] = ACTIONS(732), + [anon_sym_GT_GT] = ACTIONS(732), + [anon_sym_AMP_GT] = ACTIONS(732), + [anon_sym_AMP_GT_GT] = ACTIONS(732), + [anon_sym_LT_AMP] = ACTIONS(732), + [anon_sym_GT_AMP] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(732), + [anon_sym_LT_LT_DASH] = ACTIONS(732), + [anon_sym_LT_LT_LT] = ACTIONS(732), + [sym__special_characters] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_DOLLAR] = ACTIONS(732), + [sym_raw_string] = ACTIONS(732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(732), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(732), + [anon_sym_BQUOTE] = ACTIONS(732), + [anon_sym_LT_LPAREN] = ACTIONS(732), + [anon_sym_GT_LPAREN] = ACTIONS(732), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(732), + [anon_sym_SEMI] = ACTIONS(732), + [anon_sym_LF] = ACTIONS(730), + [anon_sym_AMP] = ACTIONS(732), + }, + [132] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(736), + [sym_comment] = ACTIONS(54), + }, + [133] = { + [sym_concatenation] = STATE(409), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(409), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(740), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(754), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_COLON_QMARK] = ACTIONS(740), + [anon_sym_COLON_DASH] = ACTIONS(740), + [anon_sym_PERCENT] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [134] = { + [sym_subscript] = STATE(413), + [sym_variable_name] = ACTIONS(764), + [anon_sym_DOLLAR] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(768), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_AT] = ACTIONS(766), + [anon_sym_QMARK] = ACTIONS(766), + [anon_sym_0] = ACTIONS(770), + [anon_sym__] = ACTIONS(770), + }, + [135] = { + [sym_concatenation] = STATE(416), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(416), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_EQ] = ACTIONS(774), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(776), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(778), + [anon_sym_COLON] = ACTIONS(774), + [anon_sym_COLON_QMARK] = ACTIONS(774), + [anon_sym_COLON_DASH] = ACTIONS(774), + [anon_sym_PERCENT] = ACTIONS(774), + [anon_sym_DASH] = ACTIONS(774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [136] = { + [sym_concatenation] = STATE(419), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(419), + [anon_sym_RBRACE] = ACTIONS(780), + [anon_sym_EQ] = ACTIONS(782), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(784), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(786), + [anon_sym_COLON] = ACTIONS(782), + [anon_sym_COLON_QMARK] = ACTIONS(782), + [anon_sym_COLON_DASH] = ACTIONS(782), + [anon_sym_PERCENT] = ACTIONS(782), + [anon_sym_DASH] = ACTIONS(782), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [137] = { + [sym__assignment] = STATE(421), + [anon_sym_LBRACK] = ACTIONS(62), + [anon_sym_EQ] = ACTIONS(788), + [anon_sym_PLUS_EQ] = ACTIONS(788), + [sym_comment] = ACTIONS(54), + }, + [138] = { + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(790), + }, + [139] = { + [sym__terminated_statement] = STATE(423), + [sym_for_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_case_statement] = STATE(38), + [sym_function_definition] = STATE(38), + [sym_subshell] = STATE(38), + [sym_pipeline] = STATE(38), + [sym_list] = STATE(38), + [sym_command] = STATE(38), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(38), + [sym_variable_assignment] = STATE(39), + [sym_declaration_command] = STATE(38), + [sym_unset_command] = STATE(38), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [140] = { + [sym__terminated_statement] = STATE(424), + [sym_for_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_case_statement] = STATE(38), + [sym_function_definition] = STATE(38), + [sym_subshell] = STATE(38), + [sym_pipeline] = STATE(38), + [sym_list] = STATE(38), + [sym_command] = STATE(38), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(38), + [sym_variable_assignment] = STATE(39), + [sym_declaration_command] = STATE(38), + [sym_unset_command] = STATE(38), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [141] = { + [sym_concatenation] = STATE(427), + [sym_string] = STATE(426), + [sym_simple_expansion] = STATE(426), + [sym_string_expansion] = STATE(426), + [sym_expansion] = STATE(426), + [sym_command_substitution] = STATE(426), + [sym_process_substitution] = STATE(426), + [sym__special_characters] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(70), + [anon_sym_DOLLAR] = ACTIONS(72), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(76), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(78), + [anon_sym_BQUOTE] = ACTIONS(80), + [anon_sym_LT_LPAREN] = ACTIONS(82), + [anon_sym_GT_LPAREN] = ACTIONS(82), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(794), + }, + [142] = { + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(796), + }, + [143] = { + [sym__terminated_statement] = STATE(431), + [sym_for_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_case_statement] = STATE(429), + [sym_function_definition] = STATE(429), + [sym_subshell] = STATE(429), + [sym_pipeline] = STATE(429), + [sym_list] = STATE(429), + [sym_command] = STATE(429), + [sym_command_name] = STATE(62), + [sym_bracket_command] = STATE(429), + [sym_variable_assignment] = STATE(430), + [sym_declaration_command] = STATE(429), + [sym_unset_command] = STATE(429), + [sym_subscript] = STATE(64), + [sym_file_redirect] = STATE(66), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(59), + [sym_simple_expansion] = STATE(59), + [sym_string_expansion] = STATE(59), + [sym_expansion] = STATE(59), + [sym_command_substitution] = STATE(59), + [sym_process_substitution] = STATE(59), + [aux_sym_program_repeat1] = STATE(431), + [aux_sym_command_repeat1] = STATE(66), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(86), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(88), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(90), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK_LBRACK] = ACTIONS(94), + [anon_sym_declare] = ACTIONS(96), + [anon_sym_typeset] = ACTIONS(96), + [anon_sym_export] = ACTIONS(96), + [anon_sym_readonly] = ACTIONS(96), + [anon_sym_local] = ACTIONS(96), + [anon_sym_unset] = ACTIONS(98), + [anon_sym_unsetenv] = ACTIONS(98), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(100), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(104), + }, + [144] = { + [sym_concatenation] = STATE(76), + [sym_string] = STATE(71), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [sym_expansion] = STATE(71), + [sym_command_substitution] = STATE(71), + [sym_process_substitution] = STATE(71), + [aux_sym_command_repeat2] = STATE(432), + [anon_sym_EQ_TILDE] = ACTIONS(106), + [anon_sym_EQ_EQ] = ACTIONS(106), + [sym__special_characters] = ACTIONS(108), + [anon_sym_DQUOTE] = ACTIONS(110), + [anon_sym_DOLLAR] = ACTIONS(112), + [sym_raw_string] = ACTIONS(114), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(118), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_LT_LPAREN] = ACTIONS(122), + [anon_sym_GT_LPAREN] = ACTIONS(122), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(124), + }, + [145] = { + [sym_concatenation] = STATE(87), + [sym_string] = STATE(82), + [sym_simple_expansion] = STATE(82), + [sym_string_expansion] = STATE(82), + [sym_expansion] = STATE(82), + [sym_command_substitution] = STATE(82), + [sym_process_substitution] = STATE(82), + [aux_sym_command_repeat2] = STATE(433), + [anon_sym_EQ_TILDE] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(126), + [sym__special_characters] = ACTIONS(128), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(144), + }, + [146] = { + [sym_variable_assignment] = STATE(445), + [sym_subscript] = STATE(444), + [sym_concatenation] = STATE(445), + [sym_string] = STATE(438), + [sym_simple_expansion] = STATE(438), + [sym_string_expansion] = STATE(438), + [sym_expansion] = STATE(438), + [sym_command_substitution] = STATE(438), + [sym_process_substitution] = STATE(438), + [aux_sym_declaration_command_repeat1] = STATE(445), + [sym_variable_name] = ACTIONS(798), + [anon_sym_PIPE] = ACTIONS(148), + [anon_sym_RPAREN] = ACTIONS(170), + [anon_sym_PIPE_AMP] = ACTIONS(170), + [anon_sym_AMP_AMP] = ACTIONS(170), + [anon_sym_PIPE_PIPE] = ACTIONS(170), + [sym__special_characters] = ACTIONS(800), + [anon_sym_DQUOTE] = ACTIONS(802), + [anon_sym_DOLLAR] = ACTIONS(804), + [sym_raw_string] = ACTIONS(806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(810), + [anon_sym_BQUOTE] = ACTIONS(812), + [anon_sym_LT_LPAREN] = ACTIONS(814), + [anon_sym_GT_LPAREN] = ACTIONS(814), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(816), + [sym_word] = ACTIONS(818), + }, + [147] = { + [sym_concatenation] = STATE(455), + [sym_string] = STATE(449), + [sym_simple_expansion] = STATE(449), + [sym_string_expansion] = STATE(449), + [sym_expansion] = STATE(449), + [sym_command_substitution] = STATE(449), + [sym_process_substitution] = STATE(449), + [aux_sym_unset_command_repeat1] = STATE(455), + [anon_sym_PIPE] = ACTIONS(172), + [anon_sym_RPAREN] = ACTIONS(192), + [anon_sym_PIPE_AMP] = ACTIONS(192), + [anon_sym_AMP_AMP] = ACTIONS(192), + [anon_sym_PIPE_PIPE] = ACTIONS(192), + [sym__special_characters] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(824), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(836), + [sym_word] = ACTIONS(838), + }, + [148] = { + [aux_sym_concatenation_repeat1] = STATE(457), + [sym_file_descriptor] = ACTIONS(210), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(214), + [anon_sym_RPAREN] = ACTIONS(210), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(210), + [anon_sym_PIPE_PIPE] = ACTIONS(210), + [anon_sym_EQ_TILDE] = ACTIONS(214), + [anon_sym_EQ_EQ] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(214), + [anon_sym_GT] = ACTIONS(214), + [anon_sym_GT_GT] = ACTIONS(210), + [anon_sym_AMP_GT] = ACTIONS(214), + [anon_sym_AMP_GT_GT] = ACTIONS(210), + [anon_sym_LT_AMP] = ACTIONS(210), + [anon_sym_GT_AMP] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_LT_LT_DASH] = ACTIONS(210), + [anon_sym_LT_LT_LT] = ACTIONS(210), + [sym__special_characters] = ACTIONS(210), + [anon_sym_DQUOTE] = ACTIONS(210), + [anon_sym_DOLLAR] = ACTIONS(214), + [sym_raw_string] = ACTIONS(210), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(210), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(214), + }, + [149] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(459), + [anon_sym_DQUOTE] = ACTIONS(842), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [150] = { + [sym_string] = STATE(461), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(844), + [sym_raw_string] = ACTIONS(846), + [anon_sym_POUND] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(848), + [anon_sym_STAR] = ACTIONS(844), + [anon_sym_AT] = ACTIONS(844), + [anon_sym_QMARK] = ACTIONS(844), + [anon_sym_0] = ACTIONS(850), + [anon_sym__] = ACTIONS(850), + }, + [151] = { + [aux_sym_concatenation_repeat1] = STATE(457), + [sym_file_descriptor] = ACTIONS(236), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(238), + [anon_sym_RPAREN] = ACTIONS(236), + [anon_sym_PIPE_AMP] = ACTIONS(236), + [anon_sym_AMP_AMP] = ACTIONS(236), + [anon_sym_PIPE_PIPE] = ACTIONS(236), + [anon_sym_EQ_TILDE] = ACTIONS(238), + [anon_sym_EQ_EQ] = ACTIONS(238), + [anon_sym_LT] = ACTIONS(238), + [anon_sym_GT] = ACTIONS(238), + [anon_sym_GT_GT] = ACTIONS(236), + [anon_sym_AMP_GT] = ACTIONS(238), + [anon_sym_AMP_GT_GT] = ACTIONS(236), + [anon_sym_LT_AMP] = ACTIONS(236), + [anon_sym_GT_AMP] = ACTIONS(236), + [anon_sym_LT_LT] = ACTIONS(238), + [anon_sym_LT_LT_DASH] = ACTIONS(236), + [anon_sym_LT_LT_LT] = ACTIONS(236), + [sym__special_characters] = ACTIONS(236), + [anon_sym_DQUOTE] = ACTIONS(236), + [anon_sym_DOLLAR] = ACTIONS(238), + [sym_raw_string] = ACTIONS(236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), + [anon_sym_BQUOTE] = ACTIONS(236), + [anon_sym_LT_LPAREN] = ACTIONS(236), + [anon_sym_GT_LPAREN] = ACTIONS(236), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(238), + }, + [152] = { + [sym_subscript] = STATE(467), + [sym_variable_name] = ACTIONS(852), + [anon_sym_DOLLAR] = ACTIONS(854), + [anon_sym_POUND] = ACTIONS(856), + [anon_sym_DASH] = ACTIONS(854), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(858), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_AT] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(854), + [anon_sym_0] = ACTIONS(860), + [anon_sym__] = ACTIONS(860), + }, + [153] = { + [sym_for_statement] = STATE(468), + [sym_while_statement] = STATE(468), + [sym_if_statement] = STATE(468), + [sym_case_statement] = STATE(468), + [sym_function_definition] = STATE(468), + [sym_subshell] = STATE(468), + [sym_pipeline] = STATE(468), + [sym_list] = STATE(468), + [sym_command] = STATE(468), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(468), + [sym_variable_assignment] = STATE(469), + [sym_declaration_command] = STATE(468), + [sym_unset_command] = STATE(468), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [154] = { + [sym_for_statement] = STATE(470), + [sym_while_statement] = STATE(470), + [sym_if_statement] = STATE(470), + [sym_case_statement] = STATE(470), + [sym_function_definition] = STATE(470), + [sym_subshell] = STATE(470), + [sym_pipeline] = STATE(470), + [sym_list] = STATE(470), + [sym_command] = STATE(470), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(470), + [sym_variable_assignment] = STATE(471), + [sym_declaration_command] = STATE(470), + [sym_unset_command] = STATE(470), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), + }, + [155] = { + [sym_for_statement] = STATE(472), + [sym_while_statement] = STATE(472), + [sym_if_statement] = STATE(472), + [sym_case_statement] = STATE(472), + [sym_function_definition] = STATE(472), + [sym_subshell] = STATE(472), + [sym_pipeline] = STATE(472), + [sym_list] = STATE(472), + [sym_command] = STATE(472), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(472), + [sym_variable_assignment] = STATE(473), + [sym_declaration_command] = STATE(472), + [sym_unset_command] = STATE(472), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [156] = { + [aux_sym_concatenation_repeat1] = STATE(457), + [sym_file_descriptor] = ACTIONS(236), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(238), + [anon_sym_RPAREN] = ACTIONS(236), + [anon_sym_LPAREN] = ACTIONS(862), + [anon_sym_PIPE_AMP] = ACTIONS(236), + [anon_sym_AMP_AMP] = ACTIONS(236), + [anon_sym_PIPE_PIPE] = ACTIONS(236), + [anon_sym_EQ_TILDE] = ACTIONS(238), + [anon_sym_EQ_EQ] = ACTIONS(238), + [anon_sym_LT] = ACTIONS(238), + [anon_sym_GT] = ACTIONS(238), + [anon_sym_GT_GT] = ACTIONS(236), + [anon_sym_AMP_GT] = ACTIONS(238), + [anon_sym_AMP_GT_GT] = ACTIONS(236), + [anon_sym_LT_AMP] = ACTIONS(236), + [anon_sym_GT_AMP] = ACTIONS(236), + [anon_sym_LT_LT] = ACTIONS(238), + [anon_sym_LT_LT_DASH] = ACTIONS(236), + [anon_sym_LT_LT_LT] = ACTIONS(236), + [sym__special_characters] = ACTIONS(236), + [anon_sym_DQUOTE] = ACTIONS(236), + [anon_sym_DOLLAR] = ACTIONS(238), + [sym_raw_string] = ACTIONS(236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), + [anon_sym_BQUOTE] = ACTIONS(236), + [anon_sym_LT_LPAREN] = ACTIONS(236), + [anon_sym_GT_LPAREN] = ACTIONS(236), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(238), + }, + [157] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(866), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [158] = { + [sym_file_redirect] = STATE(486), + [sym_heredoc_redirect] = STATE(486), + [sym_herestring_redirect] = STATE(486), + [sym_concatenation] = STATE(485), + [sym_string] = STATE(484), + [sym_simple_expansion] = STATE(484), + [sym_string_expansion] = STATE(484), + [sym_expansion] = STATE(484), + [sym_command_substitution] = STATE(484), + [sym_process_substitution] = STATE(484), + [aux_sym_while_statement_repeat1] = STATE(486), + [aux_sym_command_repeat2] = STATE(487), + [sym_file_descriptor] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(324), + [anon_sym_RPAREN] = ACTIONS(348), + [anon_sym_PIPE_AMP] = ACTIONS(348), + [anon_sym_AMP_AMP] = ACTIONS(348), + [anon_sym_PIPE_PIPE] = ACTIONS(348), + [anon_sym_EQ_TILDE] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [sym__special_characters] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(890), + }, + [159] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(866), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [160] = { + [sym__assignment] = STATE(421), + [anon_sym_EQ] = ACTIONS(788), + [anon_sym_PLUS_EQ] = ACTIONS(788), + [sym_comment] = ACTIONS(54), + }, + [161] = { + [sym_file_descriptor] = ACTIONS(236), + [anon_sym_PIPE] = ACTIONS(238), + [anon_sym_RPAREN] = ACTIONS(236), + [anon_sym_PIPE_AMP] = ACTIONS(236), + [anon_sym_AMP_AMP] = ACTIONS(236), + [anon_sym_PIPE_PIPE] = ACTIONS(236), + [anon_sym_EQ_TILDE] = ACTIONS(238), + [anon_sym_EQ_EQ] = ACTIONS(238), + [anon_sym_LT] = ACTIONS(238), + [anon_sym_GT] = ACTIONS(238), + [anon_sym_GT_GT] = ACTIONS(236), + [anon_sym_AMP_GT] = ACTIONS(238), + [anon_sym_AMP_GT_GT] = ACTIONS(236), + [anon_sym_LT_AMP] = ACTIONS(236), + [anon_sym_GT_AMP] = ACTIONS(236), + [anon_sym_LT_LT] = ACTIONS(238), + [anon_sym_LT_LT_DASH] = ACTIONS(236), + [anon_sym_LT_LT_LT] = ACTIONS(236), + [sym__special_characters] = ACTIONS(236), + [anon_sym_DQUOTE] = ACTIONS(236), + [anon_sym_DOLLAR] = ACTIONS(238), + [sym_raw_string] = ACTIONS(236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), + [anon_sym_BQUOTE] = ACTIONS(236), + [anon_sym_LT_LPAREN] = ACTIONS(236), + [anon_sym_GT_LPAREN] = ACTIONS(236), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(238), + }, + [162] = { + [sym_command_name] = STATE(488), + [sym_variable_assignment] = STATE(198), + [sym_subscript] = STATE(197), + [sym_file_redirect] = STATE(198), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(198), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(356), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(278), + }, + [163] = { + [sym__assignment] = STATE(421), + [anon_sym_LBRACK] = ACTIONS(62), + [anon_sym_EQ] = ACTIONS(894), + [anon_sym_PLUS_EQ] = ACTIONS(894), + [sym_comment] = ACTIONS(54), + }, + [164] = { + [sym__terminated_statement] = STATE(490), + [sym_for_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_case_statement] = STATE(38), + [sym_function_definition] = STATE(38), + [sym_subshell] = STATE(38), + [sym_pipeline] = STATE(38), + [sym_list] = STATE(38), + [sym_command] = STATE(38), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(38), + [sym_variable_assignment] = STATE(39), + [sym_declaration_command] = STATE(38), + [sym_unset_command] = STATE(38), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [165] = { + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(896), + }, + [166] = { + [sym_concatenation] = STATE(76), + [sym_string] = STATE(71), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [sym_expansion] = STATE(71), + [sym_command_substitution] = STATE(71), + [sym_process_substitution] = STATE(71), + [aux_sym_command_repeat2] = STATE(492), + [anon_sym_EQ_TILDE] = ACTIONS(106), + [anon_sym_EQ_EQ] = ACTIONS(106), + [sym__special_characters] = ACTIONS(108), + [anon_sym_DQUOTE] = ACTIONS(110), + [anon_sym_DOLLAR] = ACTIONS(112), + [sym_raw_string] = ACTIONS(114), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(118), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_LT_LPAREN] = ACTIONS(122), + [anon_sym_GT_LPAREN] = ACTIONS(122), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(124), + }, + [167] = { + [sym_concatenation] = STATE(87), + [sym_string] = STATE(82), + [sym_simple_expansion] = STATE(82), + [sym_string_expansion] = STATE(82), + [sym_expansion] = STATE(82), + [sym_command_substitution] = STATE(82), + [sym_process_substitution] = STATE(82), + [aux_sym_command_repeat2] = STATE(493), + [anon_sym_EQ_TILDE] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(126), + [sym__special_characters] = ACTIONS(128), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(144), + }, + [168] = { + [sym_variable_assignment] = STATE(498), + [sym_subscript] = STATE(497), + [sym_concatenation] = STATE(498), + [sym_string] = STATE(496), + [sym_simple_expansion] = STATE(496), + [sym_string_expansion] = STATE(496), + [sym_expansion] = STATE(496), + [sym_command_substitution] = STATE(496), + [sym_process_substitution] = STATE(496), + [aux_sym_declaration_command_repeat1] = STATE(498), + [sym_variable_name] = ACTIONS(898), + [anon_sym_PIPE] = ACTIONS(148), + [anon_sym_PIPE_AMP] = ACTIONS(170), + [anon_sym_AMP_AMP] = ACTIONS(170), + [anon_sym_PIPE_PIPE] = ACTIONS(170), + [sym__special_characters] = ACTIONS(900), + [anon_sym_DQUOTE] = ACTIONS(802), + [anon_sym_DOLLAR] = ACTIONS(804), + [sym_raw_string] = ACTIONS(902), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(810), + [anon_sym_BQUOTE] = ACTIONS(170), + [anon_sym_LT_LPAREN] = ACTIONS(814), + [anon_sym_GT_LPAREN] = ACTIONS(814), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(816), + [sym_word] = ACTIONS(904), + }, + [169] = { + [sym_concatenation] = STATE(501), + [sym_string] = STATE(500), + [sym_simple_expansion] = STATE(500), + [sym_string_expansion] = STATE(500), + [sym_expansion] = STATE(500), + [sym_command_substitution] = STATE(500), + [sym_process_substitution] = STATE(500), + [aux_sym_unset_command_repeat1] = STATE(501), + [anon_sym_PIPE] = ACTIONS(172), + [anon_sym_PIPE_AMP] = ACTIONS(192), + [anon_sym_AMP_AMP] = ACTIONS(192), + [anon_sym_PIPE_PIPE] = ACTIONS(192), + [sym__special_characters] = ACTIONS(906), + [anon_sym_DQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(824), + [sym_raw_string] = ACTIONS(908), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(192), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(836), + [sym_word] = ACTIONS(910), + }, + [170] = { + [aux_sym_concatenation_repeat1] = STATE(502), + [sym_file_descriptor] = ACTIONS(210), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(214), + [anon_sym_PIPE_AMP] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(210), + [anon_sym_PIPE_PIPE] = ACTIONS(210), + [anon_sym_EQ_TILDE] = ACTIONS(214), + [anon_sym_EQ_EQ] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(214), + [anon_sym_GT] = ACTIONS(214), + [anon_sym_GT_GT] = ACTIONS(210), + [anon_sym_AMP_GT] = ACTIONS(214), + [anon_sym_AMP_GT_GT] = ACTIONS(210), + [anon_sym_LT_AMP] = ACTIONS(210), + [anon_sym_GT_AMP] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_LT_LT_DASH] = ACTIONS(210), + [anon_sym_LT_LT_LT] = ACTIONS(210), + [sym__special_characters] = ACTIONS(210), + [anon_sym_DQUOTE] = ACTIONS(210), + [anon_sym_DOLLAR] = ACTIONS(214), + [sym_raw_string] = ACTIONS(210), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(210), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_LT_LPAREN] = ACTIONS(210), + [anon_sym_GT_LPAREN] = ACTIONS(210), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(214), + }, + [171] = { + [aux_sym_concatenation_repeat1] = STATE(502), + [sym_file_descriptor] = ACTIONS(236), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(238), + [anon_sym_PIPE_AMP] = ACTIONS(236), + [anon_sym_AMP_AMP] = ACTIONS(236), + [anon_sym_PIPE_PIPE] = ACTIONS(236), + [anon_sym_EQ_TILDE] = ACTIONS(238), + [anon_sym_EQ_EQ] = ACTIONS(238), + [anon_sym_LT] = ACTIONS(238), + [anon_sym_GT] = ACTIONS(238), + [anon_sym_GT_GT] = ACTIONS(236), + [anon_sym_AMP_GT] = ACTIONS(238), + [anon_sym_AMP_GT_GT] = ACTIONS(236), + [anon_sym_LT_AMP] = ACTIONS(236), + [anon_sym_GT_AMP] = ACTIONS(236), + [anon_sym_LT_LT] = ACTIONS(238), + [anon_sym_LT_LT_DASH] = ACTIONS(236), + [anon_sym_LT_LT_LT] = ACTIONS(236), + [sym__special_characters] = ACTIONS(236), + [anon_sym_DQUOTE] = ACTIONS(236), + [anon_sym_DOLLAR] = ACTIONS(238), + [sym_raw_string] = ACTIONS(236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), + [anon_sym_BQUOTE] = ACTIONS(236), + [anon_sym_LT_LPAREN] = ACTIONS(236), + [anon_sym_GT_LPAREN] = ACTIONS(236), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(238), + }, + [172] = { + [aux_sym_concatenation_repeat1] = STATE(502), + [sym_file_descriptor] = ACTIONS(236), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(238), + [anon_sym_LPAREN] = ACTIONS(912), + [anon_sym_PIPE_AMP] = ACTIONS(236), + [anon_sym_AMP_AMP] = ACTIONS(236), + [anon_sym_PIPE_PIPE] = ACTIONS(236), + [anon_sym_EQ_TILDE] = ACTIONS(238), + [anon_sym_EQ_EQ] = ACTIONS(238), + [anon_sym_LT] = ACTIONS(238), + [anon_sym_GT] = ACTIONS(238), + [anon_sym_GT_GT] = ACTIONS(236), + [anon_sym_AMP_GT] = ACTIONS(238), + [anon_sym_AMP_GT_GT] = ACTIONS(236), + [anon_sym_LT_AMP] = ACTIONS(236), + [anon_sym_GT_AMP] = ACTIONS(236), + [anon_sym_LT_LT] = ACTIONS(238), + [anon_sym_LT_LT_DASH] = ACTIONS(236), + [anon_sym_LT_LT_LT] = ACTIONS(236), + [sym__special_characters] = ACTIONS(236), + [anon_sym_DQUOTE] = ACTIONS(236), + [anon_sym_DOLLAR] = ACTIONS(238), + [sym_raw_string] = ACTIONS(236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), + [anon_sym_BQUOTE] = ACTIONS(236), + [anon_sym_LT_LPAREN] = ACTIONS(236), + [anon_sym_GT_LPAREN] = ACTIONS(236), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(238), + }, + [173] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(866), + [sym_comment] = ACTIONS(54), + }, + [174] = { + [sym_file_redirect] = STATE(512), + [sym_heredoc_redirect] = STATE(512), + [sym_herestring_redirect] = STATE(512), + [sym_concatenation] = STATE(485), + [sym_string] = STATE(511), + [sym_simple_expansion] = STATE(511), + [sym_string_expansion] = STATE(511), + [sym_expansion] = STATE(511), + [sym_command_substitution] = STATE(511), + [sym_process_substitution] = STATE(511), + [aux_sym_while_statement_repeat1] = STATE(512), + [aux_sym_command_repeat2] = STATE(513), + [sym_file_descriptor] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(324), + [anon_sym_PIPE_AMP] = ACTIONS(348), + [anon_sym_AMP_AMP] = ACTIONS(348), + [anon_sym_PIPE_PIPE] = ACTIONS(348), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_LT] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(924), + [anon_sym_GT_GT] = ACTIONS(926), + [anon_sym_AMP_GT] = ACTIONS(924), + [anon_sym_AMP_GT_GT] = ACTIONS(926), + [anon_sym_LT_AMP] = ACTIONS(926), + [anon_sym_GT_AMP] = ACTIONS(926), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(928), + [sym__special_characters] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(932), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(348), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(934), + }, + [175] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(866), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [176] = { + [sym__assignment] = STATE(421), + [anon_sym_EQ] = ACTIONS(894), + [anon_sym_PLUS_EQ] = ACTIONS(894), + [sym_comment] = ACTIONS(54), + }, + [177] = { + [sym_command_name] = STATE(514), + [sym_variable_assignment] = STATE(198), + [sym_subscript] = STATE(197), + [sym_file_redirect] = STATE(198), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(198), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(356), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(306), + }, + [178] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [179] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [180] = { + [anon_sym_RPAREN] = ACTIONS(940), + [sym_comment] = ACTIONS(54), + }, + [181] = { + [sym_for_statement] = STATE(517), + [sym_while_statement] = STATE(517), + [sym_if_statement] = STATE(517), + [sym_case_statement] = STATE(517), + [sym_function_definition] = STATE(517), + [sym_subshell] = STATE(517), + [sym_pipeline] = STATE(517), + [sym_list] = STATE(517), + [sym_command] = STATE(517), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(517), + [sym_variable_assignment] = STATE(518), + [sym_declaration_command] = STATE(517), + [sym_unset_command] = STATE(517), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [182] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [ts_builtin_sym_end] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(944), + [sym_raw_string] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(944), + }, + [183] = { + [sym_for_statement] = STATE(519), + [sym_while_statement] = STATE(519), + [sym_if_statement] = STATE(519), + [sym_case_statement] = STATE(519), + [sym_function_definition] = STATE(519), + [sym_subshell] = STATE(519), + [sym_pipeline] = STATE(519), + [sym_list] = STATE(519), + [sym_command] = STATE(519), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(519), + [sym_variable_assignment] = STATE(520), + [sym_declaration_command] = STATE(519), + [sym_unset_command] = STATE(519), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [184] = { + [anon_sym_LT] = ACTIONS(946), + [anon_sym_GT] = ACTIONS(946), + [anon_sym_GT_GT] = ACTIONS(948), + [anon_sym_AMP_GT] = ACTIONS(946), + [anon_sym_AMP_GT_GT] = ACTIONS(948), + [anon_sym_LT_AMP] = ACTIONS(948), + [anon_sym_GT_AMP] = ACTIONS(948), + [sym_comment] = ACTIONS(54), + }, + [185] = { + [sym_concatenation] = STATE(524), + [sym_string] = STATE(523), + [sym_simple_expansion] = STATE(523), + [sym_string_expansion] = STATE(523), + [sym_expansion] = STATE(523), + [sym_command_substitution] = STATE(523), + [sym_process_substitution] = STATE(523), + [sym__special_characters] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(952), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(342), + [anon_sym_BQUOTE] = ACTIONS(344), + [anon_sym_LT_LPAREN] = ACTIONS(346), + [anon_sym_GT_LPAREN] = ACTIONS(346), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(952), + [sym_regex] = ACTIONS(954), + }, + [186] = { + [sym_concatenation] = STATE(527), + [sym_string] = STATE(526), + [sym_simple_expansion] = STATE(526), + [sym_string_expansion] = STATE(526), + [sym_expansion] = STATE(526), + [sym_command_substitution] = STATE(526), + [sym_process_substitution] = STATE(526), + [sym__special_characters] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(958), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(958), + }, + [187] = { + [sym_heredoc] = STATE(530), + [sym__simple_heredoc] = ACTIONS(960), + [sym__heredoc_beginning] = ACTIONS(962), + [sym_comment] = ACTIONS(54), + }, + [188] = { + [sym_concatenation] = STATE(533), + [sym_string] = STATE(532), + [sym_simple_expansion] = STATE(532), + [sym_string_expansion] = STATE(532), + [sym_expansion] = STATE(532), + [sym_command_substitution] = STATE(532), + [sym_process_substitution] = STATE(532), + [sym__special_characters] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(966), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(966), + }, + [189] = { + [aux_sym_concatenation_repeat1] = STATE(121), + [sym_file_descriptor] = ACTIONS(504), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(502), + [anon_sym_SEMI_SEMI] = ACTIONS(502), + [anon_sym_PIPE_AMP] = ACTIONS(502), + [anon_sym_AMP_AMP] = ACTIONS(502), + [anon_sym_PIPE_PIPE] = ACTIONS(502), + [anon_sym_EQ_TILDE] = ACTIONS(502), + [anon_sym_EQ_EQ] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(502), + [anon_sym_GT] = ACTIONS(502), + [anon_sym_GT_GT] = ACTIONS(502), + [anon_sym_AMP_GT] = ACTIONS(502), + [anon_sym_AMP_GT_GT] = ACTIONS(502), + [anon_sym_LT_AMP] = ACTIONS(502), + [anon_sym_GT_AMP] = ACTIONS(502), + [anon_sym_LT_LT] = ACTIONS(502), + [anon_sym_LT_LT_DASH] = ACTIONS(502), + [anon_sym_LT_LT_LT] = ACTIONS(502), + [sym__special_characters] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(502), + [anon_sym_DOLLAR] = ACTIONS(502), + [sym_raw_string] = ACTIONS(502), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(502), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(502), + [anon_sym_BQUOTE] = ACTIONS(502), + [anon_sym_LT_LPAREN] = ACTIONS(502), + [anon_sym_GT_LPAREN] = ACTIONS(502), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(502), + [anon_sym_LF] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(502), + }, + [190] = { + [aux_sym_concatenation_repeat1] = STATE(121), + [sym_file_descriptor] = ACTIONS(518), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_SEMI_SEMI] = ACTIONS(516), + [anon_sym_PIPE_AMP] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(516), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_EQ_TILDE] = ACTIONS(516), + [anon_sym_EQ_EQ] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_GT_GT] = ACTIONS(516), + [anon_sym_AMP_GT] = ACTIONS(516), + [anon_sym_AMP_GT_GT] = ACTIONS(516), + [anon_sym_LT_AMP] = ACTIONS(516), + [anon_sym_GT_AMP] = ACTIONS(516), + [anon_sym_LT_LT] = ACTIONS(516), + [anon_sym_LT_LT_DASH] = ACTIONS(516), + [anon_sym_LT_LT_LT] = ACTIONS(516), + [sym__special_characters] = ACTIONS(516), + [anon_sym_DQUOTE] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [sym_raw_string] = ACTIONS(516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(516), + [anon_sym_BQUOTE] = ACTIONS(516), + [anon_sym_LT_LPAREN] = ACTIONS(516), + [anon_sym_GT_LPAREN] = ACTIONS(516), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_LF] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(516), + }, + [191] = { + [sym_file_descriptor] = ACTIONS(518), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(516), + [anon_sym_SEMI_SEMI] = ACTIONS(516), + [anon_sym_PIPE_AMP] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(516), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_EQ_TILDE] = ACTIONS(516), + [anon_sym_EQ_EQ] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_GT_GT] = ACTIONS(516), + [anon_sym_AMP_GT] = ACTIONS(516), + [anon_sym_AMP_GT_GT] = ACTIONS(516), + [anon_sym_LT_AMP] = ACTIONS(516), + [anon_sym_GT_AMP] = ACTIONS(516), + [anon_sym_LT_LT] = ACTIONS(516), + [anon_sym_LT_LT_DASH] = ACTIONS(516), + [anon_sym_LT_LT_LT] = ACTIONS(516), + [sym__special_characters] = ACTIONS(516), + [anon_sym_DQUOTE] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [sym_raw_string] = ACTIONS(516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(516), + [anon_sym_BQUOTE] = ACTIONS(516), + [anon_sym_LT_LPAREN] = ACTIONS(516), + [anon_sym_GT_LPAREN] = ACTIONS(516), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_LF] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(516), + }, + [192] = { + [sym_file_redirect] = STATE(534), + [sym_heredoc_redirect] = STATE(534), + [sym_herestring_redirect] = STATE(534), + [aux_sym_while_statement_repeat1] = STATE(534), + [sym_file_descriptor] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_SEMI_SEMI] = ACTIONS(968), + [anon_sym_PIPE_AMP] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_PIPE_PIPE] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(328), + [anon_sym_GT_GT] = ACTIONS(328), + [anon_sym_AMP_GT] = ACTIONS(328), + [anon_sym_AMP_GT_GT] = ACTIONS(328), + [anon_sym_LT_AMP] = ACTIONS(328), + [anon_sym_GT_AMP] = ACTIONS(328), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(332), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_LF] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(968), + }, + [193] = { + [sym_file_redirect] = STATE(535), + [sym_heredoc_redirect] = STATE(535), + [sym_herestring_redirect] = STATE(535), + [sym_concatenation] = STATE(191), + [sym_string] = STATE(190), + [sym_simple_expansion] = STATE(190), + [sym_string_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [sym_process_substitution] = STATE(190), + [aux_sym_while_statement_repeat1] = STATE(535), + [aux_sym_command_repeat2] = STATE(536), + [sym_file_descriptor] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_SEMI_SEMI] = ACTIONS(968), + [anon_sym_PIPE_AMP] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_PIPE_PIPE] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(326), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(328), + [anon_sym_GT_GT] = ACTIONS(328), + [anon_sym_AMP_GT] = ACTIONS(328), + [anon_sym_AMP_GT_GT] = ACTIONS(328), + [anon_sym_LT_AMP] = ACTIONS(328), + [anon_sym_GT_AMP] = ACTIONS(328), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(332), + [sym__special_characters] = ACTIONS(334), + [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(342), + [anon_sym_BQUOTE] = ACTIONS(344), + [anon_sym_LT_LPAREN] = ACTIONS(346), + [anon_sym_GT_LPAREN] = ACTIONS(346), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(338), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_LF] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(968), + }, + [194] = { + [sym__terminated_statement] = STATE(194), + [sym_for_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_function_definition] = STATE(25), + [sym_subshell] = STATE(25), + [sym_pipeline] = STATE(25), + [sym_list] = STATE(25), + [sym_command] = STATE(25), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(25), + [sym_variable_assignment] = STATE(27), + [sym_declaration_command] = STATE(25), + [sym_unset_command] = STATE(25), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(194), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(972), + [sym_variable_name] = ACTIONS(975), + [ts_builtin_sym_end] = ACTIONS(978), + [anon_sym_for] = ACTIONS(980), + [anon_sym_while] = ACTIONS(983), + [anon_sym_if] = ACTIONS(986), + [anon_sym_case] = ACTIONS(989), + [anon_sym_function] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1001), + [anon_sym_declare] = ACTIONS(1004), + [anon_sym_typeset] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1004), + [anon_sym_readonly] = ACTIONS(1004), + [anon_sym_local] = ACTIONS(1004), + [anon_sym_unset] = ACTIONS(1007), + [anon_sym_unsetenv] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_GT_GT] = ACTIONS(1013), + [anon_sym_AMP_GT] = ACTIONS(1010), + [anon_sym_AMP_GT_GT] = ACTIONS(1013), + [anon_sym_LT_AMP] = ACTIONS(1013), + [anon_sym_GT_AMP] = ACTIONS(1013), + [sym__special_characters] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1022), + [sym_raw_string] = ACTIONS(1025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1034), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1040), + }, + [195] = { + [sym__assignment] = STATE(421), + [anon_sym_LBRACK] = ACTIONS(62), + [anon_sym_EQ] = ACTIONS(1043), + [anon_sym_PLUS_EQ] = ACTIONS(1043), + [sym_comment] = ACTIONS(54), + }, + [196] = { + [sym_file_redirect] = STATE(535), + [sym_heredoc_redirect] = STATE(535), + [sym_herestring_redirect] = STATE(535), + [sym_concatenation] = STATE(191), + [sym_string] = STATE(190), + [sym_simple_expansion] = STATE(190), + [sym_string_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [sym_process_substitution] = STATE(190), + [aux_sym_while_statement_repeat1] = STATE(535), + [aux_sym_command_repeat2] = STATE(538), + [sym_file_descriptor] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_SEMI_SEMI] = ACTIONS(968), + [anon_sym_PIPE_AMP] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_PIPE_PIPE] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(326), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(328), + [anon_sym_GT_GT] = ACTIONS(328), + [anon_sym_AMP_GT] = ACTIONS(328), + [anon_sym_AMP_GT_GT] = ACTIONS(328), + [anon_sym_LT_AMP] = ACTIONS(328), + [anon_sym_GT_AMP] = ACTIONS(328), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(332), + [sym__special_characters] = ACTIONS(334), + [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(342), + [anon_sym_BQUOTE] = ACTIONS(344), + [anon_sym_LT_LPAREN] = ACTIONS(346), + [anon_sym_GT_LPAREN] = ACTIONS(346), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(338), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_LF] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(968), + }, + [197] = { + [sym__assignment] = STATE(421), + [anon_sym_EQ] = ACTIONS(1043), + [anon_sym_PLUS_EQ] = ACTIONS(1043), + [sym_comment] = ACTIONS(54), + }, + [198] = { + [sym_variable_assignment] = STATE(198), + [sym_subscript] = STATE(197), + [sym_file_redirect] = STATE(198), + [aux_sym_command_repeat1] = STATE(198), + [sym_file_descriptor] = ACTIONS(1045), + [sym_variable_name] = ACTIONS(1048), + [anon_sym_LT] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_GT_GT] = ACTIONS(1054), + [anon_sym_AMP_GT] = ACTIONS(1051), + [anon_sym_AMP_GT_GT] = ACTIONS(1054), + [anon_sym_LT_AMP] = ACTIONS(1054), + [anon_sym_GT_AMP] = ACTIONS(1054), + [sym__special_characters] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1059), + [sym_raw_string] = ACTIONS(1057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), + [anon_sym_BQUOTE] = ACTIONS(1057), + [anon_sym_LT_LPAREN] = ACTIONS(1057), + [anon_sym_GT_LPAREN] = ACTIONS(1057), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1057), + }, + [199] = { + [aux_sym_concatenation_repeat1] = STATE(363), + [sym_file_descriptor] = ACTIONS(1061), + [sym__concat] = ACTIONS(658), + [sym_variable_name] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1061), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1061), + [anon_sym_LT_AMP] = ACTIONS(1061), + [anon_sym_GT_AMP] = ACTIONS(1061), + [sym__special_characters] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1063), + [sym_raw_string] = ACTIONS(1061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1061), + [anon_sym_BQUOTE] = ACTIONS(1061), + [anon_sym_LT_LPAREN] = ACTIONS(1061), + [anon_sym_GT_LPAREN] = ACTIONS(1061), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1061), + }, + [200] = { + [aux_sym_concatenation_repeat1] = STATE(363), + [sym_file_descriptor] = ACTIONS(1065), + [sym__concat] = ACTIONS(658), + [sym_variable_name] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1067), + [anon_sym_GT_GT] = ACTIONS(1065), + [anon_sym_AMP_GT] = ACTIONS(1067), + [anon_sym_AMP_GT_GT] = ACTIONS(1065), + [anon_sym_LT_AMP] = ACTIONS(1065), + [anon_sym_GT_AMP] = ACTIONS(1065), + [sym__special_characters] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1067), + [sym_raw_string] = ACTIONS(1065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LT_LPAREN] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1065), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1065), + }, + [201] = { + [sym_file_descriptor] = ACTIONS(1065), + [sym_variable_name] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1067), + [anon_sym_GT_GT] = ACTIONS(1065), + [anon_sym_AMP_GT] = ACTIONS(1067), + [anon_sym_AMP_GT_GT] = ACTIONS(1065), + [anon_sym_LT_AMP] = ACTIONS(1065), + [anon_sym_GT_AMP] = ACTIONS(1065), + [sym__special_characters] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1067), + [sym_raw_string] = ACTIONS(1065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LT_LPAREN] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1065), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1065), + }, + [202] = { + [aux_sym_concatenation_repeat1] = STATE(541), + [sym__concat] = ACTIONS(1069), + [anon_sym_RBRACK] = ACTIONS(1071), + [sym_comment] = ACTIONS(54), + }, + [203] = { + [aux_sym_concatenation_repeat1] = STATE(541), + [sym__concat] = ACTIONS(1073), + [anon_sym_RBRACK] = ACTIONS(1075), + [sym_comment] = ACTIONS(54), + }, + [204] = { + [sym__concat] = ACTIONS(1077), + [anon_sym_RBRACK] = ACTIONS(1075), + [sym_comment] = ACTIONS(54), + }, + [205] = { + [sym_file_descriptor] = ACTIONS(1079), + [sym_variable_name] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_RPAREN] = ACTIONS(1081), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1081), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1081), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1081), + [anon_sym_LF] = ACTIONS(1079), + [anon_sym_AMP] = ACTIONS(1081), + }, + [206] = { + [sym_concatenation] = STATE(554), + [sym_string] = STATE(549), + [sym_simple_expansion] = STATE(549), + [sym_string_expansion] = STATE(549), + [sym_expansion] = STATE(549), + [sym_command_substitution] = STATE(549), + [sym_process_substitution] = STATE(549), + [aux_sym_for_statement_repeat1] = STATE(554), + [anon_sym_RPAREN] = ACTIONS(1083), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(1089), + [sym_raw_string] = ACTIONS(1091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1095), + [anon_sym_BQUOTE] = ACTIONS(1097), + [anon_sym_LT_LPAREN] = ACTIONS(1099), + [anon_sym_GT_LPAREN] = ACTIONS(1099), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1091), + }, + [207] = { + [aux_sym_concatenation_repeat1] = STATE(556), + [sym_file_descriptor] = ACTIONS(1101), + [sym__concat] = ACTIONS(1103), + [sym_variable_name] = ACTIONS(1101), + [anon_sym_PIPE] = ACTIONS(1105), + [anon_sym_SEMI_SEMI] = ACTIONS(1105), + [anon_sym_PIPE_AMP] = ACTIONS(1105), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE_PIPE] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(1105), + [anon_sym_GT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1105), + [anon_sym_AMP_GT] = ACTIONS(1105), + [anon_sym_AMP_GT_GT] = ACTIONS(1105), + [anon_sym_LT_AMP] = ACTIONS(1105), + [anon_sym_GT_AMP] = ACTIONS(1105), + [sym__special_characters] = ACTIONS(1105), + [anon_sym_DQUOTE] = ACTIONS(1105), + [anon_sym_DOLLAR] = ACTIONS(1105), + [sym_raw_string] = ACTIONS(1105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1105), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), + [anon_sym_BQUOTE] = ACTIONS(1105), + [anon_sym_LT_LPAREN] = ACTIONS(1105), + [anon_sym_GT_LPAREN] = ACTIONS(1105), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(1105), + [anon_sym_LF] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1105), + }, + [208] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(558), + [anon_sym_DQUOTE] = ACTIONS(1107), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [209] = { + [sym_string] = STATE(560), + [anon_sym_DQUOTE] = ACTIONS(374), + [anon_sym_DOLLAR] = ACTIONS(1109), + [sym_raw_string] = ACTIONS(1111), + [anon_sym_POUND] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1109), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1113), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_AT] = ACTIONS(1109), + [anon_sym_QMARK] = ACTIONS(1109), + [anon_sym_0] = ACTIONS(1115), + [anon_sym__] = ACTIONS(1115), + }, + [210] = { + [aux_sym_concatenation_repeat1] = STATE(556), + [sym_file_descriptor] = ACTIONS(1079), + [sym__concat] = ACTIONS(1103), + [sym_variable_name] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1081), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1081), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1081), + [anon_sym_LF] = ACTIONS(1079), + [anon_sym_AMP] = ACTIONS(1081), + }, + [211] = { + [sym_subscript] = STATE(566), + [sym_variable_name] = ACTIONS(1117), + [anon_sym_DOLLAR] = ACTIONS(1119), + [anon_sym_POUND] = ACTIONS(1121), + [anon_sym_DASH] = ACTIONS(1119), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_AT] = ACTIONS(1119), + [anon_sym_QMARK] = ACTIONS(1119), + [anon_sym_0] = ACTIONS(1125), + [anon_sym__] = ACTIONS(1125), + }, + [212] = { + [sym_for_statement] = STATE(567), + [sym_while_statement] = STATE(567), + [sym_if_statement] = STATE(567), + [sym_case_statement] = STATE(567), + [sym_function_definition] = STATE(567), + [sym_subshell] = STATE(567), + [sym_pipeline] = STATE(567), + [sym_list] = STATE(567), + [sym_command] = STATE(567), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(567), + [sym_variable_assignment] = STATE(568), + [sym_declaration_command] = STATE(567), + [sym_unset_command] = STATE(567), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [213] = { + [sym_for_statement] = STATE(569), + [sym_while_statement] = STATE(569), + [sym_if_statement] = STATE(569), + [sym_case_statement] = STATE(569), + [sym_function_definition] = STATE(569), + [sym_subshell] = STATE(569), + [sym_pipeline] = STATE(569), + [sym_list] = STATE(569), + [sym_command] = STATE(569), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(569), + [sym_variable_assignment] = STATE(570), + [sym_declaration_command] = STATE(569), + [sym_unset_command] = STATE(569), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), + }, + [214] = { + [sym_for_statement] = STATE(571), + [sym_while_statement] = STATE(571), + [sym_if_statement] = STATE(571), + [sym_case_statement] = STATE(571), + [sym_function_definition] = STATE(571), + [sym_subshell] = STATE(571), + [sym_pipeline] = STATE(571), + [sym_list] = STATE(571), + [sym_command] = STATE(571), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(571), + [sym_variable_assignment] = STATE(572), + [sym_declaration_command] = STATE(571), + [sym_unset_command] = STATE(571), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [215] = { + [sym_concatenation] = STATE(581), + [sym_string] = STATE(576), + [sym_simple_expansion] = STATE(576), + [sym_string_expansion] = STATE(576), + [sym_expansion] = STATE(576), + [sym_command_substitution] = STATE(576), + [sym_process_substitution] = STATE(576), + [aux_sym_for_statement_repeat1] = STATE(581), + [sym__special_characters] = ACTIONS(1127), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_DOLLAR] = ACTIONS(1131), + [sym_raw_string] = ACTIONS(1133), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1135), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1137), + [anon_sym_BQUOTE] = ACTIONS(1139), + [anon_sym_LT_LPAREN] = ACTIONS(1141), + [anon_sym_GT_LPAREN] = ACTIONS(1141), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1133), + }, + [216] = { + [sym_do_group] = STATE(583), + [anon_sym_do] = ACTIONS(1143), + [sym_comment] = ACTIONS(54), + }, + [217] = { + [sym__terminated_statement] = STATE(587), + [sym_for_statement] = STATE(585), + [sym_while_statement] = STATE(585), + [sym_if_statement] = STATE(585), + [sym_case_statement] = STATE(585), + [sym_function_definition] = STATE(585), + [sym_subshell] = STATE(585), + [sym_pipeline] = STATE(585), + [sym_list] = STATE(585), + [sym_command] = STATE(585), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(585), + [sym_variable_assignment] = STATE(586), + [sym_declaration_command] = STATE(585), + [sym_unset_command] = STATE(585), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(587), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_done] = ACTIONS(1145), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [218] = { + [sym_file_redirect] = STATE(588), + [sym_heredoc_redirect] = STATE(588), + [sym_herestring_redirect] = STATE(588), + [aux_sym_while_statement_repeat1] = STATE(588), + [sym_file_descriptor] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(1147), + [anon_sym_SEMI_SEMI] = ACTIONS(1147), + [anon_sym_PIPE_AMP] = ACTIONS(1147), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(328), + [anon_sym_GT_GT] = ACTIONS(328), + [anon_sym_AMP_GT] = ACTIONS(328), + [anon_sym_AMP_GT_GT] = ACTIONS(328), + [anon_sym_LT_AMP] = ACTIONS(328), + [anon_sym_GT_AMP] = ACTIONS(328), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(332), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_LF] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1147), + }, + [219] = { + [anon_sym_do] = ACTIONS(942), + [anon_sym_then] = ACTIONS(942), + [sym_comment] = ACTIONS(54), + }, + [220] = { + [sym__terminated_statement] = STATE(595), + [sym_for_statement] = STATE(592), + [sym_while_statement] = STATE(592), + [sym_if_statement] = STATE(592), + [sym_elif_clause] = STATE(596), + [sym_else_clause] = STATE(593), + [sym_case_statement] = STATE(592), + [sym_function_definition] = STATE(592), + [sym_subshell] = STATE(592), + [sym_pipeline] = STATE(592), + [sym_list] = STATE(592), + [sym_command] = STATE(592), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(592), + [sym_variable_assignment] = STATE(594), + [sym_declaration_command] = STATE(592), + [sym_unset_command] = STATE(592), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(595), + [aux_sym_if_statement_repeat1] = STATE(596), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_fi] = ACTIONS(1151), + [anon_sym_elif] = ACTIONS(1153), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [221] = { + [sym_string] = STATE(597), + [sym_simple_expansion] = STATE(597), + [sym_string_expansion] = STATE(597), + [sym_expansion] = STATE(597), + [sym_command_substitution] = STATE(597), + [sym_process_substitution] = STATE(597), + [sym__special_characters] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(70), + [anon_sym_DOLLAR] = ACTIONS(72), + [sym_raw_string] = ACTIONS(1157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(76), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(78), + [anon_sym_BQUOTE] = ACTIONS(80), + [anon_sym_LT_LPAREN] = ACTIONS(82), + [anon_sym_GT_LPAREN] = ACTIONS(82), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1157), + }, + [222] = { + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1159), + }, + [223] = { + [anon_sym_in] = ACTIONS(1163), + [sym_comment] = ACTIONS(54), + }, + [224] = { + [aux_sym_concatenation_repeat1] = STATE(600), + [sym__concat] = ACTIONS(406), + [anon_sym_in] = ACTIONS(690), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), + }, + [225] = { + [sym__concat] = ACTIONS(692), + [anon_sym_in] = ACTIONS(694), + [anon_sym_SEMI_SEMI] = ACTIONS(694), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), + }, + [226] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(1165), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [227] = { + [sym__concat] = ACTIONS(722), + [anon_sym_in] = ACTIONS(724), + [anon_sym_SEMI_SEMI] = ACTIONS(724), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LF] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(724), + }, + [228] = { + [sym__concat] = ACTIONS(726), + [anon_sym_in] = ACTIONS(728), + [anon_sym_SEMI_SEMI] = ACTIONS(728), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(728), + [anon_sym_LF] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(728), + }, + [229] = { + [sym__concat] = ACTIONS(730), + [anon_sym_in] = ACTIONS(732), + [anon_sym_SEMI_SEMI] = ACTIONS(732), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(732), + [anon_sym_LF] = ACTIONS(730), + [anon_sym_AMP] = ACTIONS(732), + }, + [230] = { + [anon_sym_SEMI_SEMI] = ACTIONS(1167), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym_LF] = ACTIONS(1169), + [anon_sym_AMP] = ACTIONS(1167), + }, + [231] = { + [anon_sym_in] = ACTIONS(1171), + [sym_comment] = ACTIONS(54), + }, + [232] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(1173), + [sym_comment] = ACTIONS(54), + }, + [233] = { + [sym_concatenation] = STATE(607), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(607), + [anon_sym_RBRACE] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1177), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1179), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1181), + [anon_sym_COLON] = ACTIONS(1177), + [anon_sym_COLON_QMARK] = ACTIONS(1177), + [anon_sym_COLON_DASH] = ACTIONS(1177), + [anon_sym_PERCENT] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [234] = { + [sym_subscript] = STATE(611), + [sym_variable_name] = ACTIONS(1183), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_AT] = ACTIONS(1185), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_0] = ACTIONS(1189), + [anon_sym__] = ACTIONS(1189), + }, + [235] = { + [sym_concatenation] = STATE(614), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(614), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_EQ] = ACTIONS(1193), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1197), + [anon_sym_COLON] = ACTIONS(1193), + [anon_sym_COLON_QMARK] = ACTIONS(1193), + [anon_sym_COLON_DASH] = ACTIONS(1193), + [anon_sym_PERCENT] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [236] = { + [sym_concatenation] = STATE(617), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(617), + [anon_sym_RBRACE] = ACTIONS(1199), + [anon_sym_EQ] = ACTIONS(1201), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1205), + [anon_sym_COLON] = ACTIONS(1201), + [anon_sym_COLON_QMARK] = ACTIONS(1201), + [anon_sym_COLON_DASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [237] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1207), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [238] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1207), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [239] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(1207), + [sym_comment] = ACTIONS(54), + }, + [240] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(1207), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [241] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1209), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [242] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1209), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [243] = { + [anon_sym_RPAREN] = ACTIONS(1211), + [sym_comment] = ACTIONS(54), + }, + [244] = { + [sym__terminated_statement] = STATE(624), + [sym_for_statement] = STATE(622), + [sym_while_statement] = STATE(622), + [sym_if_statement] = STATE(622), + [sym_case_statement] = STATE(622), + [sym_function_definition] = STATE(622), + [sym_subshell] = STATE(622), + [sym_pipeline] = STATE(622), + [sym_list] = STATE(622), + [sym_command] = STATE(622), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(622), + [sym_variable_assignment] = STATE(623), + [sym_declaration_command] = STATE(622), + [sym_unset_command] = STATE(622), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(624), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [245] = { + [sym_file_redirect] = STATE(627), + [sym_file_descriptor] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_SEMI_SEMI] = ACTIONS(1217), + [anon_sym_PIPE_AMP] = ACTIONS(1217), + [anon_sym_AMP_AMP] = ACTIONS(1217), + [anon_sym_PIPE_PIPE] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1219), + [anon_sym_GT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1219), + [anon_sym_AMP_GT] = ACTIONS(1219), + [anon_sym_AMP_GT_GT] = ACTIONS(1219), + [anon_sym_LT_AMP] = ACTIONS(1219), + [anon_sym_GT_AMP] = ACTIONS(1219), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1217), + }, + [246] = { + [sym_concatenation] = STATE(205), + [sym_string] = STATE(629), + [sym_array] = STATE(205), + [sym_simple_expansion] = STATE(629), + [sym_string_expansion] = STATE(629), + [sym_expansion] = STATE(629), + [sym_command_substitution] = STATE(629), + [sym_process_substitution] = STATE(629), + [sym__empty_value] = ACTIONS(368), + [anon_sym_LPAREN] = ACTIONS(370), + [sym__special_characters] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(374), + [anon_sym_DOLLAR] = ACTIONS(376), + [sym_raw_string] = ACTIONS(1225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(384), + [anon_sym_LT_LPAREN] = ACTIONS(386), + [anon_sym_GT_LPAREN] = ACTIONS(386), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1225), + }, + [247] = { + [sym_do_group] = STATE(630), + [anon_sym_do] = ACTIONS(398), + [sym_comment] = ACTIONS(54), + }, + [248] = { + [sym_compound_statement] = STATE(632), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(442), + [sym_comment] = ACTIONS(54), + }, + [249] = { + [sym_concatenation] = STATE(76), + [sym_string] = STATE(71), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [sym_expansion] = STATE(71), + [sym_command_substitution] = STATE(71), + [sym_process_substitution] = STATE(71), + [aux_sym_command_repeat2] = STATE(299), + [anon_sym_EQ_TILDE] = ACTIONS(106), + [anon_sym_EQ_EQ] = ACTIONS(106), + [anon_sym_RBRACK] = ACTIONS(1229), + [sym__special_characters] = ACTIONS(532), + [anon_sym_DQUOTE] = ACTIONS(110), + [anon_sym_DOLLAR] = ACTIONS(112), + [sym_raw_string] = ACTIONS(114), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(118), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_LT_LPAREN] = ACTIONS(122), + [anon_sym_GT_LPAREN] = ACTIONS(122), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(124), + }, + [250] = { + [sym_concatenation] = STATE(87), + [sym_string] = STATE(82), + [sym_simple_expansion] = STATE(82), + [sym_string_expansion] = STATE(82), + [sym_expansion] = STATE(82), + [sym_command_substitution] = STATE(82), + [sym_process_substitution] = STATE(82), + [aux_sym_command_repeat2] = STATE(321), + [anon_sym_EQ_TILDE] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(126), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1229), + [sym__special_characters] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(144), + }, + [251] = { + [sym__assignment] = STATE(323), + [anon_sym_LBRACK] = ACTIONS(62), + [anon_sym_EQ] = ACTIONS(1231), + [anon_sym_PLUS_EQ] = ACTIONS(1231), + [sym_comment] = ACTIONS(54), + }, + [252] = { + [aux_sym_concatenation_repeat1] = STATE(635), + [sym__concat] = ACTIONS(576), + [sym_variable_name] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_RPAREN] = ACTIONS(580), + [anon_sym_SEMI_SEMI] = ACTIONS(580), + [anon_sym_PIPE_AMP] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(580), + [anon_sym_PIPE_PIPE] = ACTIONS(580), + [sym__special_characters] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_DOLLAR] = ACTIONS(580), + [sym_raw_string] = ACTIONS(580), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(580), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(580), + [anon_sym_BQUOTE] = ACTIONS(580), + [anon_sym_LT_LPAREN] = ACTIONS(580), + [anon_sym_GT_LPAREN] = ACTIONS(580), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(580), + [sym_word] = ACTIONS(580), + [anon_sym_SEMI] = ACTIONS(580), + [anon_sym_LF] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(580), + }, + [253] = { + [aux_sym_concatenation_repeat1] = STATE(635), + [sym__concat] = ACTIONS(576), + [sym_variable_name] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_RPAREN] = ACTIONS(596), + [anon_sym_SEMI_SEMI] = ACTIONS(596), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [sym__special_characters] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(596), + [sym_raw_string] = ACTIONS(596), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_LT_LPAREN] = ACTIONS(596), + [anon_sym_GT_LPAREN] = ACTIONS(596), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(596), + [sym_word] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_LF] = ACTIONS(594), + [anon_sym_AMP] = ACTIONS(596), + }, + [254] = { + [sym__assignment] = STATE(323), + [anon_sym_EQ] = ACTIONS(1231), + [anon_sym_PLUS_EQ] = ACTIONS(1231), + [sym_comment] = ACTIONS(54), + }, + [255] = { + [sym_variable_assignment] = STATE(636), + [sym_subscript] = STATE(254), + [sym_concatenation] = STATE(636), + [sym_string] = STATE(253), + [sym_simple_expansion] = STATE(253), + [sym_string_expansion] = STATE(253), + [sym_expansion] = STATE(253), + [sym_command_substitution] = STATE(253), + [sym_process_substitution] = STATE(253), + [aux_sym_declaration_command_repeat1] = STATE(636), + [sym_variable_name] = ACTIONS(448), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(612), + [anon_sym_SEMI_SEMI] = ACTIONS(612), + [anon_sym_PIPE_AMP] = ACTIONS(612), + [anon_sym_AMP_AMP] = ACTIONS(612), + [anon_sym_PIPE_PIPE] = ACTIONS(612), + [sym__special_characters] = ACTIONS(450), + [anon_sym_DQUOTE] = ACTIONS(152), + [anon_sym_DOLLAR] = ACTIONS(154), + [sym_raw_string] = ACTIONS(452), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(160), + [anon_sym_BQUOTE] = ACTIONS(162), + [anon_sym_LT_LPAREN] = ACTIONS(164), + [anon_sym_GT_LPAREN] = ACTIONS(164), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(168), + [sym_word] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(612), + [anon_sym_LF] = ACTIONS(614), + [anon_sym_AMP] = ACTIONS(612), + }, + [256] = { + [aux_sym_concatenation_repeat1] = STATE(637), + [sym__concat] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(618), + [anon_sym_RPAREN] = ACTIONS(618), + [anon_sym_SEMI_SEMI] = ACTIONS(618), + [anon_sym_PIPE_AMP] = ACTIONS(618), + [anon_sym_AMP_AMP] = ACTIONS(618), + [anon_sym_PIPE_PIPE] = ACTIONS(618), + [sym__special_characters] = ACTIONS(618), + [anon_sym_DQUOTE] = ACTIONS(618), + [anon_sym_DOLLAR] = ACTIONS(618), + [sym_raw_string] = ACTIONS(618), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(618), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(618), + [anon_sym_BQUOTE] = ACTIONS(618), + [anon_sym_LT_LPAREN] = ACTIONS(618), + [anon_sym_GT_LPAREN] = ACTIONS(618), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(618), + [sym_word] = ACTIONS(618), + [anon_sym_SEMI] = ACTIONS(618), + [anon_sym_LF] = ACTIONS(620), + [anon_sym_AMP] = ACTIONS(618), + }, + [257] = { + [aux_sym_concatenation_repeat1] = STATE(637), + [sym__concat] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(634), + [anon_sym_RPAREN] = ACTIONS(634), + [anon_sym_SEMI_SEMI] = ACTIONS(634), + [anon_sym_PIPE_AMP] = ACTIONS(634), + [anon_sym_AMP_AMP] = ACTIONS(634), + [anon_sym_PIPE_PIPE] = ACTIONS(634), + [sym__special_characters] = ACTIONS(634), + [anon_sym_DQUOTE] = ACTIONS(634), + [anon_sym_DOLLAR] = ACTIONS(634), + [sym_raw_string] = ACTIONS(634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(634), + [anon_sym_BQUOTE] = ACTIONS(634), + [anon_sym_LT_LPAREN] = ACTIONS(634), + [anon_sym_GT_LPAREN] = ACTIONS(634), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(634), + [sym_word] = ACTIONS(634), + [anon_sym_SEMI] = ACTIONS(634), + [anon_sym_LF] = ACTIONS(636), + [anon_sym_AMP] = ACTIONS(634), + }, + [258] = { + [sym_concatenation] = STATE(638), + [sym_string] = STATE(257), + [sym_simple_expansion] = STATE(257), + [sym_string_expansion] = STATE(257), + [sym_expansion] = STATE(257), + [sym_command_substitution] = STATE(257), + [sym_process_substitution] = STATE(257), + [aux_sym_unset_command_repeat1] = STATE(638), + [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(652), + [anon_sym_SEMI_SEMI] = ACTIONS(652), + [anon_sym_PIPE_AMP] = ACTIONS(652), + [anon_sym_AMP_AMP] = ACTIONS(652), + [anon_sym_PIPE_PIPE] = ACTIONS(652), + [sym__special_characters] = ACTIONS(454), + [anon_sym_DQUOTE] = ACTIONS(176), + [anon_sym_DOLLAR] = ACTIONS(178), + [sym_raw_string] = ACTIONS(456), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(182), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(184), + [anon_sym_BQUOTE] = ACTIONS(186), + [anon_sym_LT_LPAREN] = ACTIONS(188), + [anon_sym_GT_LPAREN] = ACTIONS(188), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(190), + [sym_word] = ACTIONS(456), + [anon_sym_SEMI] = ACTIONS(652), + [anon_sym_LF] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(652), + }, + [259] = { + [aux_sym_concatenation_repeat1] = STATE(639), + [sym_file_descriptor] = ACTIONS(688), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(690), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_EQ_TILDE] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(690), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_LT_LT_DASH] = ACTIONS(690), + [anon_sym_LT_LT_LT] = ACTIONS(690), + [sym__special_characters] = ACTIONS(690), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(690), + [anon_sym_BQUOTE] = ACTIONS(690), + [anon_sym_LT_LPAREN] = ACTIONS(690), + [anon_sym_GT_LPAREN] = ACTIONS(690), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(690), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), + }, + [260] = { + [anon_sym_RPAREN] = ACTIONS(1233), + [sym_comment] = ACTIONS(54), + }, + [261] = { + [sym_for_statement] = STATE(517), + [sym_while_statement] = STATE(517), + [sym_if_statement] = STATE(517), + [sym_case_statement] = STATE(517), + [sym_function_definition] = STATE(517), + [sym_subshell] = STATE(517), + [sym_pipeline] = STATE(517), + [sym_list] = STATE(517), + [sym_command] = STATE(517), + [sym_command_name] = STATE(62), + [sym_bracket_command] = STATE(517), + [sym_variable_assignment] = STATE(518), + [sym_declaration_command] = STATE(517), + [sym_unset_command] = STATE(517), + [sym_subscript] = STATE(64), + [sym_file_redirect] = STATE(66), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(59), + [sym_simple_expansion] = STATE(59), + [sym_string_expansion] = STATE(59), + [sym_expansion] = STATE(59), + [sym_command_substitution] = STATE(59), + [sym_process_substitution] = STATE(59), + [aux_sym_command_repeat1] = STATE(66), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(86), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(88), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(90), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK_LBRACK] = ACTIONS(94), + [anon_sym_declare] = ACTIONS(96), + [anon_sym_typeset] = ACTIONS(96), + [anon_sym_export] = ACTIONS(96), + [anon_sym_readonly] = ACTIONS(96), + [anon_sym_local] = ACTIONS(96), + [anon_sym_unset] = ACTIONS(98), + [anon_sym_unsetenv] = ACTIONS(98), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(100), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(104), + }, + [262] = { + [anon_sym_esac] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_RPAREN] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_LF] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1235), + }, + [263] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(1239), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(944), + [sym_raw_string] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(944), + }, + [264] = { + [sym_for_statement] = STATE(642), + [sym_while_statement] = STATE(642), + [sym_if_statement] = STATE(642), + [sym_case_statement] = STATE(642), + [sym_function_definition] = STATE(642), + [sym_subshell] = STATE(642), + [sym_pipeline] = STATE(642), + [sym_list] = STATE(642), + [sym_command] = STATE(642), + [sym_command_name] = STATE(62), + [sym_bracket_command] = STATE(642), + [sym_variable_assignment] = STATE(643), + [sym_declaration_command] = STATE(642), + [sym_unset_command] = STATE(642), + [sym_subscript] = STATE(64), + [sym_file_redirect] = STATE(66), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(59), + [sym_simple_expansion] = STATE(59), + [sym_string_expansion] = STATE(59), + [sym_expansion] = STATE(59), + [sym_command_substitution] = STATE(59), + [sym_process_substitution] = STATE(59), + [aux_sym_command_repeat1] = STATE(66), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(86), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(88), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(90), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK_LBRACK] = ACTIONS(94), + [anon_sym_declare] = ACTIONS(96), + [anon_sym_typeset] = ACTIONS(96), + [anon_sym_export] = ACTIONS(96), + [anon_sym_readonly] = ACTIONS(96), + [anon_sym_local] = ACTIONS(96), + [anon_sym_unset] = ACTIONS(98), + [anon_sym_unsetenv] = ACTIONS(98), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(100), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(104), + }, + [265] = { + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1241), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [sym_comment] = ACTIONS(54), + }, + [266] = { + [sym_concatenation] = STATE(524), + [sym_string] = STATE(646), + [sym_simple_expansion] = STATE(646), + [sym_string_expansion] = STATE(646), + [sym_expansion] = STATE(646), + [sym_command_substitution] = STATE(646), + [sym_process_substitution] = STATE(646), + [sym__special_characters] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(1247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(342), + [anon_sym_BQUOTE] = ACTIONS(344), + [anon_sym_LT_LPAREN] = ACTIONS(346), + [anon_sym_GT_LPAREN] = ACTIONS(346), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1247), + [sym_regex] = ACTIONS(954), + }, + [267] = { + [sym_concatenation] = STATE(527), + [sym_string] = STATE(648), + [sym_simple_expansion] = STATE(648), + [sym_string_expansion] = STATE(648), + [sym_expansion] = STATE(648), + [sym_command_substitution] = STATE(648), + [sym_process_substitution] = STATE(648), + [sym__special_characters] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1251), + }, + [268] = { + [sym_concatenation] = STATE(533), + [sym_string] = STATE(650), + [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__special_characters] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(1255), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1255), + }, + [269] = { + [aux_sym_concatenation_repeat1] = STATE(259), + [sym_file_descriptor] = ACTIONS(504), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(502), + [anon_sym_RPAREN] = ACTIONS(502), + [anon_sym_SEMI_SEMI] = ACTIONS(502), + [anon_sym_PIPE_AMP] = ACTIONS(502), + [anon_sym_AMP_AMP] = ACTIONS(502), + [anon_sym_PIPE_PIPE] = ACTIONS(502), + [anon_sym_EQ_TILDE] = ACTIONS(502), + [anon_sym_EQ_EQ] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(502), + [anon_sym_GT] = ACTIONS(502), + [anon_sym_GT_GT] = ACTIONS(502), + [anon_sym_AMP_GT] = ACTIONS(502), + [anon_sym_AMP_GT_GT] = ACTIONS(502), + [anon_sym_LT_AMP] = ACTIONS(502), + [anon_sym_GT_AMP] = ACTIONS(502), + [anon_sym_LT_LT] = ACTIONS(502), + [anon_sym_LT_LT_DASH] = ACTIONS(502), + [anon_sym_LT_LT_LT] = ACTIONS(502), + [sym__special_characters] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(502), + [anon_sym_DOLLAR] = ACTIONS(502), + [sym_raw_string] = ACTIONS(502), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(502), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(502), + [anon_sym_BQUOTE] = ACTIONS(502), + [anon_sym_LT_LPAREN] = ACTIONS(502), + [anon_sym_GT_LPAREN] = ACTIONS(502), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(502), + [anon_sym_LF] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(502), + }, + [270] = { + [aux_sym_concatenation_repeat1] = STATE(259), + [sym_file_descriptor] = ACTIONS(518), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(516), + [anon_sym_SEMI_SEMI] = ACTIONS(516), + [anon_sym_PIPE_AMP] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(516), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_EQ_TILDE] = ACTIONS(516), + [anon_sym_EQ_EQ] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_GT_GT] = ACTIONS(516), + [anon_sym_AMP_GT] = ACTIONS(516), + [anon_sym_AMP_GT_GT] = ACTIONS(516), + [anon_sym_LT_AMP] = ACTIONS(516), + [anon_sym_GT_AMP] = ACTIONS(516), + [anon_sym_LT_LT] = ACTIONS(516), + [anon_sym_LT_LT_DASH] = ACTIONS(516), + [anon_sym_LT_LT_LT] = ACTIONS(516), + [sym__special_characters] = ACTIONS(516), + [anon_sym_DQUOTE] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [sym_raw_string] = ACTIONS(516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(516), + [anon_sym_BQUOTE] = ACTIONS(516), + [anon_sym_LT_LPAREN] = ACTIONS(516), + [anon_sym_GT_LPAREN] = ACTIONS(516), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_LF] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(516), + }, + [271] = { + [sym_file_redirect] = STATE(651), + [sym_heredoc_redirect] = STATE(651), + [sym_herestring_redirect] = STATE(651), + [aux_sym_while_statement_repeat1] = STATE(651), + [sym_file_descriptor] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_RPAREN] = ACTIONS(968), + [anon_sym_SEMI_SEMI] = ACTIONS(968), + [anon_sym_PIPE_AMP] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_PIPE_PIPE] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(474), + [anon_sym_GT_GT] = ACTIONS(474), + [anon_sym_AMP_GT] = ACTIONS(474), + [anon_sym_AMP_GT_GT] = ACTIONS(474), + [anon_sym_LT_AMP] = ACTIONS(474), + [anon_sym_GT_AMP] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(476), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_LF] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(968), + }, + [272] = { + [sym_file_redirect] = STATE(652), + [sym_heredoc_redirect] = STATE(652), + [sym_herestring_redirect] = STATE(652), + [sym_concatenation] = STATE(191), + [sym_string] = STATE(270), + [sym_simple_expansion] = STATE(270), + [sym_string_expansion] = STATE(270), + [sym_expansion] = STATE(270), + [sym_command_substitution] = STATE(270), + [sym_process_substitution] = STATE(270), + [aux_sym_while_statement_repeat1] = STATE(652), + [aux_sym_command_repeat2] = STATE(653), + [sym_file_descriptor] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_RPAREN] = ACTIONS(968), + [anon_sym_SEMI_SEMI] = ACTIONS(968), + [anon_sym_PIPE_AMP] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_PIPE_PIPE] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(472), + [anon_sym_EQ_EQ] = ACTIONS(472), + [anon_sym_LT] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(474), + [anon_sym_GT_GT] = ACTIONS(474), + [anon_sym_AMP_GT] = ACTIONS(474), + [anon_sym_AMP_GT_GT] = ACTIONS(474), + [anon_sym_LT_AMP] = ACTIONS(474), + [anon_sym_GT_AMP] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(476), + [sym__special_characters] = ACTIONS(478), + [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(342), + [anon_sym_BQUOTE] = ACTIONS(344), + [anon_sym_LT_LPAREN] = ACTIONS(346), + [anon_sym_GT_LPAREN] = ACTIONS(346), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(480), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_LF] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(968), + }, + [273] = { + [anon_sym_PIPE] = ACTIONS(460), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_SEMI_SEMI] = ACTIONS(1259), + [anon_sym_PIPE_AMP] = ACTIONS(460), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1259), + [anon_sym_LF] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1259), + }, + [274] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(460), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_SEMI_SEMI] = ACTIONS(1259), + [anon_sym_PIPE_AMP] = ACTIONS(460), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(1259), + [anon_sym_LF] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1259), + }, + [275] = { + [sym__terminated_statement] = STATE(275), + [sym_for_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_function_definition] = STATE(25), + [sym_subshell] = STATE(25), + [sym_pipeline] = STATE(25), + [sym_list] = STATE(25), + [sym_command] = STATE(25), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(25), + [sym_variable_assignment] = STATE(27), + [sym_declaration_command] = STATE(25), + [sym_unset_command] = STATE(25), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(275), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(972), + [sym_variable_name] = ACTIONS(975), + [anon_sym_for] = ACTIONS(980), + [anon_sym_while] = ACTIONS(983), + [anon_sym_if] = ACTIONS(986), + [anon_sym_case] = ACTIONS(989), + [anon_sym_function] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1001), + [anon_sym_declare] = ACTIONS(1004), + [anon_sym_typeset] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1004), + [anon_sym_readonly] = ACTIONS(1004), + [anon_sym_local] = ACTIONS(1004), + [anon_sym_unset] = ACTIONS(1007), + [anon_sym_unsetenv] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_GT_GT] = ACTIONS(1013), + [anon_sym_AMP_GT] = ACTIONS(1010), + [anon_sym_AMP_GT_GT] = ACTIONS(1013), + [anon_sym_LT_AMP] = ACTIONS(1013), + [anon_sym_GT_AMP] = ACTIONS(1013), + [sym__special_characters] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1022), + [sym_raw_string] = ACTIONS(1025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1034), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1040), + }, + [276] = { + [sym_file_redirect] = STATE(652), + [sym_heredoc_redirect] = STATE(652), + [sym_herestring_redirect] = STATE(652), + [sym_concatenation] = STATE(191), + [sym_string] = STATE(270), + [sym_simple_expansion] = STATE(270), + [sym_string_expansion] = STATE(270), + [sym_expansion] = STATE(270), + [sym_command_substitution] = STATE(270), + [sym_process_substitution] = STATE(270), + [aux_sym_while_statement_repeat1] = STATE(652), + [aux_sym_command_repeat2] = STATE(655), + [sym_file_descriptor] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_RPAREN] = ACTIONS(968), + [anon_sym_SEMI_SEMI] = ACTIONS(968), + [anon_sym_PIPE_AMP] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_PIPE_PIPE] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(472), + [anon_sym_EQ_EQ] = ACTIONS(472), + [anon_sym_LT] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(474), + [anon_sym_GT_GT] = ACTIONS(474), + [anon_sym_AMP_GT] = ACTIONS(474), + [anon_sym_AMP_GT_GT] = ACTIONS(474), + [anon_sym_LT_AMP] = ACTIONS(474), + [anon_sym_GT_AMP] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(476), + [sym__special_characters] = ACTIONS(478), + [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(342), + [anon_sym_BQUOTE] = ACTIONS(344), + [anon_sym_LT_LPAREN] = ACTIONS(346), + [anon_sym_GT_LPAREN] = ACTIONS(346), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(480), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_LF] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(968), + }, + [277] = { + [aux_sym_concatenation_repeat1] = STATE(281), + [sym__concat] = ACTIONS(500), + [anon_sym_EQ_TILDE] = ACTIONS(1263), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_RBRACK] = ACTIONS(1265), + [sym__special_characters] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1263), + [sym_raw_string] = ACTIONS(1265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1265), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1265), + [anon_sym_BQUOTE] = ACTIONS(1265), + [anon_sym_LT_LPAREN] = ACTIONS(1265), + [anon_sym_GT_LPAREN] = ACTIONS(1265), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1263), + }, + [278] = { + [aux_sym_concatenation_repeat1] = STATE(281), + [sym__concat] = ACTIONS(500), + [anon_sym_EQ_TILDE] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_RBRACK] = ACTIONS(1269), + [sym__special_characters] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_DOLLAR] = ACTIONS(1267), + [sym_raw_string] = ACTIONS(1269), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1269), + [anon_sym_BQUOTE] = ACTIONS(1269), + [anon_sym_LT_LPAREN] = ACTIONS(1269), + [anon_sym_GT_LPAREN] = ACTIONS(1269), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1267), + }, + [279] = { + [anon_sym_EQ_TILDE] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_RBRACK] = ACTIONS(1269), + [sym__special_characters] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_DOLLAR] = ACTIONS(1267), + [sym_raw_string] = ACTIONS(1269), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1269), + [anon_sym_BQUOTE] = ACTIONS(1269), + [anon_sym_LT_LPAREN] = ACTIONS(1269), + [anon_sym_GT_LPAREN] = ACTIONS(1269), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1267), + }, + [280] = { + [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(1271), + [anon_sym_DQUOTE] = ACTIONS(110), + [anon_sym_DOLLAR] = ACTIONS(112), + [sym_raw_string] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(118), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_LT_LPAREN] = ACTIONS(122), + [anon_sym_GT_LPAREN] = ACTIONS(122), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1271), + }, + [281] = { + [aux_sym_concatenation_repeat1] = STATE(657), + [sym__concat] = ACTIONS(500), + [anon_sym_EQ_TILDE] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_RBRACK] = ACTIONS(688), + [sym__special_characters] = ACTIONS(690), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(688), + [anon_sym_LT_LPAREN] = ACTIONS(688), + [anon_sym_GT_LPAREN] = ACTIONS(688), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(690), + }, + [282] = { + [sym__concat] = ACTIONS(692), + [anon_sym_EQ_TILDE] = ACTIONS(694), + [anon_sym_EQ_EQ] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(692), + [sym__special_characters] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(694), + [sym_raw_string] = ACTIONS(692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(692), + [anon_sym_BQUOTE] = ACTIONS(692), + [anon_sym_LT_LPAREN] = ACTIONS(692), + [anon_sym_GT_LPAREN] = ACTIONS(692), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(694), + }, + [283] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(1273), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [284] = { + [sym__concat] = ACTIONS(722), + [anon_sym_EQ_TILDE] = ACTIONS(724), + [anon_sym_EQ_EQ] = ACTIONS(724), + [anon_sym_RBRACK] = ACTIONS(722), + [sym__special_characters] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(722), + [anon_sym_DOLLAR] = ACTIONS(724), + [sym_raw_string] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(722), + [anon_sym_BQUOTE] = ACTIONS(722), + [anon_sym_LT_LPAREN] = ACTIONS(722), + [anon_sym_GT_LPAREN] = ACTIONS(722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(724), + }, + [285] = { + [sym__concat] = ACTIONS(726), + [anon_sym_EQ_TILDE] = ACTIONS(728), + [anon_sym_EQ_EQ] = ACTIONS(728), + [anon_sym_RBRACK] = ACTIONS(726), + [sym__special_characters] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(728), + [sym_raw_string] = ACTIONS(726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(726), + [anon_sym_BQUOTE] = ACTIONS(726), + [anon_sym_LT_LPAREN] = ACTIONS(726), + [anon_sym_GT_LPAREN] = ACTIONS(726), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(728), + }, + [286] = { + [sym__concat] = ACTIONS(730), + [anon_sym_EQ_TILDE] = ACTIONS(732), + [anon_sym_EQ_EQ] = ACTIONS(732), + [anon_sym_RBRACK] = ACTIONS(730), + [sym__special_characters] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(732), + [sym_raw_string] = ACTIONS(730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(730), + [anon_sym_BQUOTE] = ACTIONS(730), + [anon_sym_LT_LPAREN] = ACTIONS(730), + [anon_sym_GT_LPAREN] = ACTIONS(730), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(732), + }, + [287] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(1275), + [sym_comment] = ACTIONS(54), + }, + [288] = { + [sym_concatenation] = STATE(662), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(662), + [anon_sym_RBRACE] = ACTIONS(1277), + [anon_sym_EQ] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1281), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1283), + [anon_sym_COLON] = ACTIONS(1279), + [anon_sym_COLON_QMARK] = ACTIONS(1279), + [anon_sym_COLON_DASH] = ACTIONS(1279), + [anon_sym_PERCENT] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [289] = { + [sym_subscript] = STATE(666), + [sym_variable_name] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_AT] = ACTIONS(1287), + [anon_sym_QMARK] = ACTIONS(1287), + [anon_sym_0] = ACTIONS(1291), + [anon_sym__] = ACTIONS(1291), + }, + [290] = { + [sym_concatenation] = STATE(669), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(669), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_EQ] = ACTIONS(1295), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1299), + [anon_sym_COLON] = ACTIONS(1295), + [anon_sym_COLON_QMARK] = ACTIONS(1295), + [anon_sym_COLON_DASH] = ACTIONS(1295), + [anon_sym_PERCENT] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [291] = { + [sym_concatenation] = STATE(672), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(672), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1303), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1305), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1307), + [anon_sym_COLON] = ACTIONS(1303), + [anon_sym_COLON_QMARK] = ACTIONS(1303), + [anon_sym_COLON_DASH] = ACTIONS(1303), + [anon_sym_PERCENT] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [292] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1309), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [293] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1309), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [294] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(1309), + [sym_comment] = ACTIONS(54), + }, + [295] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(1309), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [296] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1311), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [297] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1311), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [298] = { + [sym_file_redirect] = STATE(675), + [sym_heredoc_redirect] = STATE(675), + [sym_herestring_redirect] = STATE(675), + [aux_sym_while_statement_repeat1] = STATE(675), + [sym_file_descriptor] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_SEMI_SEMI] = ACTIONS(1313), + [anon_sym_PIPE_AMP] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(328), + [anon_sym_GT_GT] = ACTIONS(328), + [anon_sym_AMP_GT] = ACTIONS(328), + [anon_sym_AMP_GT_GT] = ACTIONS(328), + [anon_sym_LT_AMP] = ACTIONS(328), + [anon_sym_GT_AMP] = ACTIONS(328), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(332), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LF] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1313), + }, + [299] = { + [sym_concatenation] = STATE(76), + [sym_string] = STATE(71), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [sym_expansion] = STATE(71), + [sym_command_substitution] = STATE(71), + [sym_process_substitution] = STATE(71), + [aux_sym_command_repeat2] = STATE(299), + [anon_sym_EQ_TILDE] = ACTIONS(1317), + [anon_sym_EQ_EQ] = ACTIONS(1317), + [anon_sym_RBRACK] = ACTIONS(1269), + [sym__special_characters] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1323), + [anon_sym_DOLLAR] = ACTIONS(1326), + [sym_raw_string] = ACTIONS(1329), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1332), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1335), + [anon_sym_BQUOTE] = ACTIONS(1338), + [anon_sym_LT_LPAREN] = ACTIONS(1341), + [anon_sym_GT_LPAREN] = ACTIONS(1341), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1344), + }, + [300] = { + [aux_sym_concatenation_repeat1] = STATE(304), + [sym__concat] = ACTIONS(550), + [anon_sym_EQ_TILDE] = ACTIONS(1263), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1265), + [sym__special_characters] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1263), + [sym_raw_string] = ACTIONS(1265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1265), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1265), + [anon_sym_BQUOTE] = ACTIONS(1265), + [anon_sym_LT_LPAREN] = ACTIONS(1265), + [anon_sym_GT_LPAREN] = ACTIONS(1265), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1263), + }, + [301] = { + [aux_sym_concatenation_repeat1] = STATE(304), + [sym__concat] = ACTIONS(550), + [anon_sym_EQ_TILDE] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1269), + [sym__special_characters] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_DOLLAR] = ACTIONS(1267), + [sym_raw_string] = ACTIONS(1269), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1269), + [anon_sym_BQUOTE] = ACTIONS(1269), + [anon_sym_LT_LPAREN] = ACTIONS(1269), + [anon_sym_GT_LPAREN] = ACTIONS(1269), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1267), + }, + [302] = { + [anon_sym_EQ_TILDE] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1269), + [sym__special_characters] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_DOLLAR] = ACTIONS(1267), + [sym_raw_string] = ACTIONS(1269), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1269), + [anon_sym_BQUOTE] = ACTIONS(1269), + [anon_sym_LT_LPAREN] = ACTIONS(1269), + [anon_sym_GT_LPAREN] = ACTIONS(1269), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1267), + }, + [303] = { + [sym_string] = STATE(676), + [sym_simple_expansion] = STATE(676), + [sym_string_expansion] = STATE(676), + [sym_expansion] = STATE(676), + [sym_command_substitution] = STATE(676), + [sym_process_substitution] = STATE(676), + [sym__special_characters] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(1347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1347), + }, + [304] = { + [aux_sym_concatenation_repeat1] = STATE(677), + [sym__concat] = ACTIONS(550), + [anon_sym_EQ_TILDE] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_RBRACK_RBRACK] = ACTIONS(688), + [sym__special_characters] = ACTIONS(690), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(688), + [anon_sym_LT_LPAREN] = ACTIONS(688), + [anon_sym_GT_LPAREN] = ACTIONS(688), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(690), + }, + [305] = { + [sym__concat] = ACTIONS(692), + [anon_sym_PIPE] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(692), + [anon_sym_EQ_TILDE] = ACTIONS(694), + [anon_sym_EQ_EQ] = ACTIONS(694), + [anon_sym_RBRACK_RBRACK] = ACTIONS(692), + [sym__special_characters] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(694), + [sym_raw_string] = ACTIONS(692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(692), + [anon_sym_BQUOTE] = ACTIONS(692), + [anon_sym_LT_LPAREN] = ACTIONS(692), + [anon_sym_GT_LPAREN] = ACTIONS(692), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(694), + }, + [306] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(1349), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [307] = { + [sym__concat] = ACTIONS(722), + [anon_sym_PIPE] = ACTIONS(722), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_EQ_TILDE] = ACTIONS(724), + [anon_sym_EQ_EQ] = ACTIONS(724), + [anon_sym_RBRACK_RBRACK] = ACTIONS(722), + [sym__special_characters] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(722), + [anon_sym_DOLLAR] = ACTIONS(724), + [sym_raw_string] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(722), + [anon_sym_BQUOTE] = ACTIONS(722), + [anon_sym_LT_LPAREN] = ACTIONS(722), + [anon_sym_GT_LPAREN] = ACTIONS(722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(724), + }, + [308] = { + [sym__concat] = ACTIONS(726), + [anon_sym_PIPE] = ACTIONS(726), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_EQ_TILDE] = ACTIONS(728), + [anon_sym_EQ_EQ] = ACTIONS(728), + [anon_sym_RBRACK_RBRACK] = ACTIONS(726), + [sym__special_characters] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(728), + [sym_raw_string] = ACTIONS(726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(726), + [anon_sym_BQUOTE] = ACTIONS(726), + [anon_sym_LT_LPAREN] = ACTIONS(726), + [anon_sym_GT_LPAREN] = ACTIONS(726), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(728), + }, + [309] = { + [sym__concat] = ACTIONS(730), + [anon_sym_PIPE] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_EQ_TILDE] = ACTIONS(732), + [anon_sym_EQ_EQ] = ACTIONS(732), + [anon_sym_RBRACK_RBRACK] = ACTIONS(730), + [sym__special_characters] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(732), + [sym_raw_string] = ACTIONS(730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(730), + [anon_sym_BQUOTE] = ACTIONS(730), + [anon_sym_LT_LPAREN] = ACTIONS(730), + [anon_sym_GT_LPAREN] = ACTIONS(730), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(732), + }, + [310] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(1351), + [sym_comment] = ACTIONS(54), + }, + [311] = { + [sym_concatenation] = STATE(682), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(682), + [anon_sym_RBRACE] = ACTIONS(1353), + [anon_sym_EQ] = ACTIONS(1355), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1359), + [anon_sym_COLON] = ACTIONS(1355), + [anon_sym_COLON_QMARK] = ACTIONS(1355), + [anon_sym_COLON_DASH] = ACTIONS(1355), + [anon_sym_PERCENT] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [312] = { + [sym_subscript] = STATE(686), + [sym_variable_name] = ACTIONS(1361), + [anon_sym_DOLLAR] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1363), + [anon_sym_0] = ACTIONS(1367), + [anon_sym__] = ACTIONS(1367), + }, + [313] = { + [sym_concatenation] = STATE(689), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(689), + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_EQ] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [314] = { + [sym_concatenation] = STATE(692), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(692), + [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_EQ] = ACTIONS(1379), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [315] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1385), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [316] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1385), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [317] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(1385), + [sym_comment] = ACTIONS(54), + }, + [318] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(1385), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [319] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [320] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [321] = { + [sym_concatenation] = STATE(87), + [sym_string] = STATE(82), + [sym_simple_expansion] = STATE(82), + [sym_string_expansion] = STATE(82), + [sym_expansion] = STATE(82), + [sym_command_substitution] = STATE(82), + [sym_process_substitution] = STATE(82), + [aux_sym_command_repeat2] = STATE(321), + [anon_sym_EQ_TILDE] = ACTIONS(1389), + [anon_sym_EQ_EQ] = ACTIONS(1389), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1269), + [sym__special_characters] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1395), + [anon_sym_DOLLAR] = ACTIONS(1398), + [sym_raw_string] = ACTIONS(1401), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1407), + [anon_sym_BQUOTE] = ACTIONS(1410), + [anon_sym_LT_LPAREN] = ACTIONS(1413), + [anon_sym_GT_LPAREN] = ACTIONS(1413), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1416), + }, + [322] = { + [sym_concatenation] = STATE(695), + [sym_string] = STATE(698), + [sym_array] = STATE(695), + [sym_simple_expansion] = STATE(698), + [sym_string_expansion] = STATE(698), + [sym_expansion] = STATE(698), + [sym_command_substitution] = STATE(698), + [sym_process_substitution] = STATE(698), + [sym__empty_value] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1421), + [sym__special_characters] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_DOLLAR] = ACTIONS(154), + [sym_raw_string] = ACTIONS(1425), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1429), + [anon_sym_BQUOTE] = ACTIONS(1431), + [anon_sym_LT_LPAREN] = ACTIONS(1433), + [anon_sym_GT_LPAREN] = ACTIONS(1433), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1425), + }, + [323] = { + [sym_variable_name] = ACTIONS(388), + [anon_sym_PIPE] = ACTIONS(390), + [anon_sym_RPAREN] = ACTIONS(390), + [anon_sym_SEMI_SEMI] = ACTIONS(390), + [anon_sym_PIPE_AMP] = ACTIONS(390), + [anon_sym_AMP_AMP] = ACTIONS(390), + [anon_sym_PIPE_PIPE] = ACTIONS(390), + [sym__special_characters] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(390), + [sym_raw_string] = ACTIONS(390), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(390), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_BQUOTE] = ACTIONS(390), + [anon_sym_LT_LPAREN] = ACTIONS(390), + [anon_sym_GT_LPAREN] = ACTIONS(390), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(390), + [sym_word] = ACTIONS(390), + [anon_sym_SEMI] = ACTIONS(390), + [anon_sym_LF] = ACTIONS(388), + [anon_sym_AMP] = ACTIONS(390), + }, + [324] = { + [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(1435), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_DOLLAR] = ACTIONS(154), + [sym_raw_string] = ACTIONS(1435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1429), + [anon_sym_BQUOTE] = ACTIONS(1431), + [anon_sym_LT_LPAREN] = ACTIONS(1433), + [anon_sym_GT_LPAREN] = ACTIONS(1433), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1435), + }, + [325] = { + [aux_sym_concatenation_repeat1] = STATE(700), + [sym__concat] = ACTIONS(576), [sym_variable_name] = ACTIONS(688), [anon_sym_PIPE] = ACTIONS(690), [anon_sym_SEMI_SEMI] = ACTIONS(690), @@ -14636,4845 +19527,7349 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(690), [anon_sym_LT_LPAREN] = ACTIONS(690), [anon_sym_GT_LPAREN] = ACTIONS(690), - [sym_comment] = ACTIONS(182), + [sym_comment] = ACTIONS(166), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(690), [sym_word] = ACTIONS(690), [anon_sym_SEMI] = ACTIONS(690), - [anon_sym_LF] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(688), [anon_sym_AMP] = ACTIONS(690), }, - [99] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(379), - [anon_sym_DQUOTE] = ACTIONS(692), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [100] = { - [sym_string] = STATE(381), + [326] = { + [sym__concat] = ACTIONS(692), + [sym_variable_name] = ACTIONS(692), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(694), + [anon_sym_SEMI_SEMI] = ACTIONS(694), + [anon_sym_PIPE_AMP] = ACTIONS(694), + [anon_sym_AMP_AMP] = ACTIONS(694), + [anon_sym_PIPE_PIPE] = ACTIONS(694), + [sym__special_characters] = ACTIONS(694), [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_DOLLAR] = ACTIONS(696), - [sym_raw_string] = ACTIONS(698), - [anon_sym_POUND] = ACTIONS(696), - [anon_sym_DASH] = ACTIONS(696), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(696), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_QMARK] = ACTIONS(696), - [anon_sym_0] = ACTIONS(702), - [anon_sym__] = ACTIONS(702), + [anon_sym_DOLLAR] = ACTIONS(694), + [sym_raw_string] = ACTIONS(694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(694), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LT_LPAREN] = ACTIONS(694), + [anon_sym_GT_LPAREN] = ACTIONS(694), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(694), + [sym_word] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), }, - [101] = { - [aux_sym_concatenation_repeat1] = STATE(377), - [sym__concat] = ACTIONS(686), - [sym_variable_name] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_SEMI_SEMI] = ACTIONS(706), - [anon_sym_PIPE_AMP] = ACTIONS(706), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE_PIPE] = ACTIONS(706), - [sym__special_characters] = ACTIONS(706), - [anon_sym_DQUOTE] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(706), - [sym_raw_string] = ACTIONS(706), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(706), - [anon_sym_BQUOTE] = ACTIONS(706), - [anon_sym_LT_LPAREN] = ACTIONS(706), - [anon_sym_GT_LPAREN] = ACTIONS(706), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(706), - [sym_word] = ACTIONS(706), - [anon_sym_SEMI] = ACTIONS(706), - [anon_sym_LF] = ACTIONS(706), - [anon_sym_AMP] = ACTIONS(706), + [327] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), }, - [102] = { - [sym_subscript] = STATE(387), - [sym_variable_name] = ACTIONS(708), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_POUND] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(710), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(714), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_QMARK] = ACTIONS(710), - [anon_sym_0] = ACTIONS(716), - [anon_sym__] = ACTIONS(716), + [328] = { + [sym__concat] = ACTIONS(722), + [sym_variable_name] = ACTIONS(722), + [anon_sym_PIPE] = ACTIONS(724), + [anon_sym_RPAREN] = ACTIONS(724), + [anon_sym_SEMI_SEMI] = ACTIONS(724), + [anon_sym_PIPE_AMP] = ACTIONS(724), + [anon_sym_AMP_AMP] = ACTIONS(724), + [anon_sym_PIPE_PIPE] = ACTIONS(724), + [sym__special_characters] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(724), + [sym_raw_string] = ACTIONS(724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(724), + [anon_sym_BQUOTE] = ACTIONS(724), + [anon_sym_LT_LPAREN] = ACTIONS(724), + [anon_sym_GT_LPAREN] = ACTIONS(724), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(724), + [sym_word] = ACTIONS(724), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LF] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(724), }, - [103] = { - [sym_for_statement] = STATE(388), - [sym_while_statement] = STATE(388), - [sym_if_statement] = STATE(388), - [sym_case_statement] = STATE(388), - [sym_function_definition] = STATE(388), - [sym_subshell] = STATE(388), - [sym_pipeline] = STATE(388), - [sym_list] = STATE(388), - [sym_command] = STATE(388), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(388), - [sym_variable_assignment] = STATE(389), - [sym_declaration_command] = STATE(388), - [sym_unset_command] = STATE(388), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [329] = { + [sym__concat] = ACTIONS(726), + [sym_variable_name] = ACTIONS(726), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_SEMI_SEMI] = ACTIONS(728), + [anon_sym_PIPE_AMP] = ACTIONS(728), + [anon_sym_AMP_AMP] = ACTIONS(728), + [anon_sym_PIPE_PIPE] = ACTIONS(728), + [sym__special_characters] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(728), + [anon_sym_DOLLAR] = ACTIONS(728), + [sym_raw_string] = ACTIONS(728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(728), + [anon_sym_BQUOTE] = ACTIONS(728), + [anon_sym_LT_LPAREN] = ACTIONS(728), + [anon_sym_GT_LPAREN] = ACTIONS(728), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(728), + [sym_word] = ACTIONS(728), + [anon_sym_SEMI] = ACTIONS(728), + [anon_sym_LF] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(728), }, - [104] = { - [sym_for_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_if_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_function_definition] = STATE(390), - [sym_subshell] = STATE(390), - [sym_pipeline] = STATE(390), - [sym_list] = STATE(390), - [sym_command] = STATE(390), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(390), - [sym_variable_assignment] = STATE(391), - [sym_declaration_command] = STATE(390), - [sym_unset_command] = STATE(390), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), + [330] = { + [sym__concat] = ACTIONS(730), + [sym_variable_name] = ACTIONS(730), + [anon_sym_PIPE] = ACTIONS(732), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_SEMI_SEMI] = ACTIONS(732), + [anon_sym_PIPE_AMP] = ACTIONS(732), + [anon_sym_AMP_AMP] = ACTIONS(732), + [anon_sym_PIPE_PIPE] = ACTIONS(732), + [sym__special_characters] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_DOLLAR] = ACTIONS(732), + [sym_raw_string] = ACTIONS(732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(732), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(732), + [anon_sym_BQUOTE] = ACTIONS(732), + [anon_sym_LT_LPAREN] = ACTIONS(732), + [anon_sym_GT_LPAREN] = ACTIONS(732), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(732), + [sym_word] = ACTIONS(732), + [anon_sym_SEMI] = ACTIONS(732), + [anon_sym_LF] = ACTIONS(730), + [anon_sym_AMP] = ACTIONS(732), }, - [105] = { - [sym_for_statement] = STATE(392), - [sym_while_statement] = STATE(392), - [sym_if_statement] = STATE(392), - [sym_case_statement] = STATE(392), - [sym_function_definition] = STATE(392), - [sym_subshell] = STATE(392), - [sym_pipeline] = STATE(392), - [sym_list] = STATE(392), - [sym_command] = STATE(392), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(392), - [sym_variable_assignment] = STATE(393), - [sym_declaration_command] = STATE(392), - [sym_unset_command] = STATE(392), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [331] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(1439), + [sym_comment] = ACTIONS(54), }, - [106] = { - [sym_variable_name] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_RPAREN] = ACTIONS(720), - [anon_sym_SEMI_SEMI] = ACTIONS(720), - [anon_sym_PIPE_AMP] = ACTIONS(720), - [anon_sym_AMP_AMP] = ACTIONS(720), - [anon_sym_PIPE_PIPE] = ACTIONS(720), - [sym__special_characters] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(720), - [anon_sym_DOLLAR] = ACTIONS(720), - [sym_raw_string] = ACTIONS(720), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(720), - [anon_sym_BQUOTE] = ACTIONS(720), - [anon_sym_LT_LPAREN] = ACTIONS(720), - [anon_sym_GT_LPAREN] = ACTIONS(720), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(720), - [sym_word] = ACTIONS(720), - [anon_sym_SEMI] = ACTIONS(720), - [anon_sym_LF] = ACTIONS(720), - [anon_sym_AMP] = ACTIONS(720), + [332] = { + [sym_concatenation] = STATE(705), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(705), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1443), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1445), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [107] = { - [sym_variable_name] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_SEMI_SEMI] = ACTIONS(706), - [anon_sym_PIPE_AMP] = ACTIONS(706), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE_PIPE] = ACTIONS(706), - [sym__special_characters] = ACTIONS(706), - [anon_sym_DQUOTE] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(706), - [sym_raw_string] = ACTIONS(706), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(706), - [anon_sym_BQUOTE] = ACTIONS(706), - [anon_sym_LT_LPAREN] = ACTIONS(706), - [anon_sym_GT_LPAREN] = ACTIONS(706), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(706), - [sym_word] = ACTIONS(706), - [anon_sym_SEMI] = ACTIONS(706), - [anon_sym_LF] = ACTIONS(706), - [anon_sym_AMP] = ACTIONS(706), + [333] = { + [sym_subscript] = STATE(709), + [sym_variable_name] = ACTIONS(1449), + [anon_sym_DOLLAR] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1451), + [anon_sym_QMARK] = ACTIONS(1451), + [anon_sym_0] = ACTIONS(1455), + [anon_sym__] = ACTIONS(1455), }, - [108] = { - [sym__assignment] = STATE(375), - [anon_sym_EQ] = ACTIONS(684), - [anon_sym_PLUS_EQ] = ACTIONS(684), - [sym_comment] = ACTIONS(56), + [334] = { + [sym_concatenation] = STATE(712), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(712), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_EQ] = ACTIONS(1459), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1461), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [109] = { - [sym_variable_assignment] = STATE(107), - [sym_subscript] = STATE(108), - [sym_concatenation] = STATE(107), - [sym_string] = STATE(101), - [sym_simple_expansion] = STATE(101), - [sym_string_expansion] = STATE(101), - [sym_expansion] = STATE(101), - [sym_command_substitution] = STATE(101), - [sym_process_substitution] = STATE(101), - [aux_sym_declaration_command_repeat1] = STATE(394), - [sym_variable_name] = ACTIONS(162), - [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_SEMI_SEMI] = ACTIONS(722), + [335] = { + [sym_concatenation] = STATE(715), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(715), + [anon_sym_RBRACE] = ACTIONS(1465), + [anon_sym_EQ] = ACTIONS(1467), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1469), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1471), + [anon_sym_COLON] = ACTIONS(1467), + [anon_sym_COLON_QMARK] = ACTIONS(1467), + [anon_sym_COLON_DASH] = ACTIONS(1467), + [anon_sym_PERCENT] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [336] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1473), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [337] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1473), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [338] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(1473), + [sym_comment] = ACTIONS(54), + }, + [339] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(1473), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [340] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [341] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [342] = { + [sym_variable_assignment] = STATE(342), + [sym_subscript] = STATE(99), + [sym_concatenation] = STATE(342), + [sym_string] = STATE(93), + [sym_simple_expansion] = STATE(93), + [sym_string_expansion] = STATE(93), + [sym_expansion] = STATE(93), + [sym_command_substitution] = STATE(93), + [sym_process_substitution] = STATE(93), + [aux_sym_declaration_command_repeat1] = STATE(342), + [sym_variable_name] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), + [anon_sym_PIPE_AMP] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1480), + [sym__special_characters] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1485), + [anon_sym_DOLLAR] = ACTIONS(1488), + [sym_raw_string] = ACTIONS(1491), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1494), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1497), + [anon_sym_BQUOTE] = ACTIONS(1500), + [anon_sym_LT_LPAREN] = ACTIONS(1503), + [anon_sym_GT_LPAREN] = ACTIONS(1503), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1506), + [sym_word] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_LF] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1480), + }, + [343] = { + [sym_string] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_string_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [sym__special_characters] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(178), + [sym_raw_string] = ACTIONS(1511), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1517), + [anon_sym_LT_LPAREN] = ACTIONS(1519), + [anon_sym_GT_LPAREN] = ACTIONS(1519), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1511), + }, + [344] = { + [aux_sym_concatenation_repeat1] = STATE(719), + [sym__concat] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [sym__special_characters] = ACTIONS(690), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(690), + [anon_sym_BQUOTE] = ACTIONS(690), + [anon_sym_LT_LPAREN] = ACTIONS(690), + [anon_sym_GT_LPAREN] = ACTIONS(690), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(690), + [sym_word] = ACTIONS(690), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), + }, + [345] = { + [sym__concat] = ACTIONS(692), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(694), + [anon_sym_SEMI_SEMI] = ACTIONS(694), + [anon_sym_PIPE_AMP] = ACTIONS(694), + [anon_sym_AMP_AMP] = ACTIONS(694), + [anon_sym_PIPE_PIPE] = ACTIONS(694), + [sym__special_characters] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(694), + [sym_raw_string] = ACTIONS(694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(694), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LT_LPAREN] = ACTIONS(694), + [anon_sym_GT_LPAREN] = ACTIONS(694), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(694), + [sym_word] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), + }, + [346] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(1521), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [347] = { + [sym__concat] = ACTIONS(722), + [anon_sym_PIPE] = ACTIONS(724), + [anon_sym_RPAREN] = ACTIONS(724), + [anon_sym_SEMI_SEMI] = ACTIONS(724), + [anon_sym_PIPE_AMP] = ACTIONS(724), + [anon_sym_AMP_AMP] = ACTIONS(724), + [anon_sym_PIPE_PIPE] = ACTIONS(724), + [sym__special_characters] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(724), + [sym_raw_string] = ACTIONS(724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(724), + [anon_sym_BQUOTE] = ACTIONS(724), + [anon_sym_LT_LPAREN] = ACTIONS(724), + [anon_sym_GT_LPAREN] = ACTIONS(724), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(724), + [sym_word] = ACTIONS(724), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LF] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(724), + }, + [348] = { + [sym__concat] = ACTIONS(726), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_SEMI_SEMI] = ACTIONS(728), + [anon_sym_PIPE_AMP] = ACTIONS(728), + [anon_sym_AMP_AMP] = ACTIONS(728), + [anon_sym_PIPE_PIPE] = ACTIONS(728), + [sym__special_characters] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(728), + [anon_sym_DOLLAR] = ACTIONS(728), + [sym_raw_string] = ACTIONS(728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(728), + [anon_sym_BQUOTE] = ACTIONS(728), + [anon_sym_LT_LPAREN] = ACTIONS(728), + [anon_sym_GT_LPAREN] = ACTIONS(728), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(728), + [sym_word] = ACTIONS(728), + [anon_sym_SEMI] = ACTIONS(728), + [anon_sym_LF] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(728), + }, + [349] = { + [sym__concat] = ACTIONS(730), + [anon_sym_PIPE] = ACTIONS(732), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_SEMI_SEMI] = ACTIONS(732), + [anon_sym_PIPE_AMP] = ACTIONS(732), + [anon_sym_AMP_AMP] = ACTIONS(732), + [anon_sym_PIPE_PIPE] = ACTIONS(732), + [sym__special_characters] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_DOLLAR] = ACTIONS(732), + [sym_raw_string] = ACTIONS(732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(732), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(732), + [anon_sym_BQUOTE] = ACTIONS(732), + [anon_sym_LT_LPAREN] = ACTIONS(732), + [anon_sym_GT_LPAREN] = ACTIONS(732), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(732), + [sym_word] = ACTIONS(732), + [anon_sym_SEMI] = ACTIONS(732), + [anon_sym_LF] = ACTIONS(730), + [anon_sym_AMP] = ACTIONS(732), + }, + [350] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(1523), + [sym_comment] = ACTIONS(54), + }, + [351] = { + [sym_concatenation] = STATE(724), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(724), + [anon_sym_RBRACE] = ACTIONS(1525), + [anon_sym_EQ] = ACTIONS(1527), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1529), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1531), + [anon_sym_COLON] = ACTIONS(1527), + [anon_sym_COLON_QMARK] = ACTIONS(1527), + [anon_sym_COLON_DASH] = ACTIONS(1527), + [anon_sym_PERCENT] = ACTIONS(1527), + [anon_sym_DASH] = ACTIONS(1527), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [352] = { + [sym_subscript] = STATE(728), + [sym_variable_name] = ACTIONS(1533), + [anon_sym_DOLLAR] = ACTIONS(1535), + [anon_sym_DASH] = ACTIONS(1535), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_QMARK] = ACTIONS(1535), + [anon_sym_0] = ACTIONS(1539), + [anon_sym__] = ACTIONS(1539), + }, + [353] = { + [sym_concatenation] = STATE(731), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(731), + [anon_sym_RBRACE] = ACTIONS(1541), + [anon_sym_EQ] = ACTIONS(1543), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1547), + [anon_sym_COLON] = ACTIONS(1543), + [anon_sym_COLON_QMARK] = ACTIONS(1543), + [anon_sym_COLON_DASH] = ACTIONS(1543), + [anon_sym_PERCENT] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [354] = { + [sym_concatenation] = STATE(734), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(734), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_EQ] = ACTIONS(1551), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1553), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1555), + [anon_sym_COLON] = ACTIONS(1551), + [anon_sym_COLON_QMARK] = ACTIONS(1551), + [anon_sym_COLON_DASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1551), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [355] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1557), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [356] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1557), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [357] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(1557), + [sym_comment] = ACTIONS(54), + }, + [358] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(1557), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [359] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1559), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [360] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1559), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [361] = { + [sym_concatenation] = STATE(361), + [sym_string] = STATE(104), + [sym_simple_expansion] = STATE(104), + [sym_string_expansion] = STATE(104), + [sym_expansion] = STATE(104), + [sym_command_substitution] = STATE(104), + [sym_process_substitution] = STATE(104), + [aux_sym_unset_command_repeat1] = STATE(361), + [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(166), + [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), + }, + [362] = { + [sym_string] = STATE(737), + [sym_simple_expansion] = STATE(737), + [sym_string_expansion] = STATE(737), + [sym_expansion] = STATE(737), + [sym_command_substitution] = STATE(737), + [sym_process_substitution] = STATE(737), + [sym__special_characters] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(196), + [anon_sym_DOLLAR] = ACTIONS(198), + [sym_raw_string] = ACTIONS(1592), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(204), + [anon_sym_BQUOTE] = ACTIONS(206), + [anon_sym_LT_LPAREN] = ACTIONS(208), + [anon_sym_GT_LPAREN] = ACTIONS(208), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1592), + }, + [363] = { + [aux_sym_concatenation_repeat1] = STATE(738), + [sym_file_descriptor] = ACTIONS(688), + [sym__concat] = ACTIONS(658), + [sym_variable_name] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(688), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(688), + [anon_sym_LT_AMP] = ACTIONS(688), + [anon_sym_GT_AMP] = ACTIONS(688), + [sym__special_characters] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(688), + [anon_sym_LT_LPAREN] = ACTIONS(688), + [anon_sym_GT_LPAREN] = ACTIONS(688), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(688), + }, + [364] = { + [sym_file_descriptor] = ACTIONS(692), + [sym__concat] = ACTIONS(692), + [sym_variable_name] = ACTIONS(692), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(692), + [anon_sym_PIPE_AMP] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_AMP_GT] = ACTIONS(694), + [anon_sym_AMP_GT_GT] = ACTIONS(692), + [anon_sym_LT_AMP] = ACTIONS(692), + [anon_sym_GT_AMP] = ACTIONS(692), + [sym__special_characters] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(694), + [sym_raw_string] = ACTIONS(692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(692), + [anon_sym_BQUOTE] = ACTIONS(692), + [anon_sym_LT_LPAREN] = ACTIONS(692), + [anon_sym_GT_LPAREN] = ACTIONS(692), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(692), + }, + [365] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [366] = { + [sym_file_descriptor] = ACTIONS(722), + [sym__concat] = ACTIONS(722), + [sym_variable_name] = ACTIONS(722), + [anon_sym_PIPE] = ACTIONS(724), + [anon_sym_RPAREN] = ACTIONS(722), [anon_sym_PIPE_AMP] = ACTIONS(722), [anon_sym_AMP_AMP] = ACTIONS(722), [anon_sym_PIPE_PIPE] = ACTIONS(722), - [sym__special_characters] = ACTIONS(166), - [anon_sym_DQUOTE] = ACTIONS(168), - [anon_sym_DOLLAR] = ACTIONS(170), - [sym_raw_string] = ACTIONS(172), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(174), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(176), - [anon_sym_BQUOTE] = ACTIONS(178), - [anon_sym_LT_LPAREN] = ACTIONS(180), - [anon_sym_GT_LPAREN] = ACTIONS(180), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(184), - [sym_word] = ACTIONS(172), - [anon_sym_SEMI] = ACTIONS(722), - [anon_sym_LF] = ACTIONS(722), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_LT] = ACTIONS(724), + [anon_sym_GT] = ACTIONS(724), + [anon_sym_GT_GT] = ACTIONS(722), + [anon_sym_AMP_GT] = ACTIONS(724), + [anon_sym_AMP_GT_GT] = ACTIONS(722), + [anon_sym_LT_AMP] = ACTIONS(722), + [anon_sym_GT_AMP] = ACTIONS(722), + [sym__special_characters] = ACTIONS(722), + [anon_sym_DQUOTE] = ACTIONS(722), + [anon_sym_DOLLAR] = ACTIONS(724), + [sym_raw_string] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(722), + [anon_sym_BQUOTE] = ACTIONS(722), + [anon_sym_LT_LPAREN] = ACTIONS(722), + [anon_sym_GT_LPAREN] = ACTIONS(722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(722), }, - [110] = { - [aux_sym_concatenation_repeat1] = STATE(396), - [sym__concat] = ACTIONS(724), - [anon_sym_PIPE] = ACTIONS(726), - [anon_sym_SEMI_SEMI] = ACTIONS(726), + [367] = { + [sym_file_descriptor] = ACTIONS(726), + [sym__concat] = ACTIONS(726), + [sym_variable_name] = ACTIONS(726), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_RPAREN] = ACTIONS(726), [anon_sym_PIPE_AMP] = ACTIONS(726), [anon_sym_AMP_AMP] = ACTIONS(726), [anon_sym_PIPE_PIPE] = ACTIONS(726), + [anon_sym_LT] = ACTIONS(728), + [anon_sym_GT] = ACTIONS(728), + [anon_sym_GT_GT] = ACTIONS(726), + [anon_sym_AMP_GT] = ACTIONS(728), + [anon_sym_AMP_GT_GT] = ACTIONS(726), + [anon_sym_LT_AMP] = ACTIONS(726), + [anon_sym_GT_AMP] = ACTIONS(726), [sym__special_characters] = ACTIONS(726), [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_DOLLAR] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(728), [sym_raw_string] = ACTIONS(726), [anon_sym_DOLLAR_LBRACE] = ACTIONS(726), [anon_sym_DOLLAR_LPAREN] = ACTIONS(726), [anon_sym_BQUOTE] = ACTIONS(726), [anon_sym_LT_LPAREN] = ACTIONS(726), [anon_sym_GT_LPAREN] = ACTIONS(726), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(726), + [sym_comment] = ACTIONS(54), [sym_word] = ACTIONS(726), - [anon_sym_SEMI] = ACTIONS(726), - [anon_sym_LF] = ACTIONS(726), - [anon_sym_AMP] = ACTIONS(726), }, - [111] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(398), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [112] = { - [sym_string] = STATE(400), + [368] = { + [sym_file_descriptor] = ACTIONS(730), + [sym__concat] = ACTIONS(730), + [sym_variable_name] = ACTIONS(730), + [anon_sym_PIPE] = ACTIONS(732), + [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_PIPE_AMP] = ACTIONS(730), + [anon_sym_AMP_AMP] = ACTIONS(730), + [anon_sym_PIPE_PIPE] = ACTIONS(730), + [anon_sym_LT] = ACTIONS(732), + [anon_sym_GT] = ACTIONS(732), + [anon_sym_GT_GT] = ACTIONS(730), + [anon_sym_AMP_GT] = ACTIONS(732), + [anon_sym_AMP_GT_GT] = ACTIONS(730), + [anon_sym_LT_AMP] = ACTIONS(730), + [anon_sym_GT_AMP] = ACTIONS(730), + [sym__special_characters] = ACTIONS(730), [anon_sym_DQUOTE] = ACTIONS(730), [anon_sym_DOLLAR] = ACTIONS(732), - [sym_raw_string] = ACTIONS(734), - [anon_sym_POUND] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(736), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_AT] = ACTIONS(732), - [anon_sym_QMARK] = ACTIONS(732), - [anon_sym_0] = ACTIONS(738), - [anon_sym__] = ACTIONS(738), + [sym_raw_string] = ACTIONS(730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(730), + [anon_sym_BQUOTE] = ACTIONS(730), + [anon_sym_LT_LPAREN] = ACTIONS(730), + [anon_sym_GT_LPAREN] = ACTIONS(730), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(730), }, - [113] = { - [aux_sym_concatenation_repeat1] = STATE(396), - [sym__concat] = ACTIONS(724), - [anon_sym_PIPE] = ACTIONS(740), - [anon_sym_SEMI_SEMI] = ACTIONS(740), - [anon_sym_PIPE_AMP] = ACTIONS(740), - [anon_sym_AMP_AMP] = ACTIONS(740), - [anon_sym_PIPE_PIPE] = ACTIONS(740), - [sym__special_characters] = ACTIONS(740), - [anon_sym_DQUOTE] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(740), - [sym_raw_string] = ACTIONS(740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(740), - [anon_sym_BQUOTE] = ACTIONS(740), - [anon_sym_LT_LPAREN] = ACTIONS(740), - [anon_sym_GT_LPAREN] = ACTIONS(740), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(740), - [sym_word] = ACTIONS(740), - [anon_sym_SEMI] = ACTIONS(740), - [anon_sym_LF] = ACTIONS(740), - [anon_sym_AMP] = ACTIONS(740), + [369] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(1596), + [sym_comment] = ACTIONS(54), }, - [114] = { - [sym_subscript] = STATE(406), - [sym_variable_name] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(744), - [anon_sym_POUND] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(744), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(748), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_AT] = ACTIONS(744), - [anon_sym_QMARK] = ACTIONS(744), - [anon_sym_0] = ACTIONS(750), - [anon_sym__] = ACTIONS(750), - }, - [115] = { - [sym_for_statement] = STATE(407), - [sym_while_statement] = STATE(407), - [sym_if_statement] = STATE(407), - [sym_case_statement] = STATE(407), - [sym_function_definition] = STATE(407), - [sym_subshell] = STATE(407), - [sym_pipeline] = STATE(407), - [sym_list] = STATE(407), - [sym_command] = STATE(407), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(407), - [sym_variable_assignment] = STATE(408), - [sym_declaration_command] = STATE(407), - [sym_unset_command] = STATE(407), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [116] = { - [sym_for_statement] = STATE(409), - [sym_while_statement] = STATE(409), - [sym_if_statement] = STATE(409), - [sym_case_statement] = STATE(409), - [sym_function_definition] = STATE(409), - [sym_subshell] = STATE(409), - [sym_pipeline] = STATE(409), - [sym_list] = STATE(409), - [sym_command] = STATE(409), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(409), - [sym_variable_assignment] = STATE(410), - [sym_declaration_command] = STATE(409), - [sym_unset_command] = STATE(409), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [117] = { - [sym_for_statement] = STATE(411), - [sym_while_statement] = STATE(411), - [sym_if_statement] = STATE(411), - [sym_case_statement] = STATE(411), - [sym_function_definition] = STATE(411), - [sym_subshell] = STATE(411), - [sym_pipeline] = STATE(411), - [sym_list] = STATE(411), - [sym_command] = STATE(411), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(411), - [sym_variable_assignment] = STATE(412), - [sym_declaration_command] = STATE(411), - [sym_unset_command] = STATE(411), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [118] = { - [anon_sym_PIPE] = ACTIONS(752), - [anon_sym_RPAREN] = ACTIONS(752), - [anon_sym_SEMI_SEMI] = ACTIONS(752), - [anon_sym_PIPE_AMP] = ACTIONS(752), - [anon_sym_AMP_AMP] = ACTIONS(752), - [anon_sym_PIPE_PIPE] = ACTIONS(752), - [sym__special_characters] = ACTIONS(752), - [anon_sym_DQUOTE] = ACTIONS(752), - [anon_sym_DOLLAR] = ACTIONS(752), - [sym_raw_string] = ACTIONS(752), + [370] = { + [sym_concatenation] = STATE(743), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(743), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_EQ] = ACTIONS(1600), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1602), [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(752), - [anon_sym_BQUOTE] = ACTIONS(752), - [anon_sym_LT_LPAREN] = ACTIONS(752), - [anon_sym_GT_LPAREN] = ACTIONS(752), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(752), - [sym_word] = ACTIONS(752), - [anon_sym_SEMI] = ACTIONS(752), - [anon_sym_LF] = ACTIONS(752), - [anon_sym_AMP] = ACTIONS(752), - }, - [119] = { - [anon_sym_PIPE] = ACTIONS(740), - [anon_sym_RPAREN] = ACTIONS(740), - [anon_sym_SEMI_SEMI] = ACTIONS(740), - [anon_sym_PIPE_AMP] = ACTIONS(740), - [anon_sym_AMP_AMP] = ACTIONS(740), - [anon_sym_PIPE_PIPE] = ACTIONS(740), - [sym__special_characters] = ACTIONS(740), - [anon_sym_DQUOTE] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(740), - [sym_raw_string] = ACTIONS(740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(740), - [anon_sym_BQUOTE] = ACTIONS(740), - [anon_sym_LT_LPAREN] = ACTIONS(740), - [anon_sym_GT_LPAREN] = ACTIONS(740), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(740), - [sym_word] = ACTIONS(740), - [anon_sym_SEMI] = ACTIONS(740), - [anon_sym_LF] = ACTIONS(740), - [anon_sym_AMP] = ACTIONS(740), - }, - [120] = { - [sym_concatenation] = STATE(119), - [sym_string] = STATE(113), - [sym_simple_expansion] = STATE(113), - [sym_string_expansion] = STATE(113), - [sym_expansion] = STATE(113), - [sym_command_substitution] = STATE(113), - [sym_process_substitution] = STATE(113), - [aux_sym_unset_command_repeat1] = STATE(413), - [anon_sym_PIPE] = ACTIONS(754), - [anon_sym_SEMI_SEMI] = ACTIONS(754), - [anon_sym_PIPE_AMP] = ACTIONS(754), - [anon_sym_AMP_AMP] = ACTIONS(754), - [anon_sym_PIPE_PIPE] = ACTIONS(754), - [sym__special_characters] = ACTIONS(188), - [anon_sym_DQUOTE] = ACTIONS(190), - [anon_sym_DOLLAR] = ACTIONS(192), - [sym_raw_string] = ACTIONS(194), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), - [anon_sym_BQUOTE] = ACTIONS(200), - [anon_sym_LT_LPAREN] = ACTIONS(202), - [anon_sym_GT_LPAREN] = ACTIONS(202), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(204), - [sym_word] = ACTIONS(194), - [anon_sym_SEMI] = ACTIONS(754), - [anon_sym_LF] = ACTIONS(754), - [anon_sym_AMP] = ACTIONS(754), - }, - [121] = { - [aux_sym_concatenation_repeat1] = STATE(415), - [sym_file_descriptor] = ACTIONS(756), - [sym__concat] = ACTIONS(758), - [sym_variable_name] = ACTIONS(756), - [anon_sym_LT] = ACTIONS(760), - [anon_sym_GT] = ACTIONS(760), - [anon_sym_GT_GT] = ACTIONS(756), - [anon_sym_AMP_GT] = ACTIONS(760), - [anon_sym_AMP_GT_GT] = ACTIONS(756), - [anon_sym_LT_AMP] = ACTIONS(756), - [anon_sym_GT_AMP] = ACTIONS(756), - [sym__special_characters] = ACTIONS(760), - [anon_sym_DQUOTE] = ACTIONS(756), - [anon_sym_DOLLAR] = ACTIONS(760), - [sym_raw_string] = ACTIONS(756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(756), + [aux_sym_SLASH] = ACTIONS(1604), + [anon_sym_COLON] = ACTIONS(1600), + [anon_sym_COLON_QMARK] = ACTIONS(1600), + [anon_sym_COLON_DASH] = ACTIONS(1600), + [anon_sym_PERCENT] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), - [anon_sym_BQUOTE] = ACTIONS(756), - [anon_sym_LT_LPAREN] = ACTIONS(756), - [anon_sym_GT_LPAREN] = ACTIONS(756), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(760), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [122] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(417), - [anon_sym_DQUOTE] = ACTIONS(762), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), + [371] = { + [sym_subscript] = STATE(747), + [sym_variable_name] = ACTIONS(1606), + [anon_sym_DOLLAR] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1610), + [anon_sym_STAR] = ACTIONS(1608), + [anon_sym_AT] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1608), + [anon_sym_0] = ACTIONS(1612), + [anon_sym__] = ACTIONS(1612), }, - [123] = { - [sym_string] = STATE(419), - [anon_sym_DQUOTE] = ACTIONS(208), - [anon_sym_DOLLAR] = ACTIONS(764), - [sym_raw_string] = ACTIONS(766), - [anon_sym_POUND] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_AT] = ACTIONS(764), - [anon_sym_QMARK] = ACTIONS(764), - [anon_sym_0] = ACTIONS(770), - [anon_sym__] = ACTIONS(770), + [372] = { + [sym_concatenation] = STATE(750), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(750), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_EQ] = ACTIONS(1616), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1618), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1620), + [anon_sym_COLON] = ACTIONS(1616), + [anon_sym_COLON_QMARK] = ACTIONS(1616), + [anon_sym_COLON_DASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [124] = { - [aux_sym_concatenation_repeat1] = STATE(415), - [sym_file_descriptor] = ACTIONS(772), - [sym__concat] = ACTIONS(758), - [sym_variable_name] = ACTIONS(772), - [anon_sym_LT] = ACTIONS(774), - [anon_sym_GT] = ACTIONS(774), - [anon_sym_GT_GT] = ACTIONS(772), - [anon_sym_AMP_GT] = ACTIONS(774), - [anon_sym_AMP_GT_GT] = ACTIONS(772), - [anon_sym_LT_AMP] = ACTIONS(772), - [anon_sym_GT_AMP] = ACTIONS(772), - [sym__special_characters] = ACTIONS(774), - [anon_sym_DQUOTE] = ACTIONS(772), - [anon_sym_DOLLAR] = ACTIONS(774), - [sym_raw_string] = ACTIONS(772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(772), - [anon_sym_BQUOTE] = ACTIONS(772), - [anon_sym_LT_LPAREN] = ACTIONS(772), - [anon_sym_GT_LPAREN] = ACTIONS(772), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(774), + [373] = { + [sym_concatenation] = STATE(753), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(753), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_EQ] = ACTIONS(1624), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1626), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1628), + [anon_sym_COLON] = ACTIONS(1624), + [anon_sym_COLON_QMARK] = ACTIONS(1624), + [anon_sym_COLON_DASH] = ACTIONS(1624), + [anon_sym_PERCENT] = ACTIONS(1624), + [anon_sym_DASH] = ACTIONS(1624), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [125] = { - [sym_subscript] = STATE(425), - [sym_variable_name] = ACTIONS(776), - [anon_sym_DOLLAR] = ACTIONS(778), - [anon_sym_POUND] = ACTIONS(780), - [anon_sym_DASH] = ACTIONS(778), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(782), - [anon_sym_STAR] = ACTIONS(778), - [anon_sym_AT] = ACTIONS(778), - [anon_sym_QMARK] = ACTIONS(778), - [anon_sym_0] = ACTIONS(784), - [anon_sym__] = ACTIONS(784), + [374] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1630), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), }, - [126] = { - [sym_for_statement] = STATE(426), - [sym_while_statement] = STATE(426), - [sym_if_statement] = STATE(426), - [sym_case_statement] = STATE(426), - [sym_function_definition] = STATE(426), - [sym_subshell] = STATE(426), - [sym_pipeline] = STATE(426), - [sym_list] = STATE(426), - [sym_command] = STATE(426), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(426), - [sym_variable_assignment] = STATE(427), - [sym_declaration_command] = STATE(426), - [sym_unset_command] = STATE(426), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [375] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1630), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), }, - [127] = { - [sym_for_statement] = STATE(428), - [sym_while_statement] = STATE(428), - [sym_if_statement] = STATE(428), - [sym_case_statement] = STATE(428), - [sym_function_definition] = STATE(428), - [sym_subshell] = STATE(428), - [sym_pipeline] = STATE(428), - [sym_list] = STATE(428), - [sym_command] = STATE(428), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(428), - [sym_variable_assignment] = STATE(429), - [sym_declaration_command] = STATE(428), - [sym_unset_command] = STATE(428), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), + [376] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_comment] = ACTIONS(54), }, - [128] = { - [sym_for_statement] = STATE(430), - [sym_while_statement] = STATE(430), - [sym_if_statement] = STATE(430), - [sym_case_statement] = STATE(430), - [sym_function_definition] = STATE(430), - [sym_subshell] = STATE(430), - [sym_pipeline] = STATE(430), - [sym_list] = STATE(430), - [sym_command] = STATE(430), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(430), - [sym_variable_assignment] = STATE(431), - [sym_declaration_command] = STATE(430), - [sym_unset_command] = STATE(430), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [377] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(1630), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), }, - [129] = { - [sym_file_descriptor] = ACTIONS(772), - [sym_variable_name] = ACTIONS(772), - [anon_sym_LT] = ACTIONS(774), - [anon_sym_GT] = ACTIONS(774), - [anon_sym_GT_GT] = ACTIONS(772), - [anon_sym_AMP_GT] = ACTIONS(774), - [anon_sym_AMP_GT_GT] = ACTIONS(772), - [anon_sym_LT_AMP] = ACTIONS(772), - [anon_sym_GT_AMP] = ACTIONS(772), - [sym__special_characters] = ACTIONS(774), - [anon_sym_DQUOTE] = ACTIONS(772), - [anon_sym_DOLLAR] = ACTIONS(774), - [sym_raw_string] = ACTIONS(772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(772), - [anon_sym_BQUOTE] = ACTIONS(772), - [anon_sym_LT_LPAREN] = ACTIONS(772), - [anon_sym_GT_LPAREN] = ACTIONS(772), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(774), + [378] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1632), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), }, - [130] = { - [sym_string] = STATE(432), - [sym_simple_expansion] = STATE(432), - [sym_string_expansion] = STATE(432), - [sym_expansion] = STATE(432), - [sym_command_substitution] = STATE(432), - [sym_process_substitution] = STATE(432), - [sym__special_characters] = ACTIONS(786), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(786), + [379] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1632), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), }, - [131] = { - [aux_sym_concatenation_repeat1] = STATE(433), - [sym_file_descriptor] = ACTIONS(790), - [sym__concat] = ACTIONS(226), - [anon_sym_PIPE] = ACTIONS(792), - [anon_sym_SEMI_SEMI] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [anon_sym_EQ_TILDE] = ACTIONS(792), - [anon_sym_EQ_EQ] = ACTIONS(792), - [anon_sym_LT] = ACTIONS(792), - [anon_sym_GT] = ACTIONS(792), - [anon_sym_GT_GT] = ACTIONS(792), - [anon_sym_AMP_GT] = ACTIONS(792), - [anon_sym_AMP_GT_GT] = ACTIONS(792), - [anon_sym_LT_AMP] = ACTIONS(792), - [anon_sym_GT_AMP] = ACTIONS(792), - [anon_sym_LT_LT] = ACTIONS(792), - [anon_sym_LT_LT_DASH] = ACTIONS(792), - [anon_sym_LT_LT_LT] = ACTIONS(792), - [sym__special_characters] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(792), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(792), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LF] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(792), + [380] = { + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_EQ_TILDE] = ACTIONS(1636), + [anon_sym_EQ_EQ] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1636), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1636), + [anon_sym_LT_AMP] = ACTIONS(1636), + [anon_sym_GT_AMP] = ACTIONS(1636), + [anon_sym_LT_LT] = ACTIONS(1636), + [anon_sym_LT_LT_DASH] = ACTIONS(1636), + [anon_sym_LT_LT_LT] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), }, - [132] = { - [sym_file_descriptor] = ACTIONS(794), - [sym__concat] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_SEMI_SEMI] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [anon_sym_EQ_TILDE] = ACTIONS(796), - [anon_sym_EQ_EQ] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_GT] = ACTIONS(796), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_AMP_GT] = ACTIONS(796), - [anon_sym_AMP_GT_GT] = ACTIONS(796), - [anon_sym_LT_AMP] = ACTIONS(796), - [anon_sym_GT_AMP] = ACTIONS(796), - [anon_sym_LT_LT] = ACTIONS(796), - [anon_sym_LT_LT_DASH] = ACTIONS(796), - [anon_sym_LT_LT_LT] = ACTIONS(796), - [sym__special_characters] = ACTIONS(796), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(796), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(796), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_LF] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), + [381] = { + [aux_sym_concatenation_repeat1] = STATE(381), + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(1638), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_EQ_TILDE] = ACTIONS(1636), + [anon_sym_EQ_EQ] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1636), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1636), + [anon_sym_LT_AMP] = ACTIONS(1636), + [anon_sym_GT_AMP] = ACTIONS(1636), + [anon_sym_LT_LT] = ACTIONS(1636), + [anon_sym_LT_LT_DASH] = ACTIONS(1636), + [anon_sym_LT_LT_LT] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), }, - [133] = { - [anon_sym_DOLLAR] = ACTIONS(798), - [sym__string_content] = ACTIONS(800), - [anon_sym_POUND] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(802), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(804), - [anon_sym_STAR] = ACTIONS(802), - [anon_sym_AT] = ACTIONS(802), - [anon_sym_QMARK] = ACTIONS(802), - [anon_sym_0] = ACTIONS(806), - [anon_sym__] = ACTIONS(806), + [382] = { + [sym__concat] = ACTIONS(722), + [anon_sym_DQUOTE] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(724), + [sym__string_content] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(724), + [anon_sym_BQUOTE] = ACTIONS(724), + [sym_comment] = ACTIONS(166), }, - [134] = { - [sym__concat] = ACTIONS(808), - [anon_sym_DQUOTE] = ACTIONS(810), - [anon_sym_DOLLAR] = ACTIONS(810), - [sym__string_content] = ACTIONS(812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(810), - [anon_sym_BQUOTE] = ACTIONS(810), - [sym_comment] = ACTIONS(182), + [383] = { + [sym__concat] = ACTIONS(1641), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1643), + [sym__string_content] = ACTIONS(1645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1643), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1643), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_comment] = ACTIONS(166), }, - [135] = { - [sym_subscript] = STATE(442), - [sym_variable_name] = ACTIONS(814), - [anon_sym_DOLLAR] = ACTIONS(816), - [anon_sym_POUND] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(816), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(820), - [anon_sym_STAR] = ACTIONS(816), - [anon_sym_AT] = ACTIONS(816), - [anon_sym_QMARK] = ACTIONS(816), - [anon_sym_0] = ACTIONS(822), - [anon_sym__] = ACTIONS(822), + [384] = { + [sym__concat] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_DOLLAR] = ACTIONS(732), + [sym__string_content] = ACTIONS(730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(732), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(732), + [anon_sym_BQUOTE] = ACTIONS(732), + [sym_comment] = ACTIONS(166), }, - [136] = { - [sym_for_statement] = STATE(443), - [sym_while_statement] = STATE(443), - [sym_if_statement] = STATE(443), - [sym_case_statement] = STATE(443), - [sym_function_definition] = STATE(443), - [sym_subshell] = STATE(443), - [sym_pipeline] = STATE(443), - [sym_list] = STATE(443), - [sym_command] = STATE(443), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(443), - [sym_variable_assignment] = STATE(444), - [sym_declaration_command] = STATE(443), - [sym_unset_command] = STATE(443), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [385] = { + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1643), + [sym__string_content] = ACTIONS(1645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1643), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1643), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_comment] = ACTIONS(166), }, - [137] = { - [sym_for_statement] = STATE(445), - [sym_while_statement] = STATE(445), - [sym_if_statement] = STATE(445), - [sym_case_statement] = STATE(445), - [sym_function_definition] = STATE(445), - [sym_subshell] = STATE(445), - [sym_pipeline] = STATE(445), - [sym_list] = STATE(445), - [sym_command] = STATE(445), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(445), - [sym_variable_assignment] = STATE(446), - [sym_declaration_command] = STATE(445), - [sym_unset_command] = STATE(445), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), + [386] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(1647), + [sym_comment] = ACTIONS(54), }, - [138] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), + [387] = { + [sym_concatenation] = STATE(760), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(760), + [anon_sym_RBRACE] = ACTIONS(1649), + [anon_sym_EQ] = ACTIONS(1651), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1653), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1651), + [anon_sym_COLON_QMARK] = ACTIONS(1651), + [anon_sym_COLON_DASH] = ACTIONS(1651), + [anon_sym_PERCENT] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [139] = { - [sym_file_descriptor] = ACTIONS(826), - [sym__concat] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_SEMI_SEMI] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [anon_sym_EQ_TILDE] = ACTIONS(828), - [anon_sym_EQ_EQ] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(828), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(828), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), - [anon_sym_LT_LT] = ACTIONS(828), - [anon_sym_LT_LT_DASH] = ACTIONS(828), - [anon_sym_LT_LT_LT] = ACTIONS(828), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(828), + [388] = { + [sym_subscript] = STATE(764), + [sym_variable_name] = ACTIONS(1657), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(1659), + [anon_sym_AT] = ACTIONS(1659), + [anon_sym_QMARK] = ACTIONS(1659), + [anon_sym_0] = ACTIONS(1663), + [anon_sym__] = ACTIONS(1663), }, - [140] = { - [sym_file_descriptor] = ACTIONS(830), - [sym__concat] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [anon_sym_EQ_TILDE] = ACTIONS(832), - [anon_sym_EQ_EQ] = ACTIONS(832), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_GT] = ACTIONS(832), - [anon_sym_GT_GT] = ACTIONS(832), - [anon_sym_AMP_GT] = ACTIONS(832), - [anon_sym_AMP_GT_GT] = ACTIONS(832), - [anon_sym_LT_AMP] = ACTIONS(832), - [anon_sym_GT_AMP] = ACTIONS(832), - [anon_sym_LT_LT] = ACTIONS(832), - [anon_sym_LT_LT_DASH] = ACTIONS(832), - [anon_sym_LT_LT_LT] = ACTIONS(832), - [sym__special_characters] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(832), - [anon_sym_AMP] = ACTIONS(832), + [389] = { + [sym_concatenation] = STATE(767), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(767), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_EQ] = ACTIONS(1667), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1669), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1671), + [anon_sym_COLON] = ACTIONS(1667), + [anon_sym_COLON_QMARK] = ACTIONS(1667), + [anon_sym_COLON_DASH] = ACTIONS(1667), + [anon_sym_PERCENT] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [141] = { - [sym_file_descriptor] = ACTIONS(834), - [sym__concat] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_SEMI_SEMI] = ACTIONS(836), - [anon_sym_PIPE_AMP] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [anon_sym_EQ_TILDE] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_AMP_GT] = ACTIONS(836), - [anon_sym_AMP_GT_GT] = ACTIONS(836), - [anon_sym_LT_AMP] = ACTIONS(836), - [anon_sym_GT_AMP] = ACTIONS(836), - [anon_sym_LT_LT] = ACTIONS(836), - [anon_sym_LT_LT_DASH] = ACTIONS(836), - [anon_sym_LT_LT_LT] = ACTIONS(836), - [sym__special_characters] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [sym_raw_string] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), - [anon_sym_BQUOTE] = ACTIONS(836), - [anon_sym_LT_LPAREN] = ACTIONS(836), - [anon_sym_GT_LPAREN] = ACTIONS(836), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(836), + [390] = { + [sym_concatenation] = STATE(770), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(770), + [anon_sym_RBRACE] = ACTIONS(1673), + [anon_sym_EQ] = ACTIONS(1675), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1677), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1679), + [anon_sym_COLON] = ACTIONS(1675), + [anon_sym_COLON_QMARK] = ACTIONS(1675), + [anon_sym_COLON_DASH] = ACTIONS(1675), + [anon_sym_PERCENT] = ACTIONS(1675), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [142] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(840), - [sym_comment] = ACTIONS(56), + [391] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), }, - [143] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(462), - [anon_sym_RBRACE] = ACTIONS(842), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(858), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [392] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), }, - [144] = { - [sym_subscript] = STATE(466), - [sym_variable_name] = ACTIONS(868), - [anon_sym_DOLLAR] = ACTIONS(870), - [anon_sym_DASH] = ACTIONS(870), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(870), - [anon_sym_AT] = ACTIONS(870), - [anon_sym_QMARK] = ACTIONS(870), - [anon_sym_0] = ACTIONS(874), - [anon_sym__] = ACTIONS(874), + [393] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(1681), + [sym_comment] = ACTIONS(54), }, - [145] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(469), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(878), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [394] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(1681), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), }, - [146] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(472), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(882), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [395] = { + [sym_file_descriptor] = ACTIONS(1683), + [sym__concat] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [anon_sym_EQ_TILDE] = ACTIONS(1685), + [anon_sym_EQ_EQ] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1685), + [anon_sym_AMP_GT] = ACTIONS(1685), + [anon_sym_AMP_GT_GT] = ACTIONS(1685), + [anon_sym_LT_AMP] = ACTIONS(1685), + [anon_sym_GT_AMP] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1685), + [anon_sym_LT_LT_DASH] = ACTIONS(1685), + [anon_sym_LT_LT_LT] = ACTIONS(1685), + [sym__special_characters] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_BQUOTE] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), }, - [147] = { - [sym__assignment] = STATE(474), - [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(884), - [anon_sym_PLUS_EQ] = ACTIONS(884), - [sym_comment] = ACTIONS(56), + [396] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1687), + [sym__string_content] = ACTIONS(1690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1696), + [anon_sym_BQUOTE] = ACTIONS(1699), + [sym_comment] = ACTIONS(166), }, - [148] = { - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(886), + [397] = { + [sym_concatenation] = STATE(774), + [sym_string] = STATE(773), + [sym_simple_expansion] = STATE(773), + [sym_string_expansion] = STATE(773), + [sym_expansion] = STATE(773), + [sym_command_substitution] = STATE(773), + [sym_process_substitution] = STATE(773), + [sym__special_characters] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(110), + [anon_sym_DOLLAR] = ACTIONS(112), + [sym_raw_string] = ACTIONS(1704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(118), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_LT_LPAREN] = ACTIONS(122), + [anon_sym_GT_LPAREN] = ACTIONS(122), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1704), }, - [149] = { - [sym__terminated_statement] = STATE(476), - [sym_for_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_function_definition] = STATE(40), - [sym_subshell] = STATE(40), - [sym_pipeline] = STATE(40), - [sym_list] = STATE(40), - [sym_command] = STATE(40), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(40), - [sym_variable_assignment] = STATE(41), - [sym_declaration_command] = STATE(40), - [sym_unset_command] = STATE(40), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [398] = { + [sym_concatenation] = STATE(784), + [sym_string] = STATE(779), + [sym_simple_expansion] = STATE(779), + [sym_string_expansion] = STATE(779), + [sym_expansion] = STATE(779), + [sym_command_substitution] = STATE(779), + [sym_process_substitution] = STATE(779), + [anon_sym_RBRACE] = ACTIONS(1706), + [sym__special_characters] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(1714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1714), }, - [150] = { - [sym__terminated_statement] = STATE(477), - [sym_for_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_function_definition] = STATE(40), - [sym_subshell] = STATE(40), - [sym_pipeline] = STATE(40), - [sym_list] = STATE(40), - [sym_command] = STATE(40), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(40), - [sym_variable_assignment] = STATE(41), - [sym_declaration_command] = STATE(40), - [sym_unset_command] = STATE(40), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [399] = { + [sym_file_descriptor] = ACTIONS(1724), + [sym__concat] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_EQ_TILDE] = ACTIONS(1726), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1726), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1726), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1726), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1726), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LF] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1726), }, - [151] = { - [sym_concatenation] = STATE(480), - [sym_string] = STATE(479), - [sym_simple_expansion] = STATE(479), - [sym_string_expansion] = STATE(479), - [sym_expansion] = STATE(479), - [sym_command_substitution] = STATE(479), - [sym_process_substitution] = STATE(479), - [sym__special_characters] = ACTIONS(888), - [anon_sym_DQUOTE] = ACTIONS(72), - [anon_sym_DOLLAR] = ACTIONS(74), - [sym_raw_string] = ACTIONS(890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(78), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(80), - [anon_sym_BQUOTE] = ACTIONS(82), - [anon_sym_LT_LPAREN] = ACTIONS(84), - [anon_sym_GT_LPAREN] = ACTIONS(84), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(892), + [400] = { + [aux_sym_concatenation_repeat1] = STATE(786), + [sym__concat] = ACTIONS(1728), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1732), + [sym__special_characters] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1730), + [anon_sym_DOLLAR] = ACTIONS(1732), + [sym_raw_string] = ACTIONS(1730), + [anon_sym_POUND] = ACTIONS(1730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(1732), + [anon_sym_COLON_QMARK] = ACTIONS(1732), + [anon_sym_COLON_DASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_LT_LPAREN] = ACTIONS(1730), + [anon_sym_GT_LPAREN] = ACTIONS(1730), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1732), }, - [152] = { - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(894), - }, - [153] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(482), - [sym_while_statement] = STATE(482), - [sym_if_statement] = STATE(482), - [sym_case_statement] = STATE(482), - [sym_function_definition] = STATE(482), - [sym_subshell] = STATE(482), - [sym_pipeline] = STATE(482), - [sym_list] = STATE(482), - [sym_command] = STATE(482), - [sym_command_name] = STATE(70), - [sym_bracket_command] = STATE(482), - [sym_variable_assignment] = STATE(483), - [sym_declaration_command] = STATE(482), - [sym_unset_command] = STATE(482), - [sym_subscript] = STATE(72), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(63), - [sym_simple_expansion] = STATE(63), - [sym_string_expansion] = STATE(63), - [sym_expansion] = STATE(63), - [sym_command_substitution] = STATE(63), - [sym_process_substitution] = STATE(63), - [aux_sym_program_repeat1] = STATE(484), - [aux_sym_command_repeat1] = STATE(74), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(90), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(92), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(94), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(96), - [anon_sym_LBRACK_LBRACK] = ACTIONS(98), - [anon_sym_declare] = ACTIONS(100), - [anon_sym_typeset] = ACTIONS(100), - [anon_sym_export] = ACTIONS(100), - [anon_sym_readonly] = ACTIONS(100), - [anon_sym_local] = ACTIONS(100), - [anon_sym_unset] = ACTIONS(102), - [anon_sym_unsetenv] = ACTIONS(102), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(104), - [anon_sym_DQUOTE] = ACTIONS(106), - [anon_sym_DOLLAR] = ACTIONS(108), - [sym_raw_string] = ACTIONS(110), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(114), - [anon_sym_BQUOTE] = ACTIONS(116), - [anon_sym_LT_LPAREN] = ACTIONS(118), - [anon_sym_GT_LPAREN] = ACTIONS(118), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(120), - }, - [154] = { - [sym_concatenation] = STATE(84), - [sym_string] = STATE(79), - [sym_simple_expansion] = STATE(79), - [sym_string_expansion] = STATE(79), - [sym_expansion] = STATE(79), - [sym_command_substitution] = STATE(79), - [sym_process_substitution] = STATE(79), - [aux_sym_command_repeat2] = STATE(485), - [anon_sym_EQ_TILDE] = ACTIONS(122), - [anon_sym_EQ_EQ] = ACTIONS(122), - [sym__special_characters] = ACTIONS(124), - [anon_sym_DQUOTE] = ACTIONS(126), - [anon_sym_DOLLAR] = ACTIONS(128), - [sym_raw_string] = ACTIONS(130), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), - [anon_sym_BQUOTE] = ACTIONS(136), - [anon_sym_LT_LPAREN] = ACTIONS(138), - [anon_sym_GT_LPAREN] = ACTIONS(138), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(140), - }, - [155] = { - [sym_concatenation] = STATE(95), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_string_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat2] = STATE(486), - [anon_sym_EQ_TILDE] = ACTIONS(142), - [anon_sym_EQ_EQ] = ACTIONS(142), - [sym__special_characters] = ACTIONS(144), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(148), - [sym_raw_string] = ACTIONS(150), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(156), - [anon_sym_LT_LPAREN] = ACTIONS(158), - [anon_sym_GT_LPAREN] = ACTIONS(158), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(160), - }, - [156] = { - [sym_variable_assignment] = STATE(497), - [sym_subscript] = STATE(498), - [sym_concatenation] = STATE(497), - [sym_string] = STATE(491), - [sym_simple_expansion] = STATE(491), - [sym_string_expansion] = STATE(491), - [sym_expansion] = STATE(491), - [sym_command_substitution] = STATE(491), - [sym_process_substitution] = STATE(491), - [aux_sym_declaration_command_repeat1] = STATE(499), - [sym_variable_name] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(900), - [anon_sym_PIPE_AMP] = ACTIONS(900), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE_PIPE] = ACTIONS(900), - [sym__special_characters] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_DOLLAR] = ACTIONS(906), - [sym_raw_string] = ACTIONS(908), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(912), - [anon_sym_BQUOTE] = ACTIONS(914), - [anon_sym_LT_LPAREN] = ACTIONS(916), - [anon_sym_GT_LPAREN] = ACTIONS(916), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(918), - [sym_word] = ACTIONS(920), - }, - [157] = { - [sym_concatenation] = STATE(509), - [sym_string] = STATE(503), - [sym_simple_expansion] = STATE(503), - [sym_string_expansion] = STATE(503), - [sym_expansion] = STATE(503), - [sym_command_substitution] = STATE(503), - [sym_process_substitution] = STATE(503), - [aux_sym_unset_command_repeat1] = STATE(510), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_RPAREN] = ACTIONS(924), - [anon_sym_PIPE_AMP] = ACTIONS(924), - [anon_sym_AMP_AMP] = ACTIONS(924), - [anon_sym_PIPE_PIPE] = ACTIONS(924), - [sym__special_characters] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(930), - [sym_raw_string] = ACTIONS(932), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(936), - [anon_sym_BQUOTE] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(940), - [anon_sym_GT_LPAREN] = ACTIONS(940), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(942), - [sym_word] = ACTIONS(944), - }, - [158] = { - [aux_sym_concatenation_repeat1] = STATE(512), - [sym_file_descriptor] = ACTIONS(224), - [sym__concat] = ACTIONS(946), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_PIPE_AMP] = ACTIONS(224), - [anon_sym_AMP_AMP] = ACTIONS(224), - [anon_sym_PIPE_PIPE] = ACTIONS(224), - [anon_sym_EQ_TILDE] = ACTIONS(948), - [anon_sym_EQ_EQ] = ACTIONS(948), - [anon_sym_LT] = ACTIONS(948), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_GT_GT] = ACTIONS(224), - [anon_sym_AMP_GT] = ACTIONS(948), - [anon_sym_AMP_GT_GT] = ACTIONS(224), - [anon_sym_LT_AMP] = ACTIONS(224), - [anon_sym_GT_AMP] = ACTIONS(224), - [anon_sym_LT_LT] = ACTIONS(948), - [anon_sym_LT_LT_DASH] = ACTIONS(224), - [anon_sym_LT_LT_LT] = ACTIONS(224), - [sym__special_characters] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(948), - [sym_raw_string] = ACTIONS(224), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), + [401] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(788), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), - [anon_sym_BQUOTE] = ACTIONS(224), - [anon_sym_LT_LPAREN] = ACTIONS(224), - [anon_sym_GT_LPAREN] = ACTIONS(224), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(228), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), }, - [159] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(514), - [anon_sym_DQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), + [402] = { + [sym_string] = STATE(790), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(1736), + [anon_sym_DASH] = ACTIONS(1736), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1740), + [anon_sym_STAR] = ACTIONS(1736), + [anon_sym_AT] = ACTIONS(1736), + [anon_sym_QMARK] = ACTIONS(1736), + [anon_sym_0] = ACTIONS(1742), + [anon_sym__] = ACTIONS(1742), }, - [160] = { - [sym_string] = STATE(516), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(952), - [sym_raw_string] = ACTIONS(954), - [anon_sym_POUND] = ACTIONS(952), - [anon_sym_DASH] = ACTIONS(952), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(952), - [anon_sym_AT] = ACTIONS(952), - [anon_sym_QMARK] = ACTIONS(952), - [anon_sym_0] = ACTIONS(958), - [anon_sym__] = ACTIONS(958), + [403] = { + [aux_sym_concatenation_repeat1] = STATE(786), + [sym__concat] = ACTIONS(1728), + [anon_sym_RBRACE] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1746), + [sym__special_characters] = ACTIONS(1746), + [anon_sym_DQUOTE] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1746), + [sym_raw_string] = ACTIONS(1744), + [anon_sym_POUND] = ACTIONS(1744), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1744), + [anon_sym_COLON] = ACTIONS(1746), + [anon_sym_COLON_QMARK] = ACTIONS(1746), + [anon_sym_COLON_DASH] = ACTIONS(1746), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_DASH] = ACTIONS(1746), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1744), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1744), + [anon_sym_GT_LPAREN] = ACTIONS(1744), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1746), }, - [161] = { - [aux_sym_concatenation_repeat1] = STATE(512), - [sym_file_descriptor] = ACTIONS(250), - [sym__concat] = ACTIONS(946), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(250), - [anon_sym_PIPE_AMP] = ACTIONS(250), - [anon_sym_AMP_AMP] = ACTIONS(250), - [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_TILDE] = ACTIONS(960), - [anon_sym_EQ_EQ] = ACTIONS(960), - [anon_sym_LT] = ACTIONS(960), - [anon_sym_GT] = ACTIONS(960), - [anon_sym_GT_GT] = ACTIONS(250), - [anon_sym_AMP_GT] = ACTIONS(960), - [anon_sym_AMP_GT_GT] = ACTIONS(250), - [anon_sym_LT_AMP] = ACTIONS(250), - [anon_sym_GT_AMP] = ACTIONS(250), - [anon_sym_LT_LT] = ACTIONS(960), - [anon_sym_LT_LT_DASH] = ACTIONS(250), - [anon_sym_LT_LT_LT] = ACTIONS(250), - [sym__special_characters] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(250), - [anon_sym_DOLLAR] = ACTIONS(960), - [sym_raw_string] = ACTIONS(250), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(250), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(250), - [anon_sym_BQUOTE] = ACTIONS(250), - [anon_sym_LT_LPAREN] = ACTIONS(250), - [anon_sym_GT_LPAREN] = ACTIONS(250), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(252), + [404] = { + [sym_subscript] = STATE(796), + [sym_variable_name] = ACTIONS(1748), + [anon_sym_DOLLAR] = ACTIONS(1750), + [anon_sym_POUND] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1750), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(1750), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_0] = ACTIONS(1756), + [anon_sym__] = ACTIONS(1756), }, - [162] = { - [sym_subscript] = STATE(522), - [sym_variable_name] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_POUND] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(964), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_AT] = ACTIONS(964), - [anon_sym_QMARK] = ACTIONS(964), - [anon_sym_0] = ACTIONS(970), - [anon_sym__] = ACTIONS(970), + [405] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(1758), }, - [163] = { - [sym_for_statement] = STATE(523), - [sym_while_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_case_statement] = STATE(523), - [sym_function_definition] = STATE(523), - [sym_subshell] = STATE(523), - [sym_pipeline] = STATE(523), - [sym_list] = STATE(523), - [sym_command] = STATE(523), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(523), - [sym_variable_assignment] = STATE(524), - [sym_declaration_command] = STATE(523), - [sym_unset_command] = STATE(523), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [406] = { + [sym_for_statement] = STATE(798), + [sym_while_statement] = STATE(798), + [sym_if_statement] = STATE(798), + [sym_case_statement] = STATE(798), + [sym_function_definition] = STATE(798), + [sym_subshell] = STATE(798), + [sym_pipeline] = STATE(798), + [sym_list] = STATE(798), + [sym_command] = STATE(798), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(798), + [sym_variable_assignment] = STATE(799), + [sym_declaration_command] = STATE(798), + [sym_unset_command] = STATE(798), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), }, - [164] = { - [sym_for_statement] = STATE(525), - [sym_while_statement] = STATE(525), - [sym_if_statement] = STATE(525), - [sym_case_statement] = STATE(525), - [sym_function_definition] = STATE(525), - [sym_subshell] = STATE(525), - [sym_pipeline] = STATE(525), - [sym_list] = STATE(525), - [sym_command] = STATE(525), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(525), - [sym_variable_assignment] = STATE(526), - [sym_declaration_command] = STATE(525), - [sym_unset_command] = STATE(525), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), + [407] = { + [sym_for_statement] = STATE(800), + [sym_while_statement] = STATE(800), + [sym_if_statement] = STATE(800), + [sym_case_statement] = STATE(800), + [sym_function_definition] = STATE(800), + [sym_subshell] = STATE(800), + [sym_pipeline] = STATE(800), + [sym_list] = STATE(800), + [sym_command] = STATE(800), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(800), + [sym_variable_assignment] = STATE(801), + [sym_declaration_command] = STATE(800), + [sym_unset_command] = STATE(800), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), }, - [165] = { - [sym_for_statement] = STATE(527), - [sym_while_statement] = STATE(527), - [sym_if_statement] = STATE(527), - [sym_case_statement] = STATE(527), - [sym_function_definition] = STATE(527), - [sym_subshell] = STATE(527), - [sym_pipeline] = STATE(527), - [sym_list] = STATE(527), - [sym_command] = STATE(527), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(527), - [sym_variable_assignment] = STATE(528), - [sym_declaration_command] = STATE(527), - [sym_unset_command] = STATE(527), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [408] = { + [sym_for_statement] = STATE(802), + [sym_while_statement] = STATE(802), + [sym_if_statement] = STATE(802), + [sym_case_statement] = STATE(802), + [sym_function_definition] = STATE(802), + [sym_subshell] = STATE(802), + [sym_pipeline] = STATE(802), + [sym_list] = STATE(802), + [sym_command] = STATE(802), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(802), + [sym_variable_assignment] = STATE(803), + [sym_declaration_command] = STATE(802), + [sym_unset_command] = STATE(802), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), }, - [166] = { - [aux_sym_concatenation_repeat1] = STATE(512), - [sym_file_descriptor] = ACTIONS(250), - [sym__concat] = ACTIONS(946), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_PIPE_AMP] = ACTIONS(250), - [anon_sym_AMP_AMP] = ACTIONS(250), - [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_TILDE] = ACTIONS(960), - [anon_sym_EQ_EQ] = ACTIONS(960), - [anon_sym_LT] = ACTIONS(960), - [anon_sym_GT] = ACTIONS(960), - [anon_sym_GT_GT] = ACTIONS(250), - [anon_sym_AMP_GT] = ACTIONS(960), - [anon_sym_AMP_GT_GT] = ACTIONS(250), - [anon_sym_LT_AMP] = ACTIONS(250), - [anon_sym_GT_AMP] = ACTIONS(250), - [anon_sym_LT_LT] = ACTIONS(960), - [anon_sym_LT_LT_DASH] = ACTIONS(250), - [anon_sym_LT_LT_LT] = ACTIONS(250), - [sym__special_characters] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(250), - [anon_sym_DOLLAR] = ACTIONS(960), - [sym_raw_string] = ACTIONS(250), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(250), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(250), - [anon_sym_BQUOTE] = ACTIONS(250), - [anon_sym_LT_LPAREN] = ACTIONS(250), - [anon_sym_GT_LPAREN] = ACTIONS(250), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(252), + [409] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [167] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(976), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), + [410] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(1766), + [sym_comment] = ACTIONS(54), }, - [168] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [sym_concatenation] = STATE(541), - [sym_string] = STATE(539), - [sym_simple_expansion] = STATE(539), - [sym_string_expansion] = STATE(539), - [sym_expansion] = STATE(539), - [sym_command_substitution] = STATE(539), - [sym_process_substitution] = STATE(539), - [aux_sym_while_statement_repeat1] = STATE(542), - [aux_sym_command_repeat2] = STATE(543), - [sym_file_descriptor] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_RPAREN] = ACTIONS(986), - [anon_sym_PIPE_AMP] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(986), - [anon_sym_PIPE_PIPE] = ACTIONS(986), - [anon_sym_EQ_TILDE] = ACTIONS(988), - [anon_sym_EQ_EQ] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_GT_GT] = ACTIONS(992), - [anon_sym_AMP_GT] = ACTIONS(990), - [anon_sym_AMP_GT_GT] = ACTIONS(992), - [anon_sym_LT_AMP] = ACTIONS(992), - [anon_sym_GT_AMP] = ACTIONS(992), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(998), - [sym__special_characters] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(1002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1004), + [411] = { + [sym_concatenation] = STATE(809), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(809), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1774), + [anon_sym_COLON] = ACTIONS(1770), + [anon_sym_COLON_QMARK] = ACTIONS(1770), + [anon_sym_COLON_DASH] = ACTIONS(1770), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [169] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(976), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [412] = { + [sym_concatenation] = STATE(812), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(812), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_EQ] = ACTIONS(1778), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1782), + [anon_sym_COLON] = ACTIONS(1778), + [anon_sym_COLON_QMARK] = ACTIONS(1778), + [anon_sym_COLON_DASH] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [170] = { - [sym__assignment] = STATE(474), - [anon_sym_EQ] = ACTIONS(884), - [anon_sym_PLUS_EQ] = ACTIONS(884), - [sym_comment] = ACTIONS(56), + [413] = { + [sym_concatenation] = STATE(814), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(814), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_EQ] = ACTIONS(1784), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1786), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1788), + [anon_sym_COLON] = ACTIONS(1784), + [anon_sym_COLON_QMARK] = ACTIONS(1784), + [anon_sym_COLON_DASH] = ACTIONS(1784), + [anon_sym_PERCENT] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [171] = { - [sym_file_descriptor] = ACTIONS(250), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(250), - [anon_sym_PIPE_AMP] = ACTIONS(250), - [anon_sym_AMP_AMP] = ACTIONS(250), - [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_TILDE] = ACTIONS(960), - [anon_sym_EQ_EQ] = ACTIONS(960), - [anon_sym_LT] = ACTIONS(960), - [anon_sym_GT] = ACTIONS(960), - [anon_sym_GT_GT] = ACTIONS(250), - [anon_sym_AMP_GT] = ACTIONS(960), - [anon_sym_AMP_GT_GT] = ACTIONS(250), - [anon_sym_LT_AMP] = ACTIONS(250), - [anon_sym_GT_AMP] = ACTIONS(250), - [anon_sym_LT_LT] = ACTIONS(960), - [anon_sym_LT_LT_DASH] = ACTIONS(250), - [anon_sym_LT_LT_LT] = ACTIONS(250), - [sym__special_characters] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(250), - [anon_sym_DOLLAR] = ACTIONS(960), - [sym_raw_string] = ACTIONS(250), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(250), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(250), - [anon_sym_BQUOTE] = ACTIONS(250), - [anon_sym_LT_LPAREN] = ACTIONS(250), - [anon_sym_GT_LPAREN] = ACTIONS(250), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(252), + [414] = { + [sym_file_descriptor] = ACTIONS(1790), + [sym__concat] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_SEMI_SEMI] = ACTIONS(1792), + [anon_sym_PIPE_AMP] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_EQ_TILDE] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1792), + [anon_sym_GT] = ACTIONS(1792), + [anon_sym_GT_GT] = ACTIONS(1792), + [anon_sym_AMP_GT] = ACTIONS(1792), + [anon_sym_AMP_GT_GT] = ACTIONS(1792), + [anon_sym_LT_AMP] = ACTIONS(1792), + [anon_sym_GT_AMP] = ACTIONS(1792), + [anon_sym_LT_LT] = ACTIONS(1792), + [anon_sym_LT_LT_DASH] = ACTIONS(1792), + [anon_sym_LT_LT_LT] = ACTIONS(1792), + [sym__special_characters] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1792), + [anon_sym_DOLLAR] = ACTIONS(1792), + [sym_raw_string] = ACTIONS(1792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1792), + [anon_sym_LT_LPAREN] = ACTIONS(1792), + [anon_sym_GT_LPAREN] = ACTIONS(1792), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1792), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_LF] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1792), }, - [172] = { - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(30), - [sym_subscript] = STATE(214), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(215), - [sym_file_descriptor] = ACTIONS(10), + [415] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(1794), + }, + [416] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [417] = { + [sym_file_descriptor] = ACTIONS(1798), + [sym__concat] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_RPAREN] = ACTIONS(1800), + [anon_sym_SEMI_SEMI] = ACTIONS(1800), + [anon_sym_PIPE_AMP] = ACTIONS(1800), + [anon_sym_AMP_AMP] = ACTIONS(1800), + [anon_sym_PIPE_PIPE] = ACTIONS(1800), + [anon_sym_EQ_TILDE] = ACTIONS(1800), + [anon_sym_EQ_EQ] = ACTIONS(1800), + [anon_sym_LT] = ACTIONS(1800), + [anon_sym_GT] = ACTIONS(1800), + [anon_sym_GT_GT] = ACTIONS(1800), + [anon_sym_AMP_GT] = ACTIONS(1800), + [anon_sym_AMP_GT_GT] = ACTIONS(1800), + [anon_sym_LT_AMP] = ACTIONS(1800), + [anon_sym_GT_AMP] = ACTIONS(1800), + [anon_sym_LT_LT] = ACTIONS(1800), + [anon_sym_LT_LT_DASH] = ACTIONS(1800), + [anon_sym_LT_LT_LT] = ACTIONS(1800), + [sym__special_characters] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1800), + [sym_raw_string] = ACTIONS(1800), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1800), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1800), + [anon_sym_BQUOTE] = ACTIONS(1800), + [anon_sym_LT_LPAREN] = ACTIONS(1800), + [anon_sym_GT_LPAREN] = ACTIONS(1800), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_LF] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1800), + }, + [418] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(1802), + }, + [419] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [420] = { + [sym_concatenation] = STATE(818), + [sym_string] = STATE(821), + [sym_array] = STATE(818), + [sym_simple_expansion] = STATE(821), + [sym_string_expansion] = STATE(821), + [sym_expansion] = STATE(821), + [sym_command_substitution] = STATE(821), + [sym_process_substitution] = STATE(821), + [sym__empty_value] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1806), + [sym__special_characters] = ACTIONS(1808), + [anon_sym_DQUOTE] = ACTIONS(196), + [anon_sym_DOLLAR] = ACTIONS(198), + [sym_raw_string] = ACTIONS(1810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(204), + [anon_sym_BQUOTE] = ACTIONS(206), + [anon_sym_LT_LPAREN] = ACTIONS(208), + [anon_sym_GT_LPAREN] = ACTIONS(208), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1810), + }, + [421] = { + [sym_file_descriptor] = ACTIONS(388), [sym_variable_name] = ACTIONS(388), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(390), + [anon_sym_RPAREN] = ACTIONS(388), + [anon_sym_PIPE_AMP] = ACTIONS(388), + [anon_sym_AMP_AMP] = ACTIONS(388), + [anon_sym_PIPE_PIPE] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(390), + [anon_sym_GT_GT] = ACTIONS(388), + [anon_sym_AMP_GT] = ACTIONS(390), + [anon_sym_AMP_GT_GT] = ACTIONS(388), + [anon_sym_LT_AMP] = ACTIONS(388), + [anon_sym_GT_AMP] = ACTIONS(388), + [sym__special_characters] = ACTIONS(388), + [anon_sym_DQUOTE] = ACTIONS(388), + [anon_sym_DOLLAR] = ACTIONS(390), + [sym_raw_string] = ACTIONS(388), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(388), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(388), + [anon_sym_BQUOTE] = ACTIONS(388), + [anon_sym_LT_LPAREN] = ACTIONS(388), + [anon_sym_GT_LPAREN] = ACTIONS(388), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(388), }, - [173] = { - [sym__assignment] = STATE(474), - [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(1010), - [anon_sym_PLUS_EQ] = ACTIONS(1010), - [sym_comment] = ACTIONS(56), + [422] = { + [anon_sym_in] = ACTIONS(1812), + [anon_sym_SEMI_SEMI] = ACTIONS(1814), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1814), + [anon_sym_LF] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1814), }, - [174] = { - [sym__terminated_statement] = STATE(546), - [sym_for_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_function_definition] = STATE(40), - [sym_subshell] = STATE(40), - [sym_pipeline] = STATE(40), - [sym_list] = STATE(40), - [sym_command] = STATE(40), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(40), - [sym_variable_assignment] = STATE(41), - [sym_declaration_command] = STATE(40), - [sym_unset_command] = STATE(40), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [423] = { + [sym_do_group] = STATE(825), + [anon_sym_do] = ACTIONS(1818), + [sym_comment] = ACTIONS(54), }, - [175] = { - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1012), + [424] = { + [anon_sym_then] = ACTIONS(1820), + [sym_comment] = ACTIONS(54), }, - [176] = { - [sym_concatenation] = STATE(84), - [sym_string] = STATE(79), - [sym_simple_expansion] = STATE(79), - [sym_string_expansion] = STATE(79), - [sym_expansion] = STATE(79), - [sym_command_substitution] = STATE(79), - [sym_process_substitution] = STATE(79), - [aux_sym_command_repeat2] = STATE(548), - [anon_sym_EQ_TILDE] = ACTIONS(122), - [anon_sym_EQ_EQ] = ACTIONS(122), - [sym__special_characters] = ACTIONS(124), - [anon_sym_DQUOTE] = ACTIONS(126), - [anon_sym_DOLLAR] = ACTIONS(128), - [sym_raw_string] = ACTIONS(130), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), - [anon_sym_BQUOTE] = ACTIONS(136), - [anon_sym_LT_LPAREN] = ACTIONS(138), - [anon_sym_GT_LPAREN] = ACTIONS(138), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(140), + [425] = { + [aux_sym_concatenation_repeat1] = STATE(224), + [sym__concat] = ACTIONS(406), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_SEMI_SEMI] = ACTIONS(1824), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_LF] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1824), }, - [177] = { - [sym_concatenation] = STATE(95), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_string_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat2] = STATE(549), - [anon_sym_EQ_TILDE] = ACTIONS(142), - [anon_sym_EQ_EQ] = ACTIONS(142), - [sym__special_characters] = ACTIONS(144), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(148), - [sym_raw_string] = ACTIONS(150), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(156), - [anon_sym_LT_LPAREN] = ACTIONS(158), - [anon_sym_GT_LPAREN] = ACTIONS(158), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(160), + [426] = { + [aux_sym_concatenation_repeat1] = STATE(224), + [sym__concat] = ACTIONS(406), + [anon_sym_in] = ACTIONS(1828), + [anon_sym_SEMI_SEMI] = ACTIONS(1830), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1830), }, - [178] = { - [sym_variable_assignment] = STATE(497), - [sym_subscript] = STATE(559), - [sym_concatenation] = STATE(497), - [sym_string] = STATE(554), - [sym_simple_expansion] = STATE(554), - [sym_string_expansion] = STATE(554), - [sym_expansion] = STATE(554), - [sym_command_substitution] = STATE(554), - [sym_process_substitution] = STATE(554), - [aux_sym_declaration_command_repeat1] = STATE(560), - [sym_variable_name] = ACTIONS(1014), - [anon_sym_PIPE] = ACTIONS(898), - [anon_sym_PIPE_AMP] = ACTIONS(900), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE_PIPE] = ACTIONS(900), - [sym__special_characters] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(1020), - [sym_raw_string] = ACTIONS(1022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1026), - [anon_sym_BQUOTE] = ACTIONS(900), - [anon_sym_LT_LPAREN] = ACTIONS(1028), - [anon_sym_GT_LPAREN] = ACTIONS(1028), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(918), - [sym_word] = ACTIONS(1030), + [427] = { + [anon_sym_in] = ACTIONS(1828), + [anon_sym_SEMI_SEMI] = ACTIONS(1830), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1830), }, - [179] = { - [sym_concatenation] = STATE(509), - [sym_string] = STATE(564), - [sym_simple_expansion] = STATE(564), - [sym_string_expansion] = STATE(564), - [sym_expansion] = STATE(564), - [sym_command_substitution] = STATE(564), - [sym_process_substitution] = STATE(564), - [aux_sym_unset_command_repeat1] = STATE(569), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_PIPE_AMP] = ACTIONS(924), - [anon_sym_AMP_AMP] = ACTIONS(924), - [anon_sym_PIPE_PIPE] = ACTIONS(924), - [sym__special_characters] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1036), - [sym_raw_string] = ACTIONS(1038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1042), - [anon_sym_BQUOTE] = ACTIONS(924), - [anon_sym_LT_LPAREN] = ACTIONS(1044), - [anon_sym_GT_LPAREN] = ACTIONS(1044), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(942), - [sym_word] = ACTIONS(1046), + [428] = { + [sym_compound_statement] = STATE(833), + [anon_sym_LPAREN] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1836), + [sym_comment] = ACTIONS(54), }, - [180] = { - [aux_sym_concatenation_repeat1] = STATE(571), - [sym_file_descriptor] = ACTIONS(224), - [sym__concat] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_PIPE_AMP] = ACTIONS(224), - [anon_sym_AMP_AMP] = ACTIONS(224), - [anon_sym_PIPE_PIPE] = ACTIONS(224), - [anon_sym_EQ_TILDE] = ACTIONS(948), - [anon_sym_EQ_EQ] = ACTIONS(948), - [anon_sym_LT] = ACTIONS(948), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_GT_GT] = ACTIONS(224), - [anon_sym_AMP_GT] = ACTIONS(948), - [anon_sym_AMP_GT_GT] = ACTIONS(224), - [anon_sym_LT_AMP] = ACTIONS(224), - [anon_sym_GT_AMP] = ACTIONS(224), - [anon_sym_LT_LT] = ACTIONS(948), - [anon_sym_LT_LT_DASH] = ACTIONS(224), - [anon_sym_LT_LT_LT] = ACTIONS(224), - [sym__special_characters] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(948), - [sym_raw_string] = ACTIONS(224), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), + [429] = { + [anon_sym_PIPE] = ACTIONS(460), + [anon_sym_RPAREN] = ACTIONS(1838), + [anon_sym_SEMI_SEMI] = ACTIONS(1840), + [anon_sym_PIPE_AMP] = ACTIONS(460), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1840), + [anon_sym_LF] = ACTIONS(1842), + [anon_sym_AMP] = ACTIONS(1840), + }, + [430] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(460), + [anon_sym_RPAREN] = ACTIONS(1838), + [anon_sym_SEMI_SEMI] = ACTIONS(1840), + [anon_sym_PIPE_AMP] = ACTIONS(460), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(1840), + [anon_sym_LF] = ACTIONS(1842), + [anon_sym_AMP] = ACTIONS(1840), + }, + [431] = { + [sym__terminated_statement] = STATE(275), + [sym_for_statement] = STATE(836), + [sym_while_statement] = STATE(836), + [sym_if_statement] = STATE(836), + [sym_case_statement] = STATE(836), + [sym_function_definition] = STATE(836), + [sym_subshell] = STATE(836), + [sym_pipeline] = STATE(836), + [sym_list] = STATE(836), + [sym_command] = STATE(836), + [sym_command_name] = STATE(62), + [sym_bracket_command] = STATE(836), + [sym_variable_assignment] = STATE(837), + [sym_declaration_command] = STATE(836), + [sym_unset_command] = STATE(836), + [sym_subscript] = STATE(64), + [sym_file_redirect] = STATE(66), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(59), + [sym_simple_expansion] = STATE(59), + [sym_string_expansion] = STATE(59), + [sym_expansion] = STATE(59), + [sym_command_substitution] = STATE(59), + [sym_process_substitution] = STATE(59), + [aux_sym_program_repeat1] = STATE(275), + [aux_sym_command_repeat1] = STATE(66), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(86), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(88), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(90), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(92), + [anon_sym_LBRACK_LBRACK] = ACTIONS(94), + [anon_sym_declare] = ACTIONS(96), + [anon_sym_typeset] = ACTIONS(96), + [anon_sym_export] = ACTIONS(96), + [anon_sym_readonly] = ACTIONS(96), + [anon_sym_local] = ACTIONS(96), + [anon_sym_unset] = ACTIONS(98), + [anon_sym_unsetenv] = ACTIONS(98), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(100), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(104), + }, + [432] = { + [sym_concatenation] = STATE(76), + [sym_string] = STATE(71), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [sym_expansion] = STATE(71), + [sym_command_substitution] = STATE(71), + [sym_process_substitution] = STATE(71), + [aux_sym_command_repeat2] = STATE(299), + [anon_sym_EQ_TILDE] = ACTIONS(106), + [anon_sym_EQ_EQ] = ACTIONS(106), + [anon_sym_RBRACK] = ACTIONS(1844), + [sym__special_characters] = ACTIONS(532), + [anon_sym_DQUOTE] = ACTIONS(110), + [anon_sym_DOLLAR] = ACTIONS(112), + [sym_raw_string] = ACTIONS(114), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(118), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_LT_LPAREN] = ACTIONS(122), + [anon_sym_GT_LPAREN] = ACTIONS(122), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(124), + }, + [433] = { + [sym_concatenation] = STATE(87), + [sym_string] = STATE(82), + [sym_simple_expansion] = STATE(82), + [sym_string_expansion] = STATE(82), + [sym_expansion] = STATE(82), + [sym_command_substitution] = STATE(82), + [sym_process_substitution] = STATE(82), + [aux_sym_command_repeat2] = STATE(321), + [anon_sym_EQ_TILDE] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(126), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1844), + [sym__special_characters] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(144), + }, + [434] = { + [sym__assignment] = STATE(840), + [anon_sym_LBRACK] = ACTIONS(62), + [anon_sym_EQ] = ACTIONS(1846), + [anon_sym_PLUS_EQ] = ACTIONS(1846), + [sym_comment] = ACTIONS(54), + }, + [435] = { + [aux_sym_concatenation_repeat1] = STATE(842), + [sym__concat] = ACTIONS(1848), + [sym_variable_name] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_RPAREN] = ACTIONS(578), + [anon_sym_PIPE_AMP] = ACTIONS(578), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [sym__special_characters] = ACTIONS(578), + [anon_sym_DQUOTE] = ACTIONS(578), + [anon_sym_DOLLAR] = ACTIONS(580), + [sym_raw_string] = ACTIONS(578), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(578), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(578), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_LT_LPAREN] = ACTIONS(578), + [anon_sym_GT_LPAREN] = ACTIONS(578), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(580), + [sym_word] = ACTIONS(580), + }, + [436] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(844), + [anon_sym_DQUOTE] = ACTIONS(1850), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), - [anon_sym_BQUOTE] = ACTIONS(224), - [anon_sym_LT_LPAREN] = ACTIONS(224), - [anon_sym_GT_LPAREN] = ACTIONS(224), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(228), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), }, - [181] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(573), - [anon_sym_DQUOTE] = ACTIONS(1050), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), + [437] = { + [sym_string] = STATE(846), + [anon_sym_DQUOTE] = ACTIONS(802), + [anon_sym_DOLLAR] = ACTIONS(1852), + [sym_raw_string] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1856), + [anon_sym_STAR] = ACTIONS(1852), + [anon_sym_AT] = ACTIONS(1852), + [anon_sym_QMARK] = ACTIONS(1852), + [anon_sym_0] = ACTIONS(1858), + [anon_sym__] = ACTIONS(1858), }, - [182] = { - [sym_string] = STATE(575), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(1052), - [sym_raw_string] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1052), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1052), - [anon_sym_AT] = ACTIONS(1052), - [anon_sym_QMARK] = ACTIONS(1052), - [anon_sym_0] = ACTIONS(1058), - [anon_sym__] = ACTIONS(1058), + [438] = { + [aux_sym_concatenation_repeat1] = STATE(842), + [sym__concat] = ACTIONS(1848), + [sym_variable_name] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_RPAREN] = ACTIONS(594), + [anon_sym_PIPE_AMP] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [sym__special_characters] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(594), + [anon_sym_DOLLAR] = ACTIONS(596), + [sym_raw_string] = ACTIONS(594), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(594), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(594), + [anon_sym_BQUOTE] = ACTIONS(594), + [anon_sym_LT_LPAREN] = ACTIONS(594), + [anon_sym_GT_LPAREN] = ACTIONS(594), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(596), + [sym_word] = ACTIONS(596), }, - [183] = { - [aux_sym_concatenation_repeat1] = STATE(571), - [sym_file_descriptor] = ACTIONS(250), - [sym__concat] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_PIPE_AMP] = ACTIONS(250), - [anon_sym_AMP_AMP] = ACTIONS(250), - [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_TILDE] = ACTIONS(960), - [anon_sym_EQ_EQ] = ACTIONS(960), - [anon_sym_LT] = ACTIONS(960), - [anon_sym_GT] = ACTIONS(960), - [anon_sym_GT_GT] = ACTIONS(250), - [anon_sym_AMP_GT] = ACTIONS(960), - [anon_sym_AMP_GT_GT] = ACTIONS(250), - [anon_sym_LT_AMP] = ACTIONS(250), - [anon_sym_GT_AMP] = ACTIONS(250), - [anon_sym_LT_LT] = ACTIONS(960), - [anon_sym_LT_LT_DASH] = ACTIONS(250), - [anon_sym_LT_LT_LT] = ACTIONS(250), - [sym__special_characters] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(250), - [anon_sym_DOLLAR] = ACTIONS(960), - [sym_raw_string] = ACTIONS(250), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(250), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(250), - [anon_sym_BQUOTE] = ACTIONS(250), - [anon_sym_LT_LPAREN] = ACTIONS(250), - [anon_sym_GT_LPAREN] = ACTIONS(250), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(252), + [439] = { + [sym_subscript] = STATE(852), + [sym_variable_name] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(1864), + [anon_sym_DASH] = ACTIONS(1862), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1862), + [anon_sym_QMARK] = ACTIONS(1862), + [anon_sym_0] = ACTIONS(1868), + [anon_sym__] = ACTIONS(1868), }, - [184] = { - [sym_subscript] = STATE(581), - [sym_variable_name] = ACTIONS(1060), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_POUND] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1062), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1066), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AT] = ACTIONS(1062), - [anon_sym_QMARK] = ACTIONS(1062), - [anon_sym_0] = ACTIONS(1068), - [anon_sym__] = ACTIONS(1068), + [440] = { + [sym_for_statement] = STATE(853), + [sym_while_statement] = STATE(853), + [sym_if_statement] = STATE(853), + [sym_case_statement] = STATE(853), + [sym_function_definition] = STATE(853), + [sym_subshell] = STATE(853), + [sym_pipeline] = STATE(853), + [sym_list] = STATE(853), + [sym_command] = STATE(853), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(853), + [sym_variable_assignment] = STATE(854), + [sym_declaration_command] = STATE(853), + [sym_unset_command] = STATE(853), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), }, - [185] = { - [sym_for_statement] = STATE(582), - [sym_while_statement] = STATE(582), - [sym_if_statement] = STATE(582), - [sym_case_statement] = STATE(582), - [sym_function_definition] = STATE(582), - [sym_subshell] = STATE(582), - [sym_pipeline] = STATE(582), - [sym_list] = STATE(582), - [sym_command] = STATE(582), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(582), - [sym_variable_assignment] = STATE(583), - [sym_declaration_command] = STATE(582), - [sym_unset_command] = STATE(582), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [441] = { + [sym_for_statement] = STATE(855), + [sym_while_statement] = STATE(855), + [sym_if_statement] = STATE(855), + [sym_case_statement] = STATE(855), + [sym_function_definition] = STATE(855), + [sym_subshell] = STATE(855), + [sym_pipeline] = STATE(855), + [sym_list] = STATE(855), + [sym_command] = STATE(855), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(855), + [sym_variable_assignment] = STATE(856), + [sym_declaration_command] = STATE(855), + [sym_unset_command] = STATE(855), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), }, - [186] = { - [sym_for_statement] = STATE(584), - [sym_while_statement] = STATE(584), - [sym_if_statement] = STATE(584), - [sym_case_statement] = STATE(584), - [sym_function_definition] = STATE(584), - [sym_subshell] = STATE(584), - [sym_pipeline] = STATE(584), - [sym_list] = STATE(584), - [sym_command] = STATE(584), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(584), - [sym_variable_assignment] = STATE(585), - [sym_declaration_command] = STATE(584), - [sym_unset_command] = STATE(584), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), + [442] = { + [sym_for_statement] = STATE(857), + [sym_while_statement] = STATE(857), + [sym_if_statement] = STATE(857), + [sym_case_statement] = STATE(857), + [sym_function_definition] = STATE(857), + [sym_subshell] = STATE(857), + [sym_pipeline] = STATE(857), + [sym_list] = STATE(857), + [sym_command] = STATE(857), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(857), + [sym_variable_assignment] = STATE(858), + [sym_declaration_command] = STATE(857), + [sym_unset_command] = STATE(857), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), }, - [187] = { - [sym_for_statement] = STATE(586), - [sym_while_statement] = STATE(586), - [sym_if_statement] = STATE(586), - [sym_case_statement] = STATE(586), - [sym_function_definition] = STATE(586), - [sym_subshell] = STATE(586), - [sym_pipeline] = STATE(586), - [sym_list] = STATE(586), - [sym_command] = STATE(586), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(586), - [sym_variable_assignment] = STATE(587), - [sym_declaration_command] = STATE(586), - [sym_unset_command] = STATE(586), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [188] = { - [aux_sym_concatenation_repeat1] = STATE(571), - [sym_file_descriptor] = ACTIONS(250), - [sym__concat] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(250), - [anon_sym_AMP_AMP] = ACTIONS(250), - [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_TILDE] = ACTIONS(960), - [anon_sym_EQ_EQ] = ACTIONS(960), - [anon_sym_LT] = ACTIONS(960), - [anon_sym_GT] = ACTIONS(960), - [anon_sym_GT_GT] = ACTIONS(250), - [anon_sym_AMP_GT] = ACTIONS(960), - [anon_sym_AMP_GT_GT] = ACTIONS(250), - [anon_sym_LT_AMP] = ACTIONS(250), - [anon_sym_GT_AMP] = ACTIONS(250), - [anon_sym_LT_LT] = ACTIONS(960), - [anon_sym_LT_LT_DASH] = ACTIONS(250), - [anon_sym_LT_LT_LT] = ACTIONS(250), - [sym__special_characters] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(250), - [anon_sym_DOLLAR] = ACTIONS(960), - [sym_raw_string] = ACTIONS(250), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(250), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(250), - [anon_sym_BQUOTE] = ACTIONS(250), - [anon_sym_LT_LPAREN] = ACTIONS(250), - [anon_sym_GT_LPAREN] = ACTIONS(250), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(252), - }, - [189] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(976), - [sym_comment] = ACTIONS(56), - }, - [190] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [sym_concatenation] = STATE(541), - [sym_string] = STATE(596), - [sym_simple_expansion] = STATE(596), - [sym_string_expansion] = STATE(596), - [sym_expansion] = STATE(596), - [sym_command_substitution] = STATE(596), - [sym_process_substitution] = STATE(596), - [aux_sym_while_statement_repeat1] = STATE(597), - [aux_sym_command_repeat2] = STATE(598), - [sym_file_descriptor] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_PIPE_AMP] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(986), - [anon_sym_PIPE_PIPE] = ACTIONS(986), - [anon_sym_EQ_TILDE] = ACTIONS(1080), - [anon_sym_EQ_EQ] = ACTIONS(1080), - [anon_sym_LT] = ACTIONS(1082), - [anon_sym_GT] = ACTIONS(1082), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1082), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [sym__special_characters] = ACTIONS(1088), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(1090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(986), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1092), - }, - [191] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(976), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [192] = { - [sym__assignment] = STATE(474), - [anon_sym_EQ] = ACTIONS(1010), - [anon_sym_PLUS_EQ] = ACTIONS(1010), - [sym_comment] = ACTIONS(56), - }, - [193] = { - [sym_command_name] = STATE(599), - [sym_variable_assignment] = STATE(30), - [sym_subscript] = STATE(214), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(215), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(388), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1096), - }, - [194] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1098), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [195] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1098), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [196] = { - [anon_sym_RPAREN] = ACTIONS(1100), - [sym_comment] = ACTIONS(56), - }, - [197] = { - [sym_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_command] = STATE(602), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(602), - [sym_variable_assignment] = STATE(603), - [sym_declaration_command] = STATE(602), - [sym_unset_command] = STATE(602), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [198] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [ts_builtin_sym_end] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_SEMI_SEMI] = ACTIONS(1102), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1104), - [sym_raw_string] = ACTIONS(1102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), - [anon_sym_BQUOTE] = ACTIONS(1102), - [anon_sym_LT_LPAREN] = ACTIONS(1102), - [anon_sym_GT_LPAREN] = ACTIONS(1102), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1106), - }, - [199] = { - [sym_for_statement] = STATE(604), - [sym_while_statement] = STATE(604), - [sym_if_statement] = STATE(604), - [sym_case_statement] = STATE(604), - [sym_function_definition] = STATE(604), - [sym_subshell] = STATE(604), - [sym_pipeline] = STATE(604), - [sym_list] = STATE(604), - [sym_command] = STATE(604), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(604), - [sym_variable_assignment] = STATE(605), - [sym_declaration_command] = STATE(604), - [sym_unset_command] = STATE(604), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [200] = { - [anon_sym_LT] = ACTIONS(1108), - [anon_sym_GT] = ACTIONS(1108), - [anon_sym_GT_GT] = ACTIONS(1110), - [anon_sym_AMP_GT] = ACTIONS(1108), - [anon_sym_AMP_GT_GT] = ACTIONS(1110), - [anon_sym_LT_AMP] = ACTIONS(1110), - [anon_sym_GT_AMP] = ACTIONS(1110), - [sym_comment] = ACTIONS(56), - }, - [201] = { - [sym_concatenation] = STATE(609), - [sym_string] = STATE(608), - [sym_simple_expansion] = STATE(608), - [sym_string_expansion] = STATE(608), - [sym_expansion] = STATE(608), - [sym_command_substitution] = STATE(608), - [sym_process_substitution] = STATE(608), - [sym__special_characters] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(366), - [anon_sym_DOLLAR] = ACTIONS(368), - [sym_raw_string] = ACTIONS(1114), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_LT_LPAREN] = ACTIONS(378), - [anon_sym_GT_LPAREN] = ACTIONS(378), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1114), - [sym_regex] = ACTIONS(1116), - }, - [202] = { - [sym_concatenation] = STATE(618), - [sym_string] = STATE(613), - [sym_simple_expansion] = STATE(613), - [sym_string_expansion] = STATE(613), - [sym_expansion] = STATE(613), - [sym_command_substitution] = STATE(613), - [sym_process_substitution] = STATE(613), - [sym__special_characters] = ACTIONS(1118), - [anon_sym_DQUOTE] = ACTIONS(1120), - [anon_sym_DOLLAR] = ACTIONS(1122), - [sym_raw_string] = ACTIONS(1124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1130), - [anon_sym_LT_LPAREN] = ACTIONS(1132), - [anon_sym_GT_LPAREN] = ACTIONS(1132), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1134), - }, - [203] = { - [sym_heredoc] = STATE(621), - [sym__simple_heredoc] = ACTIONS(1136), - [sym__heredoc_beginning] = ACTIONS(1138), - [sym_comment] = ACTIONS(56), - }, - [204] = { - [sym_concatenation] = STATE(624), - [sym_string] = STATE(623), - [sym_simple_expansion] = STATE(623), - [sym_string_expansion] = STATE(623), - [sym_expansion] = STATE(623), - [sym_command_substitution] = STATE(623), - [sym_process_substitution] = STATE(623), - [sym__special_characters] = ACTIONS(1140), - [anon_sym_DQUOTE] = ACTIONS(1120), - [anon_sym_DOLLAR] = ACTIONS(1122), - [sym_raw_string] = ACTIONS(1142), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1130), - [anon_sym_LT_LPAREN] = ACTIONS(1132), - [anon_sym_GT_LPAREN] = ACTIONS(1132), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1144), - }, - [205] = { - [aux_sym_concatenation_repeat1] = STATE(131), - [sym_file_descriptor] = ACTIONS(608), - [sym__concat] = ACTIONS(226), + [443] = { + [sym_variable_name] = ACTIONS(608), [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_SEMI_SEMI] = ACTIONS(610), - [anon_sym_PIPE_AMP] = ACTIONS(610), - [anon_sym_AMP_AMP] = ACTIONS(610), - [anon_sym_PIPE_PIPE] = ACTIONS(610), - [anon_sym_EQ_TILDE] = ACTIONS(610), - [anon_sym_EQ_EQ] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(610), - [anon_sym_GT] = ACTIONS(610), - [anon_sym_GT_GT] = ACTIONS(610), - [anon_sym_AMP_GT] = ACTIONS(610), - [anon_sym_AMP_GT_GT] = ACTIONS(610), - [anon_sym_LT_AMP] = ACTIONS(610), - [anon_sym_GT_AMP] = ACTIONS(610), - [anon_sym_LT_LT] = ACTIONS(610), - [anon_sym_LT_LT_DASH] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(610), - [sym__special_characters] = ACTIONS(610), - [anon_sym_DQUOTE] = ACTIONS(610), + [anon_sym_RPAREN] = ACTIONS(608), + [anon_sym_PIPE_AMP] = ACTIONS(608), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [sym__special_characters] = ACTIONS(608), + [anon_sym_DQUOTE] = ACTIONS(608), [anon_sym_DOLLAR] = ACTIONS(610), - [sym_raw_string] = ACTIONS(610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(610), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(610), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_LT_LPAREN] = ACTIONS(610), - [anon_sym_GT_LPAREN] = ACTIONS(610), - [sym_comment] = ACTIONS(182), + [sym_raw_string] = ACTIONS(608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(608), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(608), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_LT_LPAREN] = ACTIONS(608), + [anon_sym_GT_LPAREN] = ACTIONS(608), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(610), [sym_word] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(610), - [anon_sym_LF] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(610), }, - [206] = { - [aux_sym_concatenation_repeat1] = STATE(131), - [sym_file_descriptor] = ACTIONS(624), - [sym__concat] = ACTIONS(226), - [anon_sym_PIPE] = ACTIONS(626), - [anon_sym_SEMI_SEMI] = ACTIONS(626), - [anon_sym_PIPE_AMP] = ACTIONS(626), - [anon_sym_AMP_AMP] = ACTIONS(626), - [anon_sym_PIPE_PIPE] = ACTIONS(626), - [anon_sym_EQ_TILDE] = ACTIONS(626), - [anon_sym_EQ_EQ] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_GT] = ACTIONS(626), - [anon_sym_GT_GT] = ACTIONS(626), - [anon_sym_AMP_GT] = ACTIONS(626), - [anon_sym_AMP_GT_GT] = ACTIONS(626), - [anon_sym_LT_AMP] = ACTIONS(626), - [anon_sym_GT_AMP] = ACTIONS(626), - [anon_sym_LT_LT] = ACTIONS(626), - [anon_sym_LT_LT_DASH] = ACTIONS(626), - [anon_sym_LT_LT_LT] = ACTIONS(626), - [sym__special_characters] = ACTIONS(626), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_DOLLAR] = ACTIONS(626), - [sym_raw_string] = ACTIONS(626), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(626), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(626), - [anon_sym_BQUOTE] = ACTIONS(626), - [anon_sym_LT_LPAREN] = ACTIONS(626), - [anon_sym_GT_LPAREN] = ACTIONS(626), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(626), - [anon_sym_LF] = ACTIONS(626), - [anon_sym_AMP] = ACTIONS(626), + [444] = { + [sym__assignment] = STATE(840), + [anon_sym_EQ] = ACTIONS(1846), + [anon_sym_PLUS_EQ] = ACTIONS(1846), + [sym_comment] = ACTIONS(54), }, - [207] = { - [sym_file_descriptor] = ACTIONS(1146), - [anon_sym_esac] = ACTIONS(1148), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_RPAREN] = ACTIONS(1148), - [anon_sym_SEMI_SEMI] = ACTIONS(1148), - [anon_sym_PIPE_AMP] = ACTIONS(1148), - [anon_sym_AMP_AMP] = ACTIONS(1148), - [anon_sym_PIPE_PIPE] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_GT_GT] = ACTIONS(1148), - [anon_sym_AMP_GT] = ACTIONS(1148), - [anon_sym_AMP_GT_GT] = ACTIONS(1148), - [anon_sym_LT_AMP] = ACTIONS(1148), - [anon_sym_GT_AMP] = ACTIONS(1148), - [anon_sym_LT_LT] = ACTIONS(1148), - [anon_sym_LT_LT_DASH] = ACTIONS(1148), - [anon_sym_LT_LT_LT] = ACTIONS(1148), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym_LF] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), + [445] = { + [sym_variable_assignment] = STATE(859), + [sym_subscript] = STATE(444), + [sym_concatenation] = STATE(859), + [sym_string] = STATE(438), + [sym_simple_expansion] = STATE(438), + [sym_string_expansion] = STATE(438), + [sym_expansion] = STATE(438), + [sym_command_substitution] = STATE(438), + [sym_process_substitution] = STATE(438), + [aux_sym_declaration_command_repeat1] = STATE(859), + [sym_variable_name] = ACTIONS(798), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(614), + [anon_sym_PIPE_AMP] = ACTIONS(614), + [anon_sym_AMP_AMP] = ACTIONS(614), + [anon_sym_PIPE_PIPE] = ACTIONS(614), + [sym__special_characters] = ACTIONS(800), + [anon_sym_DQUOTE] = ACTIONS(802), + [anon_sym_DOLLAR] = ACTIONS(804), + [sym_raw_string] = ACTIONS(806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(810), + [anon_sym_BQUOTE] = ACTIONS(812), + [anon_sym_LT_LPAREN] = ACTIONS(814), + [anon_sym_GT_LPAREN] = ACTIONS(814), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(816), + [sym_word] = ACTIONS(818), }, - [208] = { - [sym_file_descriptor] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(626), - [anon_sym_RPAREN] = ACTIONS(626), - [anon_sym_SEMI_SEMI] = ACTIONS(626), - [anon_sym_PIPE_AMP] = ACTIONS(626), - [anon_sym_AMP_AMP] = ACTIONS(626), - [anon_sym_PIPE_PIPE] = ACTIONS(626), - [anon_sym_EQ_TILDE] = ACTIONS(626), - [anon_sym_EQ_EQ] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_GT] = ACTIONS(626), - [anon_sym_GT_GT] = ACTIONS(626), - [anon_sym_AMP_GT] = ACTIONS(626), - [anon_sym_AMP_GT_GT] = ACTIONS(626), - [anon_sym_LT_AMP] = ACTIONS(626), - [anon_sym_GT_AMP] = ACTIONS(626), - [anon_sym_LT_LT] = ACTIONS(626), - [anon_sym_LT_LT_DASH] = ACTIONS(626), - [anon_sym_LT_LT_LT] = ACTIONS(626), - [sym__special_characters] = ACTIONS(626), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_DOLLAR] = ACTIONS(626), - [sym_raw_string] = ACTIONS(626), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(626), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(626), - [anon_sym_BQUOTE] = ACTIONS(626), - [anon_sym_LT_LPAREN] = ACTIONS(626), - [anon_sym_GT_LPAREN] = ACTIONS(626), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(626), - [anon_sym_LF] = ACTIONS(626), - [anon_sym_AMP] = ACTIONS(626), + [446] = { + [aux_sym_concatenation_repeat1] = STATE(861), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(618), + [anon_sym_RPAREN] = ACTIONS(620), + [anon_sym_PIPE_AMP] = ACTIONS(620), + [anon_sym_AMP_AMP] = ACTIONS(620), + [anon_sym_PIPE_PIPE] = ACTIONS(620), + [sym__special_characters] = ACTIONS(620), + [anon_sym_DQUOTE] = ACTIONS(620), + [anon_sym_DOLLAR] = ACTIONS(618), + [sym_raw_string] = ACTIONS(620), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(620), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(620), + [anon_sym_BQUOTE] = ACTIONS(620), + [anon_sym_LT_LPAREN] = ACTIONS(620), + [anon_sym_GT_LPAREN] = ACTIONS(620), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(618), + [sym_word] = ACTIONS(618), }, - [209] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(625), - [sym_file_descriptor] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_SEMI_SEMI] = ACTIONS(1150), - [anon_sym_PIPE_AMP] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_LT] = ACTIONS(358), - [anon_sym_GT] = ACTIONS(358), - [anon_sym_GT_GT] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(358), - [anon_sym_AMP_GT_GT] = ACTIONS(358), - [anon_sym_LT_AMP] = ACTIONS(358), - [anon_sym_GT_AMP] = ACTIONS(358), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(362), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), + [447] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(863), + [anon_sym_DQUOTE] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), }, - [210] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [sym_concatenation] = STATE(208), - [sym_string] = STATE(206), - [sym_simple_expansion] = STATE(206), - [sym_string_expansion] = STATE(206), - [sym_expansion] = STATE(206), - [sym_command_substitution] = STATE(206), - [sym_process_substitution] = STATE(206), - [aux_sym_while_statement_repeat1] = STATE(626), - [aux_sym_command_repeat2] = STATE(627), - [sym_file_descriptor] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_SEMI_SEMI] = ACTIONS(1150), - [anon_sym_PIPE_AMP] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_EQ_TILDE] = ACTIONS(356), - [anon_sym_EQ_EQ] = ACTIONS(356), - [anon_sym_LT] = ACTIONS(358), - [anon_sym_GT] = ACTIONS(358), - [anon_sym_GT_GT] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(358), - [anon_sym_AMP_GT_GT] = ACTIONS(358), - [anon_sym_LT_AMP] = ACTIONS(358), - [anon_sym_GT_AMP] = ACTIONS(358), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(362), - [sym__special_characters] = ACTIONS(364), - [anon_sym_DQUOTE] = ACTIONS(366), - [anon_sym_DOLLAR] = ACTIONS(368), - [sym_raw_string] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_LT_LPAREN] = ACTIONS(378), - [anon_sym_GT_LPAREN] = ACTIONS(378), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), + [448] = { + [sym_string] = STATE(865), + [anon_sym_DQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(1874), + [sym_raw_string] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1874), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1878), + [anon_sym_STAR] = ACTIONS(1874), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_QMARK] = ACTIONS(1874), + [anon_sym_0] = ACTIONS(1880), + [anon_sym__] = ACTIONS(1880), }, - [211] = { - [sym__terminated_statement] = STATE(25), - [sym_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_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(26), - [sym_variable_assignment] = STATE(28), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(211), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1152), - [sym_variable_name] = ACTIONS(1155), - [ts_builtin_sym_end] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1166), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_function] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), - [anon_sym_declare] = ACTIONS(1184), - [anon_sym_typeset] = ACTIONS(1184), - [anon_sym_export] = ACTIONS(1184), - [anon_sym_readonly] = ACTIONS(1184), - [anon_sym_local] = ACTIONS(1184), - [anon_sym_unset] = ACTIONS(1187), - [anon_sym_unsetenv] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1193), - [anon_sym_AMP_GT] = ACTIONS(1190), - [anon_sym_AMP_GT_GT] = ACTIONS(1193), - [anon_sym_LT_AMP] = ACTIONS(1193), - [anon_sym_GT_AMP] = ACTIONS(1193), - [sym__special_characters] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1199), - [anon_sym_DOLLAR] = ACTIONS(1202), - [sym_raw_string] = ACTIONS(1205), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1211), - [anon_sym_BQUOTE] = ACTIONS(1214), - [anon_sym_LT_LPAREN] = ACTIONS(1217), - [anon_sym_GT_LPAREN] = ACTIONS(1217), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1220), + [449] = { + [aux_sym_concatenation_repeat1] = STATE(861), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(634), + [anon_sym_RPAREN] = ACTIONS(636), + [anon_sym_PIPE_AMP] = ACTIONS(636), + [anon_sym_AMP_AMP] = ACTIONS(636), + [anon_sym_PIPE_PIPE] = ACTIONS(636), + [sym__special_characters] = ACTIONS(636), + [anon_sym_DQUOTE] = ACTIONS(636), + [anon_sym_DOLLAR] = ACTIONS(634), + [sym_raw_string] = ACTIONS(636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(636), + [anon_sym_BQUOTE] = ACTIONS(636), + [anon_sym_LT_LPAREN] = ACTIONS(636), + [anon_sym_GT_LPAREN] = ACTIONS(636), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(634), + [sym_word] = ACTIONS(634), }, - [212] = { - [sym__assignment] = STATE(474), - [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(1223), - [anon_sym_PLUS_EQ] = ACTIONS(1223), - [sym_comment] = ACTIONS(56), + [450] = { + [sym_subscript] = STATE(871), + [sym_variable_name] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_POUND] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1884), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_AT] = ACTIONS(1884), + [anon_sym_QMARK] = ACTIONS(1884), + [anon_sym_0] = ACTIONS(1890), + [anon_sym__] = ACTIONS(1890), }, - [213] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [sym_concatenation] = STATE(208), - [sym_string] = STATE(206), - [sym_simple_expansion] = STATE(206), - [sym_string_expansion] = STATE(206), - [sym_expansion] = STATE(206), - [sym_command_substitution] = STATE(206), - [sym_process_substitution] = STATE(206), - [aux_sym_while_statement_repeat1] = STATE(626), - [aux_sym_command_repeat2] = STATE(629), - [sym_file_descriptor] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_SEMI_SEMI] = ACTIONS(1150), - [anon_sym_PIPE_AMP] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_EQ_TILDE] = ACTIONS(356), - [anon_sym_EQ_EQ] = ACTIONS(356), - [anon_sym_LT] = ACTIONS(358), - [anon_sym_GT] = ACTIONS(358), - [anon_sym_GT_GT] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(358), - [anon_sym_AMP_GT_GT] = ACTIONS(358), - [anon_sym_LT_AMP] = ACTIONS(358), - [anon_sym_GT_AMP] = ACTIONS(358), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(362), - [sym__special_characters] = ACTIONS(364), - [anon_sym_DQUOTE] = ACTIONS(366), - [anon_sym_DOLLAR] = ACTIONS(368), - [sym_raw_string] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_LT_LPAREN] = ACTIONS(378), - [anon_sym_GT_LPAREN] = ACTIONS(378), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), + [451] = { + [sym_for_statement] = STATE(872), + [sym_while_statement] = STATE(872), + [sym_if_statement] = STATE(872), + [sym_case_statement] = STATE(872), + [sym_function_definition] = STATE(872), + [sym_subshell] = STATE(872), + [sym_pipeline] = STATE(872), + [sym_list] = STATE(872), + [sym_command] = STATE(872), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(872), + [sym_variable_assignment] = STATE(873), + [sym_declaration_command] = STATE(872), + [sym_unset_command] = STATE(872), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), }, - [214] = { - [sym__assignment] = STATE(474), - [anon_sym_EQ] = ACTIONS(1223), - [anon_sym_PLUS_EQ] = ACTIONS(1223), - [sym_comment] = ACTIONS(56), + [452] = { + [sym_for_statement] = STATE(874), + [sym_while_statement] = STATE(874), + [sym_if_statement] = STATE(874), + [sym_case_statement] = STATE(874), + [sym_function_definition] = STATE(874), + [sym_subshell] = STATE(874), + [sym_pipeline] = STATE(874), + [sym_list] = STATE(874), + [sym_command] = STATE(874), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(874), + [sym_variable_assignment] = STATE(875), + [sym_declaration_command] = STATE(874), + [sym_unset_command] = STATE(874), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), }, - [215] = { - [sym_variable_assignment] = STATE(30), - [sym_subscript] = STATE(214), - [sym_file_redirect] = STATE(30), - [aux_sym_command_repeat1] = STATE(215), - [sym_file_descriptor] = ACTIONS(1225), - [sym_variable_name] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1231), - [anon_sym_GT_GT] = ACTIONS(1234), - [anon_sym_AMP_GT] = ACTIONS(1231), - [anon_sym_AMP_GT_GT] = ACTIONS(1234), - [anon_sym_LT_AMP] = ACTIONS(1234), - [anon_sym_GT_AMP] = ACTIONS(1234), - [sym__special_characters] = ACTIONS(1237), - [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_DOLLAR] = ACTIONS(1237), - [sym_raw_string] = ACTIONS(1239), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1239), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1239), - [anon_sym_BQUOTE] = ACTIONS(1239), - [anon_sym_LT_LPAREN] = ACTIONS(1239), - [anon_sym_GT_LPAREN] = ACTIONS(1239), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1237), + [453] = { + [sym_for_statement] = STATE(876), + [sym_while_statement] = STATE(876), + [sym_if_statement] = STATE(876), + [sym_case_statement] = STATE(876), + [sym_function_definition] = STATE(876), + [sym_subshell] = STATE(876), + [sym_pipeline] = STATE(876), + [sym_list] = STATE(876), + [sym_command] = STATE(876), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(876), + [sym_variable_assignment] = STATE(877), + [sym_declaration_command] = STATE(876), + [sym_unset_command] = STATE(876), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), }, - [216] = { - [aux_sym_concatenation_repeat1] = STATE(415), - [sym_file_descriptor] = ACTIONS(1241), - [sym__concat] = ACTIONS(758), - [sym_variable_name] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_AMP_GT] = ACTIONS(1243), - [anon_sym_AMP_GT_GT] = ACTIONS(1241), - [anon_sym_LT_AMP] = ACTIONS(1241), - [anon_sym_GT_AMP] = ACTIONS(1241), - [sym__special_characters] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1241), - [anon_sym_DOLLAR] = ACTIONS(1243), - [sym_raw_string] = ACTIONS(1241), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1241), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1241), - [anon_sym_BQUOTE] = ACTIONS(1241), - [anon_sym_LT_LPAREN] = ACTIONS(1241), - [anon_sym_GT_LPAREN] = ACTIONS(1241), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1243), + [454] = { + [anon_sym_PIPE] = ACTIONS(648), + [anon_sym_RPAREN] = ACTIONS(650), + [anon_sym_PIPE_AMP] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(650), + [anon_sym_PIPE_PIPE] = ACTIONS(650), + [sym__special_characters] = ACTIONS(650), + [anon_sym_DQUOTE] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(648), + [sym_raw_string] = ACTIONS(650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(650), + [anon_sym_BQUOTE] = ACTIONS(650), + [anon_sym_LT_LPAREN] = ACTIONS(650), + [anon_sym_GT_LPAREN] = ACTIONS(650), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(648), + [sym_word] = ACTIONS(648), }, - [217] = { - [aux_sym_concatenation_repeat1] = STATE(415), - [sym_file_descriptor] = ACTIONS(1245), - [sym__concat] = ACTIONS(758), - [sym_variable_name] = ACTIONS(1245), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_AMP_GT] = ACTIONS(1247), - [anon_sym_AMP_GT_GT] = ACTIONS(1245), - [anon_sym_LT_AMP] = ACTIONS(1245), - [anon_sym_GT_AMP] = ACTIONS(1245), - [sym__special_characters] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1245), - [anon_sym_DOLLAR] = ACTIONS(1247), - [sym_raw_string] = ACTIONS(1245), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1245), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1245), - [anon_sym_BQUOTE] = ACTIONS(1245), - [anon_sym_LT_LPAREN] = ACTIONS(1245), - [anon_sym_GT_LPAREN] = ACTIONS(1245), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1247), + [455] = { + [sym_concatenation] = STATE(878), + [sym_string] = STATE(449), + [sym_simple_expansion] = STATE(449), + [sym_string_expansion] = STATE(449), + [sym_expansion] = STATE(449), + [sym_command_substitution] = STATE(449), + [sym_process_substitution] = STATE(449), + [aux_sym_unset_command_repeat1] = STATE(878), + [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(654), + [anon_sym_PIPE_AMP] = ACTIONS(654), + [anon_sym_AMP_AMP] = ACTIONS(654), + [anon_sym_PIPE_PIPE] = ACTIONS(654), + [sym__special_characters] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(824), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(836), + [sym_word] = ACTIONS(838), }, - [218] = { - [sym_file_descriptor] = ACTIONS(1245), - [sym_variable_name] = ACTIONS(1245), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_AMP_GT] = ACTIONS(1247), - [anon_sym_AMP_GT_GT] = ACTIONS(1245), - [anon_sym_LT_AMP] = ACTIONS(1245), - [anon_sym_GT_AMP] = ACTIONS(1245), - [sym__special_characters] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1245), - [anon_sym_DOLLAR] = ACTIONS(1247), - [sym_raw_string] = ACTIONS(1245), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1245), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1245), - [anon_sym_BQUOTE] = ACTIONS(1245), - [anon_sym_LT_LPAREN] = ACTIONS(1245), - [anon_sym_GT_LPAREN] = ACTIONS(1245), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1247), + [456] = { + [sym_string] = STATE(879), + [sym_simple_expansion] = STATE(879), + [sym_string_expansion] = STATE(879), + [sym_expansion] = STATE(879), + [sym_command_substitution] = STATE(879), + [sym_process_substitution] = STATE(879), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1892), }, - [219] = { - [aux_sym_concatenation_repeat1] = STATE(632), - [sym__concat] = ACTIONS(1249), - [anon_sym_RBRACK] = ACTIONS(1251), - [sym_comment] = ACTIONS(56), + [457] = { + [aux_sym_concatenation_repeat1] = STATE(880), + [sym_file_descriptor] = ACTIONS(688), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(688), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_EQ_TILDE] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(688), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(688), + [anon_sym_LT_AMP] = ACTIONS(688), + [anon_sym_GT_AMP] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_LT_LT_DASH] = ACTIONS(688), + [anon_sym_LT_LT_LT] = ACTIONS(688), + [sym__special_characters] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(688), + [anon_sym_LT_LPAREN] = ACTIONS(688), + [anon_sym_GT_LPAREN] = ACTIONS(688), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(690), }, - [220] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(634), - [anon_sym_DQUOTE] = ACTIONS(1253), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), + [458] = { + [sym_file_descriptor] = ACTIONS(692), + [sym__concat] = ACTIONS(692), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(692), + [anon_sym_PIPE_AMP] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [anon_sym_EQ_TILDE] = ACTIONS(694), + [anon_sym_EQ_EQ] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_AMP_GT] = ACTIONS(694), + [anon_sym_AMP_GT_GT] = ACTIONS(692), + [anon_sym_LT_AMP] = ACTIONS(692), + [anon_sym_GT_AMP] = ACTIONS(692), + [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_LT_LT_DASH] = ACTIONS(692), + [anon_sym_LT_LT_LT] = ACTIONS(692), + [sym__special_characters] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(694), + [sym_raw_string] = ACTIONS(692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(692), + [anon_sym_BQUOTE] = ACTIONS(692), + [anon_sym_LT_LPAREN] = ACTIONS(692), + [anon_sym_GT_LPAREN] = ACTIONS(692), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(694), }, - [221] = { - [sym_string] = STATE(636), - [anon_sym_DQUOTE] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(1255), - [sym_raw_string] = ACTIONS(1257), - [anon_sym_POUND] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_AT] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1255), - [anon_sym_0] = ACTIONS(1261), - [anon_sym__] = ACTIONS(1261), + [459] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), }, - [222] = { - [aux_sym_concatenation_repeat1] = STATE(632), - [sym__concat] = ACTIONS(1263), - [anon_sym_RBRACK] = ACTIONS(1265), - [sym_comment] = ACTIONS(56), + [460] = { + [sym_file_descriptor] = ACTIONS(722), + [sym__concat] = ACTIONS(722), + [anon_sym_PIPE] = ACTIONS(724), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_PIPE_AMP] = ACTIONS(722), + [anon_sym_AMP_AMP] = ACTIONS(722), + [anon_sym_PIPE_PIPE] = ACTIONS(722), + [anon_sym_EQ_TILDE] = ACTIONS(724), + [anon_sym_EQ_EQ] = ACTIONS(724), + [anon_sym_LT] = ACTIONS(724), + [anon_sym_GT] = ACTIONS(724), + [anon_sym_GT_GT] = ACTIONS(722), + [anon_sym_AMP_GT] = ACTIONS(724), + [anon_sym_AMP_GT_GT] = ACTIONS(722), + [anon_sym_LT_AMP] = ACTIONS(722), + [anon_sym_GT_AMP] = ACTIONS(722), + [anon_sym_LT_LT] = ACTIONS(724), + [anon_sym_LT_LT_DASH] = ACTIONS(722), + [anon_sym_LT_LT_LT] = ACTIONS(722), + [sym__special_characters] = ACTIONS(722), + [anon_sym_DQUOTE] = ACTIONS(722), + [anon_sym_DOLLAR] = ACTIONS(724), + [sym_raw_string] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(722), + [anon_sym_BQUOTE] = ACTIONS(722), + [anon_sym_LT_LPAREN] = ACTIONS(722), + [anon_sym_GT_LPAREN] = ACTIONS(722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(724), }, - [223] = { - [sym_subscript] = STATE(644), - [sym_variable_name] = ACTIONS(1267), - [anon_sym_DOLLAR] = ACTIONS(1269), - [anon_sym_POUND] = ACTIONS(1271), - [anon_sym_DASH] = ACTIONS(1269), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_AT] = ACTIONS(1269), - [anon_sym_QMARK] = ACTIONS(1269), - [anon_sym_0] = ACTIONS(1275), - [anon_sym__] = ACTIONS(1275), + [461] = { + [sym_file_descriptor] = ACTIONS(726), + [sym__concat] = ACTIONS(726), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_PIPE_AMP] = ACTIONS(726), + [anon_sym_AMP_AMP] = ACTIONS(726), + [anon_sym_PIPE_PIPE] = ACTIONS(726), + [anon_sym_EQ_TILDE] = ACTIONS(728), + [anon_sym_EQ_EQ] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(728), + [anon_sym_GT] = ACTIONS(728), + [anon_sym_GT_GT] = ACTIONS(726), + [anon_sym_AMP_GT] = ACTIONS(728), + [anon_sym_AMP_GT_GT] = ACTIONS(726), + [anon_sym_LT_AMP] = ACTIONS(726), + [anon_sym_GT_AMP] = ACTIONS(726), + [anon_sym_LT_LT] = ACTIONS(728), + [anon_sym_LT_LT_DASH] = ACTIONS(726), + [anon_sym_LT_LT_LT] = ACTIONS(726), + [sym__special_characters] = ACTIONS(726), + [anon_sym_DQUOTE] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(728), + [sym_raw_string] = ACTIONS(726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(726), + [anon_sym_BQUOTE] = ACTIONS(726), + [anon_sym_LT_LPAREN] = ACTIONS(726), + [anon_sym_GT_LPAREN] = ACTIONS(726), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(728), }, - [224] = { - [sym_for_statement] = STATE(645), - [sym_while_statement] = STATE(645), - [sym_if_statement] = STATE(645), - [sym_case_statement] = STATE(645), - [sym_function_definition] = STATE(645), - [sym_subshell] = STATE(645), - [sym_pipeline] = STATE(645), - [sym_list] = STATE(645), - [sym_command] = STATE(645), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(645), - [sym_variable_assignment] = STATE(646), - [sym_declaration_command] = STATE(645), - [sym_unset_command] = STATE(645), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [462] = { + [sym_file_descriptor] = ACTIONS(730), + [sym__concat] = ACTIONS(730), + [anon_sym_PIPE] = ACTIONS(732), + [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_PIPE_AMP] = ACTIONS(730), + [anon_sym_AMP_AMP] = ACTIONS(730), + [anon_sym_PIPE_PIPE] = ACTIONS(730), + [anon_sym_EQ_TILDE] = ACTIONS(732), + [anon_sym_EQ_EQ] = ACTIONS(732), + [anon_sym_LT] = ACTIONS(732), + [anon_sym_GT] = ACTIONS(732), + [anon_sym_GT_GT] = ACTIONS(730), + [anon_sym_AMP_GT] = ACTIONS(732), + [anon_sym_AMP_GT_GT] = ACTIONS(730), + [anon_sym_LT_AMP] = ACTIONS(730), + [anon_sym_GT_AMP] = ACTIONS(730), + [anon_sym_LT_LT] = ACTIONS(732), + [anon_sym_LT_LT_DASH] = ACTIONS(730), + [anon_sym_LT_LT_LT] = ACTIONS(730), + [sym__special_characters] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(732), + [sym_raw_string] = ACTIONS(730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(730), + [anon_sym_BQUOTE] = ACTIONS(730), + [anon_sym_LT_LPAREN] = ACTIONS(730), + [anon_sym_GT_LPAREN] = ACTIONS(730), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(732), }, - [225] = { - [sym_for_statement] = STATE(647), - [sym_while_statement] = STATE(647), - [sym_if_statement] = STATE(647), - [sym_case_statement] = STATE(647), - [sym_function_definition] = STATE(647), - [sym_subshell] = STATE(647), - [sym_pipeline] = STATE(647), - [sym_list] = STATE(647), - [sym_command] = STATE(647), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(647), - [sym_variable_assignment] = STATE(648), - [sym_declaration_command] = STATE(647), - [sym_unset_command] = STATE(647), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), + [463] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(1896), + [sym_comment] = ACTIONS(54), }, - [226] = { - [sym_for_statement] = STATE(649), - [sym_while_statement] = STATE(649), - [sym_if_statement] = STATE(649), - [sym_case_statement] = STATE(649), - [sym_function_definition] = STATE(649), - [sym_subshell] = STATE(649), - [sym_pipeline] = STATE(649), - [sym_list] = STATE(649), - [sym_command] = STATE(649), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(649), - [sym_variable_assignment] = STATE(650), - [sym_declaration_command] = STATE(649), - [sym_unset_command] = STATE(649), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [464] = { + [sym_concatenation] = STATE(885), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(1898), + [anon_sym_EQ] = ACTIONS(1900), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1902), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1904), + [anon_sym_COLON] = ACTIONS(1900), + [anon_sym_COLON_QMARK] = ACTIONS(1900), + [anon_sym_COLON_DASH] = ACTIONS(1900), + [anon_sym_PERCENT] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [227] = { - [sym__concat] = ACTIONS(1277), - [anon_sym_RBRACK] = ACTIONS(1265), - [sym_comment] = ACTIONS(56), + [465] = { + [sym_subscript] = STATE(889), + [sym_variable_name] = ACTIONS(1906), + [anon_sym_DOLLAR] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1908), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1908), + [anon_sym_AT] = ACTIONS(1908), + [anon_sym_QMARK] = ACTIONS(1908), + [anon_sym_0] = ACTIONS(1912), + [anon_sym__] = ACTIONS(1912), }, - [228] = { - [sym_file_descriptor] = ACTIONS(1279), - [sym_variable_name] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_RPAREN] = ACTIONS(1281), - [anon_sym_SEMI_SEMI] = ACTIONS(1281), - [anon_sym_PIPE_AMP] = ACTIONS(1281), - [anon_sym_AMP_AMP] = ACTIONS(1281), - [anon_sym_PIPE_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_GT_GT] = ACTIONS(1281), - [anon_sym_AMP_GT] = ACTIONS(1281), - [anon_sym_AMP_GT_GT] = ACTIONS(1281), - [anon_sym_LT_AMP] = ACTIONS(1281), - [anon_sym_GT_AMP] = ACTIONS(1281), - [sym__special_characters] = ACTIONS(1281), - [anon_sym_DQUOTE] = ACTIONS(1281), - [anon_sym_DOLLAR] = ACTIONS(1281), - [sym_raw_string] = ACTIONS(1281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), - [anon_sym_BQUOTE] = ACTIONS(1281), - [anon_sym_LT_LPAREN] = ACTIONS(1281), - [anon_sym_GT_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1281), - [anon_sym_SEMI] = ACTIONS(1281), - [anon_sym_LF] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), + [466] = { + [sym_concatenation] = STATE(892), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(892), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(1916), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1918), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1920), + [anon_sym_COLON] = ACTIONS(1916), + [anon_sym_COLON_QMARK] = ACTIONS(1916), + [anon_sym_COLON_DASH] = ACTIONS(1916), + [anon_sym_PERCENT] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [229] = { - [sym_concatenation] = STATE(661), + [467] = { + [sym_concatenation] = STATE(895), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(895), + [anon_sym_RBRACE] = ACTIONS(1922), + [anon_sym_EQ] = ACTIONS(1924), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1926), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(1928), + [anon_sym_COLON] = ACTIONS(1924), + [anon_sym_COLON_QMARK] = ACTIONS(1924), + [anon_sym_COLON_DASH] = ACTIONS(1924), + [anon_sym_PERCENT] = ACTIONS(1924), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [468] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1930), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [469] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1930), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [470] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(1930), + [sym_comment] = ACTIONS(54), + }, + [471] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(1930), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [472] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1932), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [473] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(1932), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [474] = { + [anon_sym_RPAREN] = ACTIONS(1934), + [sym_comment] = ACTIONS(54), + }, + [475] = { + [sym_for_statement] = STATE(899), + [sym_while_statement] = STATE(899), + [sym_if_statement] = STATE(899), + [sym_case_statement] = STATE(899), + [sym_function_definition] = STATE(899), + [sym_subshell] = STATE(899), + [sym_pipeline] = STATE(899), + [sym_list] = STATE(899), + [sym_command] = STATE(899), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(899), + [sym_variable_assignment] = STATE(900), + [sym_declaration_command] = STATE(899), + [sym_unset_command] = STATE(899), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [476] = { + [sym_file_descriptor] = ACTIONS(1936), + [sym__concat] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_RPAREN] = ACTIONS(1938), + [anon_sym_SEMI_SEMI] = ACTIONS(1938), + [anon_sym_PIPE_AMP] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_PIPE_PIPE] = ACTIONS(1938), + [anon_sym_EQ_TILDE] = ACTIONS(1938), + [anon_sym_EQ_EQ] = ACTIONS(1938), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1938), + [anon_sym_GT_GT] = ACTIONS(1938), + [anon_sym_AMP_GT] = ACTIONS(1938), + [anon_sym_AMP_GT_GT] = ACTIONS(1938), + [anon_sym_LT_AMP] = ACTIONS(1938), + [anon_sym_GT_AMP] = ACTIONS(1938), + [anon_sym_LT_LT] = ACTIONS(1938), + [anon_sym_LT_LT_DASH] = ACTIONS(1938), + [anon_sym_LT_LT_LT] = ACTIONS(1938), + [sym__special_characters] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_DOLLAR] = ACTIONS(1938), + [sym_raw_string] = ACTIONS(1938), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1938), + [anon_sym_BQUOTE] = ACTIONS(1938), + [anon_sym_LT_LPAREN] = ACTIONS(1938), + [anon_sym_GT_LPAREN] = ACTIONS(1938), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1938), + }, + [477] = { + [sym_for_statement] = STATE(901), + [sym_while_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_case_statement] = STATE(901), + [sym_function_definition] = STATE(901), + [sym_subshell] = STATE(901), + [sym_pipeline] = STATE(901), + [sym_list] = STATE(901), + [sym_command] = STATE(901), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(901), + [sym_variable_assignment] = STATE(902), + [sym_declaration_command] = STATE(901), + [sym_unset_command] = STATE(901), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [478] = { + [anon_sym_LT] = ACTIONS(1940), + [anon_sym_GT] = ACTIONS(1940), + [anon_sym_GT_GT] = ACTIONS(1942), + [anon_sym_AMP_GT] = ACTIONS(1940), + [anon_sym_AMP_GT_GT] = ACTIONS(1942), + [anon_sym_LT_AMP] = ACTIONS(1942), + [anon_sym_GT_AMP] = ACTIONS(1942), + [sym_comment] = ACTIONS(54), + }, + [479] = { + [sym_concatenation] = STATE(906), + [sym_string] = STATE(905), + [sym_simple_expansion] = STATE(905), + [sym_string_expansion] = STATE(905), + [sym_expansion] = STATE(905), + [sym_command_substitution] = STATE(905), + [sym_process_substitution] = STATE(905), + [sym__special_characters] = ACTIONS(1944), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(1948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1952), + [anon_sym_BQUOTE] = ACTIONS(1954), + [anon_sym_LT_LPAREN] = ACTIONS(1956), + [anon_sym_GT_LPAREN] = ACTIONS(1956), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1948), + [sym_regex] = ACTIONS(1958), + }, + [480] = { + [sym_concatenation] = STATE(909), + [sym_string] = STATE(908), + [sym_simple_expansion] = STATE(908), + [sym_string_expansion] = STATE(908), + [sym_expansion] = STATE(908), + [sym_command_substitution] = STATE(908), + [sym_process_substitution] = STATE(908), + [sym__special_characters] = ACTIONS(1960), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(1962), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1962), + }, + [481] = { + [sym_heredoc] = STATE(912), + [sym__simple_heredoc] = ACTIONS(1964), + [sym__heredoc_beginning] = ACTIONS(1966), + [sym_comment] = ACTIONS(54), + }, + [482] = { + [sym_concatenation] = STATE(915), + [sym_string] = STATE(914), + [sym_simple_expansion] = STATE(914), + [sym_string_expansion] = STATE(914), + [sym_expansion] = STATE(914), + [sym_command_substitution] = STATE(914), + [sym_process_substitution] = STATE(914), + [sym__special_characters] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(1970), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1970), + }, + [483] = { + [aux_sym_concatenation_repeat1] = STATE(457), + [sym_file_descriptor] = ACTIONS(504), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(502), + [anon_sym_RPAREN] = ACTIONS(504), + [anon_sym_PIPE_AMP] = ACTIONS(504), + [anon_sym_AMP_AMP] = ACTIONS(504), + [anon_sym_PIPE_PIPE] = ACTIONS(504), + [anon_sym_EQ_TILDE] = ACTIONS(502), + [anon_sym_EQ_EQ] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(502), + [anon_sym_GT] = ACTIONS(502), + [anon_sym_GT_GT] = ACTIONS(504), + [anon_sym_AMP_GT] = ACTIONS(502), + [anon_sym_AMP_GT_GT] = ACTIONS(504), + [anon_sym_LT_AMP] = ACTIONS(504), + [anon_sym_GT_AMP] = ACTIONS(504), + [anon_sym_LT_LT] = ACTIONS(502), + [anon_sym_LT_LT_DASH] = ACTIONS(504), + [anon_sym_LT_LT_LT] = ACTIONS(504), + [sym__special_characters] = ACTIONS(504), + [anon_sym_DQUOTE] = ACTIONS(504), + [anon_sym_DOLLAR] = ACTIONS(502), + [sym_raw_string] = ACTIONS(504), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(504), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(504), + [anon_sym_BQUOTE] = ACTIONS(504), + [anon_sym_LT_LPAREN] = ACTIONS(504), + [anon_sym_GT_LPAREN] = ACTIONS(504), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(502), + }, + [484] = { + [aux_sym_concatenation_repeat1] = STATE(457), + [sym_file_descriptor] = ACTIONS(518), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_PIPE_AMP] = ACTIONS(518), + [anon_sym_AMP_AMP] = ACTIONS(518), + [anon_sym_PIPE_PIPE] = ACTIONS(518), + [anon_sym_EQ_TILDE] = ACTIONS(516), + [anon_sym_EQ_EQ] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_GT_GT] = ACTIONS(518), + [anon_sym_AMP_GT] = ACTIONS(516), + [anon_sym_AMP_GT_GT] = ACTIONS(518), + [anon_sym_LT_AMP] = ACTIONS(518), + [anon_sym_GT_AMP] = ACTIONS(518), + [anon_sym_LT_LT] = ACTIONS(516), + [anon_sym_LT_LT_DASH] = ACTIONS(518), + [anon_sym_LT_LT_LT] = ACTIONS(518), + [sym__special_characters] = ACTIONS(518), + [anon_sym_DQUOTE] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(516), + [sym_raw_string] = ACTIONS(518), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(518), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(518), + [anon_sym_BQUOTE] = ACTIONS(518), + [anon_sym_LT_LPAREN] = ACTIONS(518), + [anon_sym_GT_LPAREN] = ACTIONS(518), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(516), + }, + [485] = { + [sym_file_descriptor] = ACTIONS(518), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_PIPE_AMP] = ACTIONS(518), + [anon_sym_AMP_AMP] = ACTIONS(518), + [anon_sym_PIPE_PIPE] = ACTIONS(518), + [anon_sym_EQ_TILDE] = ACTIONS(516), + [anon_sym_EQ_EQ] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_GT_GT] = ACTIONS(518), + [anon_sym_AMP_GT] = ACTIONS(516), + [anon_sym_AMP_GT_GT] = ACTIONS(518), + [anon_sym_LT_AMP] = ACTIONS(518), + [anon_sym_GT_AMP] = ACTIONS(518), + [anon_sym_LT_LT] = ACTIONS(516), + [anon_sym_LT_LT_DASH] = ACTIONS(518), + [anon_sym_LT_LT_LT] = ACTIONS(518), + [sym__special_characters] = ACTIONS(518), + [anon_sym_DQUOTE] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(516), + [sym_raw_string] = ACTIONS(518), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(518), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(518), + [anon_sym_BQUOTE] = ACTIONS(518), + [anon_sym_LT_LPAREN] = ACTIONS(518), + [anon_sym_GT_LPAREN] = ACTIONS(518), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(516), + }, + [486] = { + [sym_file_redirect] = STATE(916), + [sym_heredoc_redirect] = STATE(916), + [sym_herestring_redirect] = STATE(916), + [aux_sym_while_statement_repeat1] = STATE(916), + [sym_file_descriptor] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_RPAREN] = ACTIONS(970), + [anon_sym_PIPE_AMP] = ACTIONS(970), + [anon_sym_AMP_AMP] = ACTIONS(970), + [anon_sym_PIPE_PIPE] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [sym_comment] = ACTIONS(54), + }, + [487] = { + [sym_file_redirect] = STATE(917), + [sym_heredoc_redirect] = STATE(917), + [sym_herestring_redirect] = STATE(917), + [sym_concatenation] = STATE(485), + [sym_string] = STATE(484), + [sym_simple_expansion] = STATE(484), + [sym_string_expansion] = STATE(484), + [sym_expansion] = STATE(484), + [sym_command_substitution] = STATE(484), + [sym_process_substitution] = STATE(484), + [aux_sym_while_statement_repeat1] = STATE(917), + [aux_sym_command_repeat2] = STATE(918), + [sym_file_descriptor] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_RPAREN] = ACTIONS(970), + [anon_sym_PIPE_AMP] = ACTIONS(970), + [anon_sym_AMP_AMP] = ACTIONS(970), + [anon_sym_PIPE_PIPE] = ACTIONS(970), + [anon_sym_EQ_TILDE] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [sym__special_characters] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(890), + }, + [488] = { + [sym_file_redirect] = STATE(917), + [sym_heredoc_redirect] = STATE(917), + [sym_herestring_redirect] = STATE(917), + [sym_concatenation] = STATE(485), + [sym_string] = STATE(484), + [sym_simple_expansion] = STATE(484), + [sym_string_expansion] = STATE(484), + [sym_expansion] = STATE(484), + [sym_command_substitution] = STATE(484), + [sym_process_substitution] = STATE(484), + [aux_sym_while_statement_repeat1] = STATE(917), + [aux_sym_command_repeat2] = STATE(919), + [sym_file_descriptor] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_RPAREN] = ACTIONS(970), + [anon_sym_PIPE_AMP] = ACTIONS(970), + [anon_sym_AMP_AMP] = ACTIONS(970), + [anon_sym_PIPE_PIPE] = ACTIONS(970), + [anon_sym_EQ_TILDE] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [sym__special_characters] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(890), + }, + [489] = { + [sym_concatenation] = STATE(818), + [sym_string] = STATE(921), + [sym_array] = STATE(818), + [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__empty_value] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1806), + [sym__special_characters] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(196), + [anon_sym_DOLLAR] = ACTIONS(198), + [sym_raw_string] = ACTIONS(1974), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(204), + [anon_sym_BQUOTE] = ACTIONS(206), + [anon_sym_LT_LPAREN] = ACTIONS(208), + [anon_sym_GT_LPAREN] = ACTIONS(208), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1974), + }, + [490] = { + [sym_do_group] = STATE(922), + [anon_sym_do] = ACTIONS(1818), + [sym_comment] = ACTIONS(54), + }, + [491] = { + [sym_compound_statement] = STATE(924), + [anon_sym_LPAREN] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1836), + [sym_comment] = ACTIONS(54), + }, + [492] = { + [sym_concatenation] = STATE(76), + [sym_string] = STATE(71), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [sym_expansion] = STATE(71), + [sym_command_substitution] = STATE(71), + [sym_process_substitution] = STATE(71), + [aux_sym_command_repeat2] = STATE(299), + [anon_sym_EQ_TILDE] = ACTIONS(106), + [anon_sym_EQ_EQ] = ACTIONS(106), + [anon_sym_RBRACK] = ACTIONS(1978), + [sym__special_characters] = ACTIONS(532), + [anon_sym_DQUOTE] = ACTIONS(110), + [anon_sym_DOLLAR] = ACTIONS(112), + [sym_raw_string] = ACTIONS(114), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(118), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_LT_LPAREN] = ACTIONS(122), + [anon_sym_GT_LPAREN] = ACTIONS(122), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(124), + }, + [493] = { + [sym_concatenation] = STATE(87), + [sym_string] = STATE(82), + [sym_simple_expansion] = STATE(82), + [sym_string_expansion] = STATE(82), + [sym_expansion] = STATE(82), + [sym_command_substitution] = STATE(82), + [sym_process_substitution] = STATE(82), + [aux_sym_command_repeat2] = STATE(321), + [anon_sym_EQ_TILDE] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(126), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1978), + [sym__special_characters] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(144), + }, + [494] = { + [sym__assignment] = STATE(840), + [anon_sym_LBRACK] = ACTIONS(62), + [anon_sym_EQ] = ACTIONS(1980), + [anon_sym_PLUS_EQ] = ACTIONS(1980), + [sym_comment] = ACTIONS(54), + }, + [495] = { + [aux_sym_concatenation_repeat1] = STATE(927), + [sym__concat] = ACTIONS(1848), + [sym_variable_name] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PIPE_AMP] = ACTIONS(578), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [sym__special_characters] = ACTIONS(578), + [anon_sym_DQUOTE] = ACTIONS(578), + [anon_sym_DOLLAR] = ACTIONS(580), + [sym_raw_string] = ACTIONS(578), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(578), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(578), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_LT_LPAREN] = ACTIONS(578), + [anon_sym_GT_LPAREN] = ACTIONS(578), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(580), + [sym_word] = ACTIONS(580), + }, + [496] = { + [aux_sym_concatenation_repeat1] = STATE(927), + [sym__concat] = ACTIONS(1848), + [sym_variable_name] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_PIPE_AMP] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [sym__special_characters] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(594), + [anon_sym_DOLLAR] = ACTIONS(596), + [sym_raw_string] = ACTIONS(594), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(594), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(594), + [anon_sym_BQUOTE] = ACTIONS(594), + [anon_sym_LT_LPAREN] = ACTIONS(594), + [anon_sym_GT_LPAREN] = ACTIONS(594), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(596), + [sym_word] = ACTIONS(596), + }, + [497] = { + [sym__assignment] = STATE(840), + [anon_sym_EQ] = ACTIONS(1980), + [anon_sym_PLUS_EQ] = ACTIONS(1980), + [sym_comment] = ACTIONS(54), + }, + [498] = { + [sym_variable_assignment] = STATE(928), + [sym_subscript] = STATE(497), + [sym_concatenation] = STATE(928), + [sym_string] = STATE(496), + [sym_simple_expansion] = STATE(496), + [sym_string_expansion] = STATE(496), + [sym_expansion] = STATE(496), + [sym_command_substitution] = STATE(496), + [sym_process_substitution] = STATE(496), + [aux_sym_declaration_command_repeat1] = STATE(928), + [sym_variable_name] = ACTIONS(898), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PIPE_AMP] = ACTIONS(614), + [anon_sym_AMP_AMP] = ACTIONS(614), + [anon_sym_PIPE_PIPE] = ACTIONS(614), + [sym__special_characters] = ACTIONS(900), + [anon_sym_DQUOTE] = ACTIONS(802), + [anon_sym_DOLLAR] = ACTIONS(804), + [sym_raw_string] = ACTIONS(902), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(810), + [anon_sym_BQUOTE] = ACTIONS(614), + [anon_sym_LT_LPAREN] = ACTIONS(814), + [anon_sym_GT_LPAREN] = ACTIONS(814), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(816), + [sym_word] = ACTIONS(904), + }, + [499] = { + [aux_sym_concatenation_repeat1] = STATE(929), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(618), + [anon_sym_PIPE_AMP] = ACTIONS(620), + [anon_sym_AMP_AMP] = ACTIONS(620), + [anon_sym_PIPE_PIPE] = ACTIONS(620), + [sym__special_characters] = ACTIONS(620), + [anon_sym_DQUOTE] = ACTIONS(620), + [anon_sym_DOLLAR] = ACTIONS(618), + [sym_raw_string] = ACTIONS(620), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(620), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(620), + [anon_sym_BQUOTE] = ACTIONS(620), + [anon_sym_LT_LPAREN] = ACTIONS(620), + [anon_sym_GT_LPAREN] = ACTIONS(620), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(618), + [sym_word] = ACTIONS(618), + }, + [500] = { + [aux_sym_concatenation_repeat1] = STATE(929), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(634), + [anon_sym_PIPE_AMP] = ACTIONS(636), + [anon_sym_AMP_AMP] = ACTIONS(636), + [anon_sym_PIPE_PIPE] = ACTIONS(636), + [sym__special_characters] = ACTIONS(636), + [anon_sym_DQUOTE] = ACTIONS(636), + [anon_sym_DOLLAR] = ACTIONS(634), + [sym_raw_string] = ACTIONS(636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(636), + [anon_sym_BQUOTE] = ACTIONS(636), + [anon_sym_LT_LPAREN] = ACTIONS(636), + [anon_sym_GT_LPAREN] = ACTIONS(636), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(634), + [sym_word] = ACTIONS(634), + }, + [501] = { + [sym_concatenation] = STATE(930), + [sym_string] = STATE(500), + [sym_simple_expansion] = STATE(500), + [sym_string_expansion] = STATE(500), + [sym_expansion] = STATE(500), + [sym_command_substitution] = STATE(500), + [sym_process_substitution] = STATE(500), + [aux_sym_unset_command_repeat1] = STATE(930), + [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_PIPE_AMP] = ACTIONS(654), + [anon_sym_AMP_AMP] = ACTIONS(654), + [anon_sym_PIPE_PIPE] = ACTIONS(654), + [sym__special_characters] = ACTIONS(906), + [anon_sym_DQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(824), + [sym_raw_string] = ACTIONS(908), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(654), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(836), + [sym_word] = ACTIONS(910), + }, + [502] = { + [aux_sym_concatenation_repeat1] = STATE(931), + [sym_file_descriptor] = ACTIONS(688), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_EQ_TILDE] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(688), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(688), + [anon_sym_LT_AMP] = ACTIONS(688), + [anon_sym_GT_AMP] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_LT_LT_DASH] = ACTIONS(688), + [anon_sym_LT_LT_LT] = ACTIONS(688), + [sym__special_characters] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(688), + [anon_sym_LT_LPAREN] = ACTIONS(688), + [anon_sym_GT_LPAREN] = ACTIONS(688), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(690), + }, + [503] = { + [anon_sym_RPAREN] = ACTIONS(1982), + [sym_comment] = ACTIONS(54), + }, + [504] = { + [sym_for_statement] = STATE(899), + [sym_while_statement] = STATE(899), + [sym_if_statement] = STATE(899), + [sym_case_statement] = STATE(899), + [sym_function_definition] = STATE(899), + [sym_subshell] = STATE(899), + [sym_pipeline] = STATE(899), + [sym_list] = STATE(899), + [sym_command] = STATE(899), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(899), + [sym_variable_assignment] = STATE(933), + [sym_declaration_command] = STATE(899), + [sym_unset_command] = STATE(899), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), + }, + [505] = { + [sym_for_statement] = STATE(934), + [sym_while_statement] = STATE(934), + [sym_if_statement] = STATE(934), + [sym_case_statement] = STATE(934), + [sym_function_definition] = STATE(934), + [sym_subshell] = STATE(934), + [sym_pipeline] = STATE(934), + [sym_list] = STATE(934), + [sym_command] = STATE(934), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(934), + [sym_variable_assignment] = STATE(935), + [sym_declaration_command] = STATE(934), + [sym_unset_command] = STATE(934), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), + }, + [506] = { + [anon_sym_LT] = ACTIONS(1984), + [anon_sym_GT] = ACTIONS(1984), + [anon_sym_GT_GT] = ACTIONS(1986), + [anon_sym_AMP_GT] = ACTIONS(1984), + [anon_sym_AMP_GT_GT] = ACTIONS(1986), + [anon_sym_LT_AMP] = ACTIONS(1986), + [anon_sym_GT_AMP] = ACTIONS(1986), + [sym_comment] = ACTIONS(54), + }, + [507] = { + [sym_concatenation] = STATE(906), + [sym_string] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_string_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(1990), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1952), + [anon_sym_BQUOTE] = ACTIONS(1954), + [anon_sym_LT_LPAREN] = ACTIONS(1956), + [anon_sym_GT_LPAREN] = ACTIONS(1956), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1990), + [sym_regex] = ACTIONS(1958), + }, + [508] = { + [sym_concatenation] = STATE(909), + [sym_string] = STATE(940), + [sym_simple_expansion] = STATE(940), + [sym_string_expansion] = STATE(940), + [sym_expansion] = STATE(940), + [sym_command_substitution] = STATE(940), + [sym_process_substitution] = STATE(940), + [sym__special_characters] = ACTIONS(1992), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(1994), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1994), + }, + [509] = { + [sym_concatenation] = STATE(915), + [sym_string] = STATE(942), + [sym_simple_expansion] = STATE(942), + [sym_string_expansion] = STATE(942), + [sym_expansion] = STATE(942), + [sym_command_substitution] = STATE(942), + [sym_process_substitution] = STATE(942), + [sym__special_characters] = ACTIONS(1996), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(1998), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1998), + }, + [510] = { + [aux_sym_concatenation_repeat1] = STATE(502), + [sym_file_descriptor] = ACTIONS(504), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(502), + [anon_sym_PIPE_AMP] = ACTIONS(504), + [anon_sym_AMP_AMP] = ACTIONS(504), + [anon_sym_PIPE_PIPE] = ACTIONS(504), + [anon_sym_EQ_TILDE] = ACTIONS(502), + [anon_sym_EQ_EQ] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(502), + [anon_sym_GT] = ACTIONS(502), + [anon_sym_GT_GT] = ACTIONS(504), + [anon_sym_AMP_GT] = ACTIONS(502), + [anon_sym_AMP_GT_GT] = ACTIONS(504), + [anon_sym_LT_AMP] = ACTIONS(504), + [anon_sym_GT_AMP] = ACTIONS(504), + [anon_sym_LT_LT] = ACTIONS(502), + [anon_sym_LT_LT_DASH] = ACTIONS(504), + [anon_sym_LT_LT_LT] = ACTIONS(504), + [sym__special_characters] = ACTIONS(504), + [anon_sym_DQUOTE] = ACTIONS(504), + [anon_sym_DOLLAR] = ACTIONS(502), + [sym_raw_string] = ACTIONS(504), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(504), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(504), + [anon_sym_BQUOTE] = ACTIONS(504), + [anon_sym_LT_LPAREN] = ACTIONS(504), + [anon_sym_GT_LPAREN] = ACTIONS(504), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(502), + }, + [511] = { + [aux_sym_concatenation_repeat1] = STATE(502), + [sym_file_descriptor] = ACTIONS(518), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_PIPE_AMP] = ACTIONS(518), + [anon_sym_AMP_AMP] = ACTIONS(518), + [anon_sym_PIPE_PIPE] = ACTIONS(518), + [anon_sym_EQ_TILDE] = ACTIONS(516), + [anon_sym_EQ_EQ] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_GT_GT] = ACTIONS(518), + [anon_sym_AMP_GT] = ACTIONS(516), + [anon_sym_AMP_GT_GT] = ACTIONS(518), + [anon_sym_LT_AMP] = ACTIONS(518), + [anon_sym_GT_AMP] = ACTIONS(518), + [anon_sym_LT_LT] = ACTIONS(516), + [anon_sym_LT_LT_DASH] = ACTIONS(518), + [anon_sym_LT_LT_LT] = ACTIONS(518), + [sym__special_characters] = ACTIONS(518), + [anon_sym_DQUOTE] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(516), + [sym_raw_string] = ACTIONS(518), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(518), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(518), + [anon_sym_BQUOTE] = ACTIONS(518), + [anon_sym_LT_LPAREN] = ACTIONS(518), + [anon_sym_GT_LPAREN] = ACTIONS(518), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(516), + }, + [512] = { + [sym_file_redirect] = STATE(943), + [sym_heredoc_redirect] = STATE(943), + [sym_herestring_redirect] = STATE(943), + [aux_sym_while_statement_repeat1] = STATE(943), + [sym_file_descriptor] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_PIPE_AMP] = ACTIONS(970), + [anon_sym_AMP_AMP] = ACTIONS(970), + [anon_sym_PIPE_PIPE] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(924), + [anon_sym_GT_GT] = ACTIONS(926), + [anon_sym_AMP_GT] = ACTIONS(924), + [anon_sym_AMP_GT_GT] = ACTIONS(926), + [anon_sym_LT_AMP] = ACTIONS(926), + [anon_sym_GT_AMP] = ACTIONS(926), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(928), + [anon_sym_BQUOTE] = ACTIONS(970), + [sym_comment] = ACTIONS(54), + }, + [513] = { + [sym_file_redirect] = STATE(944), + [sym_heredoc_redirect] = STATE(944), + [sym_herestring_redirect] = STATE(944), + [sym_concatenation] = STATE(485), + [sym_string] = STATE(511), + [sym_simple_expansion] = STATE(511), + [sym_string_expansion] = STATE(511), + [sym_expansion] = STATE(511), + [sym_command_substitution] = STATE(511), + [sym_process_substitution] = STATE(511), + [aux_sym_while_statement_repeat1] = STATE(944), + [aux_sym_command_repeat2] = STATE(945), + [sym_file_descriptor] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_PIPE_AMP] = ACTIONS(970), + [anon_sym_AMP_AMP] = ACTIONS(970), + [anon_sym_PIPE_PIPE] = ACTIONS(970), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_LT] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(924), + [anon_sym_GT_GT] = ACTIONS(926), + [anon_sym_AMP_GT] = ACTIONS(924), + [anon_sym_AMP_GT_GT] = ACTIONS(926), + [anon_sym_LT_AMP] = ACTIONS(926), + [anon_sym_GT_AMP] = ACTIONS(926), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(928), + [sym__special_characters] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(932), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(970), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(934), + }, + [514] = { + [sym_file_redirect] = STATE(944), + [sym_heredoc_redirect] = STATE(944), + [sym_herestring_redirect] = STATE(944), + [sym_concatenation] = STATE(485), + [sym_string] = STATE(511), + [sym_simple_expansion] = STATE(511), + [sym_string_expansion] = STATE(511), + [sym_expansion] = STATE(511), + [sym_command_substitution] = STATE(511), + [sym_process_substitution] = STATE(511), + [aux_sym_while_statement_repeat1] = STATE(944), + [aux_sym_command_repeat2] = STATE(946), + [sym_file_descriptor] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_PIPE_AMP] = ACTIONS(970), + [anon_sym_AMP_AMP] = ACTIONS(970), + [anon_sym_PIPE_PIPE] = ACTIONS(970), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_LT] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(924), + [anon_sym_GT_GT] = ACTIONS(926), + [anon_sym_AMP_GT] = ACTIONS(924), + [anon_sym_AMP_GT_GT] = ACTIONS(926), + [anon_sym_LT_AMP] = ACTIONS(926), + [anon_sym_GT_AMP] = ACTIONS(926), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(928), + [sym__special_characters] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(932), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(970), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(934), + }, + [515] = { + [sym_file_descriptor] = ACTIONS(2000), + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_RPAREN] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [anon_sym_EQ_TILDE] = ACTIONS(2002), + [anon_sym_EQ_EQ] = ACTIONS(2002), + [anon_sym_LT] = ACTIONS(2002), + [anon_sym_GT] = ACTIONS(2002), + [anon_sym_GT_GT] = ACTIONS(2002), + [anon_sym_AMP_GT] = ACTIONS(2002), + [anon_sym_AMP_GT_GT] = ACTIONS(2002), + [anon_sym_LT_AMP] = ACTIONS(2002), + [anon_sym_GT_AMP] = ACTIONS(2002), + [anon_sym_LT_LT] = ACTIONS(2002), + [anon_sym_LT_LT_DASH] = ACTIONS(2002), + [anon_sym_LT_LT_LT] = ACTIONS(2002), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2002), + [anon_sym_BQUOTE] = ACTIONS(2002), + [anon_sym_LT_LPAREN] = ACTIONS(2002), + [anon_sym_GT_LPAREN] = ACTIONS(2002), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2002), + }, + [516] = { + [sym_compound_statement] = STATE(947), + [anon_sym_LBRACE] = ACTIONS(442), + [sym_comment] = ACTIONS(54), + }, + [517] = { + [anon_sym_esac] = ACTIONS(2004), + [anon_sym_PIPE] = ACTIONS(2004), + [anon_sym_RPAREN] = ACTIONS(2004), + [anon_sym_SEMI_SEMI] = ACTIONS(2004), + [anon_sym_PIPE_AMP] = ACTIONS(2004), + [anon_sym_AMP_AMP] = ACTIONS(2004), + [anon_sym_PIPE_PIPE] = ACTIONS(2004), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2004), + [anon_sym_LF] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2004), + }, + [518] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(2004), + [anon_sym_RPAREN] = ACTIONS(2004), + [anon_sym_SEMI_SEMI] = ACTIONS(2004), + [anon_sym_PIPE_AMP] = ACTIONS(2004), + [anon_sym_AMP_AMP] = ACTIONS(2004), + [anon_sym_PIPE_PIPE] = ACTIONS(2004), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(2004), + [anon_sym_LF] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2004), + }, + [519] = { + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(2008), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(2008), + [anon_sym_PIPE_PIPE] = ACTIONS(2008), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_LF] = ACTIONS(2010), + [anon_sym_AMP] = ACTIONS(2008), + }, + [520] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(2008), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(2008), + [anon_sym_PIPE_PIPE] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_LF] = ACTIONS(2010), + [anon_sym_AMP] = ACTIONS(2008), + }, + [521] = { + [sym_concatenation] = STATE(950), + [sym_string] = STATE(949), + [sym_simple_expansion] = STATE(949), + [sym_string_expansion] = STATE(949), + [sym_expansion] = STATE(949), + [sym_command_substitution] = STATE(949), + [sym_process_substitution] = STATE(949), + [sym__special_characters] = ACTIONS(2012), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(2014), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2014), + }, + [522] = { + [aux_sym_concatenation_repeat1] = STATE(121), + [sym_file_descriptor] = ACTIONS(1265), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_SEMI_SEMI] = ACTIONS(1263), + [anon_sym_PIPE_AMP] = ACTIONS(1263), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1263), + [anon_sym_EQ_TILDE] = ACTIONS(1263), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_GT] = ACTIONS(1263), + [anon_sym_AMP_GT] = ACTIONS(1263), + [anon_sym_AMP_GT_GT] = ACTIONS(1263), + [anon_sym_LT_AMP] = ACTIONS(1263), + [anon_sym_GT_AMP] = ACTIONS(1263), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_LT_LT_DASH] = ACTIONS(1263), + [anon_sym_LT_LT_LT] = ACTIONS(1263), + [sym__special_characters] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1263), + [sym_raw_string] = ACTIONS(1263), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [anon_sym_LT_LPAREN] = ACTIONS(1263), + [anon_sym_GT_LPAREN] = ACTIONS(1263), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_LF] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1263), + }, + [523] = { + [aux_sym_concatenation_repeat1] = STATE(121), + [sym_file_descriptor] = ACTIONS(1269), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_SEMI_SEMI] = ACTIONS(1267), + [anon_sym_PIPE_AMP] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_EQ_TILDE] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_AMP_GT] = ACTIONS(1267), + [anon_sym_AMP_GT_GT] = ACTIONS(1267), + [anon_sym_LT_AMP] = ACTIONS(1267), + [anon_sym_GT_AMP] = ACTIONS(1267), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_LT_LT_DASH] = ACTIONS(1267), + [anon_sym_LT_LT_LT] = ACTIONS(1267), + [sym__special_characters] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1267), + [sym_raw_string] = ACTIONS(1267), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1267), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1267), + [anon_sym_BQUOTE] = ACTIONS(1267), + [anon_sym_LT_LPAREN] = ACTIONS(1267), + [anon_sym_GT_LPAREN] = ACTIONS(1267), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_LF] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1267), + }, + [524] = { + [sym_file_descriptor] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1267), + [anon_sym_SEMI_SEMI] = ACTIONS(1267), + [anon_sym_PIPE_AMP] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_EQ_TILDE] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_AMP_GT] = ACTIONS(1267), + [anon_sym_AMP_GT_GT] = ACTIONS(1267), + [anon_sym_LT_AMP] = ACTIONS(1267), + [anon_sym_GT_AMP] = ACTIONS(1267), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_LT_LT_DASH] = ACTIONS(1267), + [anon_sym_LT_LT_LT] = ACTIONS(1267), + [sym__special_characters] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1267), + [sym_raw_string] = ACTIONS(1267), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1267), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1267), + [anon_sym_BQUOTE] = ACTIONS(1267), + [anon_sym_LT_LPAREN] = ACTIONS(1267), + [anon_sym_GT_LPAREN] = ACTIONS(1267), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_LF] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1267), + }, + [525] = { + [aux_sym_concatenation_repeat1] = STATE(951), + [sym_file_descriptor] = ACTIONS(656), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(660), + [anon_sym_SEMI_SEMI] = ACTIONS(660), + [anon_sym_PIPE_AMP] = ACTIONS(660), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_LT] = ACTIONS(660), + [anon_sym_GT] = ACTIONS(660), + [anon_sym_GT_GT] = ACTIONS(660), + [anon_sym_AMP_GT] = ACTIONS(660), + [anon_sym_AMP_GT_GT] = ACTIONS(660), + [anon_sym_LT_AMP] = ACTIONS(660), + [anon_sym_GT_AMP] = ACTIONS(660), + [anon_sym_LT_LT] = ACTIONS(660), + [anon_sym_LT_LT_DASH] = ACTIONS(660), + [anon_sym_LT_LT_LT] = ACTIONS(660), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(660), + [anon_sym_LF] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(660), + }, + [526] = { + [aux_sym_concatenation_repeat1] = STATE(951), + [sym_file_descriptor] = ACTIONS(672), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_SEMI_SEMI] = ACTIONS(674), + [anon_sym_PIPE_AMP] = ACTIONS(674), + [anon_sym_AMP_AMP] = ACTIONS(674), + [anon_sym_PIPE_PIPE] = ACTIONS(674), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(674), + [anon_sym_AMP_GT] = ACTIONS(674), + [anon_sym_AMP_GT_GT] = ACTIONS(674), + [anon_sym_LT_AMP] = ACTIONS(674), + [anon_sym_GT_AMP] = ACTIONS(674), + [anon_sym_LT_LT] = ACTIONS(674), + [anon_sym_LT_LT_DASH] = ACTIONS(674), + [anon_sym_LT_LT_LT] = ACTIONS(674), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(674), + [anon_sym_LF] = ACTIONS(672), + [anon_sym_AMP] = ACTIONS(674), + }, + [527] = { + [sym_file_descriptor] = ACTIONS(672), + [anon_sym_esac] = ACTIONS(674), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(674), + [anon_sym_SEMI_SEMI] = ACTIONS(674), + [anon_sym_PIPE_AMP] = ACTIONS(674), + [anon_sym_AMP_AMP] = ACTIONS(674), + [anon_sym_PIPE_PIPE] = ACTIONS(674), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(674), + [anon_sym_AMP_GT] = ACTIONS(674), + [anon_sym_AMP_GT_GT] = ACTIONS(674), + [anon_sym_LT_AMP] = ACTIONS(674), + [anon_sym_GT_AMP] = ACTIONS(674), + [anon_sym_LT_LT] = ACTIONS(674), + [anon_sym_LT_LT_DASH] = ACTIONS(674), + [anon_sym_LT_LT_LT] = ACTIONS(674), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(674), + [anon_sym_LF] = ACTIONS(672), + [anon_sym_AMP] = ACTIONS(674), + }, + [528] = { + [sym_file_descriptor] = ACTIONS(2016), + [anon_sym_esac] = ACTIONS(2018), + [anon_sym_PIPE] = ACTIONS(2018), + [anon_sym_RPAREN] = ACTIONS(2018), + [anon_sym_SEMI_SEMI] = ACTIONS(2018), + [anon_sym_PIPE_AMP] = ACTIONS(2018), + [anon_sym_AMP_AMP] = ACTIONS(2018), + [anon_sym_PIPE_PIPE] = ACTIONS(2018), + [anon_sym_LT] = ACTIONS(2018), + [anon_sym_GT] = ACTIONS(2018), + [anon_sym_GT_GT] = ACTIONS(2018), + [anon_sym_AMP_GT] = ACTIONS(2018), + [anon_sym_AMP_GT_GT] = ACTIONS(2018), + [anon_sym_LT_AMP] = ACTIONS(2018), + [anon_sym_GT_AMP] = ACTIONS(2018), + [anon_sym_LT_LT] = ACTIONS(2018), + [anon_sym_LT_LT_DASH] = ACTIONS(2018), + [anon_sym_LT_LT_LT] = ACTIONS(2018), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_LF] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2018), + }, + [529] = { + [sym_simple_expansion] = STATE(952), + [sym_expansion] = STATE(952), + [aux_sym_heredoc_repeat1] = STATE(956), + [sym__heredoc_middle] = ACTIONS(2020), + [sym__heredoc_end] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(2024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), + [sym_comment] = ACTIONS(54), + }, + [530] = { + [sym_file_descriptor] = ACTIONS(2028), + [anon_sym_esac] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2030), + [anon_sym_RPAREN] = ACTIONS(2030), + [anon_sym_SEMI_SEMI] = ACTIONS(2030), + [anon_sym_PIPE_AMP] = ACTIONS(2030), + [anon_sym_AMP_AMP] = ACTIONS(2030), + [anon_sym_PIPE_PIPE] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(2030), + [anon_sym_GT] = ACTIONS(2030), + [anon_sym_GT_GT] = ACTIONS(2030), + [anon_sym_AMP_GT] = ACTIONS(2030), + [anon_sym_AMP_GT_GT] = ACTIONS(2030), + [anon_sym_LT_AMP] = ACTIONS(2030), + [anon_sym_GT_AMP] = ACTIONS(2030), + [anon_sym_LT_LT] = ACTIONS(2030), + [anon_sym_LT_LT_DASH] = ACTIONS(2030), + [anon_sym_LT_LT_LT] = ACTIONS(2030), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_LF] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2030), + }, + [531] = { + [aux_sym_concatenation_repeat1] = STATE(951), + [sym_file_descriptor] = ACTIONS(2032), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(2034), + [anon_sym_SEMI_SEMI] = ACTIONS(2034), + [anon_sym_PIPE_AMP] = ACTIONS(2034), + [anon_sym_AMP_AMP] = ACTIONS(2034), + [anon_sym_PIPE_PIPE] = ACTIONS(2034), + [anon_sym_LT] = ACTIONS(2034), + [anon_sym_GT] = ACTIONS(2034), + [anon_sym_GT_GT] = ACTIONS(2034), + [anon_sym_AMP_GT] = ACTIONS(2034), + [anon_sym_AMP_GT_GT] = ACTIONS(2034), + [anon_sym_LT_AMP] = ACTIONS(2034), + [anon_sym_GT_AMP] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(2034), + [anon_sym_LT_LT_DASH] = ACTIONS(2034), + [anon_sym_LT_LT_LT] = ACTIONS(2034), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2034), + }, + [532] = { + [aux_sym_concatenation_repeat1] = STATE(951), + [sym_file_descriptor] = ACTIONS(2036), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(2038), + [anon_sym_SEMI_SEMI] = ACTIONS(2038), + [anon_sym_PIPE_AMP] = ACTIONS(2038), + [anon_sym_AMP_AMP] = ACTIONS(2038), + [anon_sym_PIPE_PIPE] = ACTIONS(2038), + [anon_sym_LT] = ACTIONS(2038), + [anon_sym_GT] = ACTIONS(2038), + [anon_sym_GT_GT] = ACTIONS(2038), + [anon_sym_AMP_GT] = ACTIONS(2038), + [anon_sym_AMP_GT_GT] = ACTIONS(2038), + [anon_sym_LT_AMP] = ACTIONS(2038), + [anon_sym_GT_AMP] = ACTIONS(2038), + [anon_sym_LT_LT] = ACTIONS(2038), + [anon_sym_LT_LT_DASH] = ACTIONS(2038), + [anon_sym_LT_LT_LT] = ACTIONS(2038), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2038), + }, + [533] = { + [sym_file_descriptor] = ACTIONS(2036), + [anon_sym_esac] = ACTIONS(2038), + [anon_sym_PIPE] = ACTIONS(2038), + [anon_sym_RPAREN] = ACTIONS(2038), + [anon_sym_SEMI_SEMI] = ACTIONS(2038), + [anon_sym_PIPE_AMP] = ACTIONS(2038), + [anon_sym_AMP_AMP] = ACTIONS(2038), + [anon_sym_PIPE_PIPE] = ACTIONS(2038), + [anon_sym_LT] = ACTIONS(2038), + [anon_sym_GT] = ACTIONS(2038), + [anon_sym_GT_GT] = ACTIONS(2038), + [anon_sym_AMP_GT] = ACTIONS(2038), + [anon_sym_AMP_GT_GT] = ACTIONS(2038), + [anon_sym_LT_AMP] = ACTIONS(2038), + [anon_sym_GT_AMP] = ACTIONS(2038), + [anon_sym_LT_LT] = ACTIONS(2038), + [anon_sym_LT_LT_DASH] = ACTIONS(2038), + [anon_sym_LT_LT_LT] = ACTIONS(2038), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2038), + }, + [534] = { + [sym_file_redirect] = STATE(534), + [sym_heredoc_redirect] = STATE(534), + [sym_herestring_redirect] = STATE(534), + [aux_sym_while_statement_repeat1] = STATE(534), + [sym_file_descriptor] = ACTIONS(2040), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_SEMI_SEMI] = ACTIONS(2043), + [anon_sym_PIPE_AMP] = ACTIONS(2043), + [anon_sym_AMP_AMP] = ACTIONS(2043), + [anon_sym_PIPE_PIPE] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2045), + [anon_sym_GT] = ACTIONS(2045), + [anon_sym_GT_GT] = ACTIONS(2045), + [anon_sym_AMP_GT] = ACTIONS(2045), + [anon_sym_AMP_GT_GT] = ACTIONS(2045), + [anon_sym_LT_AMP] = ACTIONS(2045), + [anon_sym_GT_AMP] = ACTIONS(2045), + [anon_sym_LT_LT] = ACTIONS(2048), + [anon_sym_LT_LT_DASH] = ACTIONS(2048), + [anon_sym_LT_LT_LT] = ACTIONS(2051), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2043), + [anon_sym_LF] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2043), + }, + [535] = { + [sym_file_redirect] = STATE(534), + [sym_heredoc_redirect] = STATE(534), + [sym_herestring_redirect] = STATE(534), + [aux_sym_while_statement_repeat1] = STATE(534), + [sym_file_descriptor] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(2056), + [anon_sym_SEMI_SEMI] = ACTIONS(2056), + [anon_sym_PIPE_AMP] = ACTIONS(2056), + [anon_sym_AMP_AMP] = ACTIONS(2056), + [anon_sym_PIPE_PIPE] = ACTIONS(2056), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(328), + [anon_sym_GT_GT] = ACTIONS(328), + [anon_sym_AMP_GT] = ACTIONS(328), + [anon_sym_AMP_GT_GT] = ACTIONS(328), + [anon_sym_LT_AMP] = ACTIONS(328), + [anon_sym_GT_AMP] = ACTIONS(328), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(332), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_LF] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2056), + }, + [536] = { + [sym_concatenation] = STATE(191), + [sym_string] = STATE(190), + [sym_simple_expansion] = STATE(190), + [sym_string_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [sym_process_substitution] = STATE(190), + [aux_sym_command_repeat2] = STATE(536), + [sym_file_descriptor] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_SEMI_SEMI] = ACTIONS(1267), + [anon_sym_PIPE_AMP] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_EQ_TILDE] = ACTIONS(2060), + [anon_sym_EQ_EQ] = ACTIONS(2060), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_AMP_GT] = ACTIONS(1267), + [anon_sym_AMP_GT_GT] = ACTIONS(1267), + [anon_sym_LT_AMP] = ACTIONS(1267), + [anon_sym_GT_AMP] = ACTIONS(1267), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_LT_LT_DASH] = ACTIONS(1267), + [anon_sym_LT_LT_LT] = ACTIONS(1267), + [sym__special_characters] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(2066), + [anon_sym_DOLLAR] = ACTIONS(2069), + [sym_raw_string] = ACTIONS(2072), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2075), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2078), + [anon_sym_BQUOTE] = ACTIONS(2081), + [anon_sym_LT_LPAREN] = ACTIONS(2084), + [anon_sym_GT_LPAREN] = ACTIONS(2084), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_LF] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1267), + }, + [537] = { + [sym_concatenation] = STATE(818), + [sym_string] = STATE(958), + [sym_array] = STATE(818), + [sym_simple_expansion] = STATE(958), + [sym_string_expansion] = STATE(958), + [sym_expansion] = STATE(958), + [sym_command_substitution] = STATE(958), + [sym_process_substitution] = STATE(958), + [sym__empty_value] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1806), + [sym__special_characters] = ACTIONS(2087), + [anon_sym_DQUOTE] = ACTIONS(196), + [anon_sym_DOLLAR] = ACTIONS(198), + [sym_raw_string] = ACTIONS(2089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(204), + [anon_sym_BQUOTE] = ACTIONS(206), + [anon_sym_LT_LPAREN] = ACTIONS(208), + [anon_sym_GT_LPAREN] = ACTIONS(208), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2089), + }, + [538] = { + [sym_file_redirect] = STATE(959), + [sym_heredoc_redirect] = STATE(959), + [sym_herestring_redirect] = STATE(959), + [sym_concatenation] = STATE(191), + [sym_string] = STATE(190), + [sym_simple_expansion] = STATE(190), + [sym_string_expansion] = STATE(190), + [sym_expansion] = STATE(190), + [sym_command_substitution] = STATE(190), + [sym_process_substitution] = STATE(190), + [aux_sym_while_statement_repeat1] = STATE(959), + [aux_sym_command_repeat2] = STATE(536), + [sym_file_descriptor] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(2056), + [anon_sym_SEMI_SEMI] = ACTIONS(2056), + [anon_sym_PIPE_AMP] = ACTIONS(2056), + [anon_sym_AMP_AMP] = ACTIONS(2056), + [anon_sym_PIPE_PIPE] = ACTIONS(2056), + [anon_sym_EQ_TILDE] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(326), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(328), + [anon_sym_GT_GT] = ACTIONS(328), + [anon_sym_AMP_GT] = ACTIONS(328), + [anon_sym_AMP_GT_GT] = ACTIONS(328), + [anon_sym_LT_AMP] = ACTIONS(328), + [anon_sym_GT_AMP] = ACTIONS(328), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(332), + [sym__special_characters] = ACTIONS(334), + [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(342), + [anon_sym_BQUOTE] = ACTIONS(344), + [anon_sym_LT_LPAREN] = ACTIONS(346), + [anon_sym_GT_LPAREN] = ACTIONS(346), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(338), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_LF] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2056), + }, + [539] = { [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), - [aux_sym_for_statement_repeat1] = STATE(662), - [anon_sym_RPAREN] = ACTIONS(1283), - [sym__special_characters] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1287), - [anon_sym_DOLLAR] = ACTIONS(1289), - [sym_raw_string] = ACTIONS(1291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), - [anon_sym_BQUOTE] = ACTIONS(1297), - [anon_sym_LT_LPAREN] = ACTIONS(1299), - [anon_sym_GT_LPAREN] = ACTIONS(1299), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1301), + [anon_sym_RBRACK] = ACTIONS(2091), + [sym__special_characters] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(110), + [anon_sym_DOLLAR] = ACTIONS(112), + [sym_raw_string] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(118), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_LT_LPAREN] = ACTIONS(122), + [anon_sym_GT_LPAREN] = ACTIONS(122), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1271), }, - [230] = { - [aux_sym_concatenation_repeat1] = STATE(664), - [sym_file_descriptor] = ACTIONS(1303), - [sym__concat] = ACTIONS(1305), - [sym_variable_name] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1307), - [anon_sym_SEMI_SEMI] = ACTIONS(1307), - [anon_sym_PIPE_AMP] = ACTIONS(1307), - [anon_sym_AMP_AMP] = ACTIONS(1307), - [anon_sym_PIPE_PIPE] = ACTIONS(1307), - [anon_sym_LT] = ACTIONS(1307), - [anon_sym_GT] = ACTIONS(1307), - [anon_sym_GT_GT] = ACTIONS(1307), - [anon_sym_AMP_GT] = ACTIONS(1307), - [anon_sym_AMP_GT_GT] = ACTIONS(1307), - [anon_sym_LT_AMP] = ACTIONS(1307), - [anon_sym_GT_AMP] = ACTIONS(1307), - [sym__special_characters] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1307), - [sym_raw_string] = ACTIONS(1307), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1307), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1307), - [anon_sym_BQUOTE] = ACTIONS(1307), - [anon_sym_LT_LPAREN] = ACTIONS(1307), - [anon_sym_GT_LPAREN] = ACTIONS(1307), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1307), - [anon_sym_LF] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1307), + [540] = { + [sym__concat] = ACTIONS(2095), + [anon_sym_EQ] = ACTIONS(2097), + [anon_sym_PLUS_EQ] = ACTIONS(2097), + [sym_comment] = ACTIONS(54), }, - [231] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(666), - [anon_sym_DQUOTE] = ACTIONS(1309), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), + [541] = { + [aux_sym_concatenation_repeat1] = STATE(962), + [sym__concat] = ACTIONS(500), + [anon_sym_RBRACK] = ACTIONS(688), + [sym_comment] = ACTIONS(54), }, - [232] = { - [sym_string] = STATE(668), - [anon_sym_DQUOTE] = ACTIONS(424), - [anon_sym_DOLLAR] = ACTIONS(1311), - [sym_raw_string] = ACTIONS(1313), - [anon_sym_POUND] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1315), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_AT] = ACTIONS(1311), - [anon_sym_QMARK] = ACTIONS(1311), - [anon_sym_0] = ACTIONS(1317), - [anon_sym__] = ACTIONS(1317), + [542] = { + [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(2099), + [sym__special_characters] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(110), + [anon_sym_DOLLAR] = ACTIONS(112), + [sym_raw_string] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(118), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_LT_LPAREN] = ACTIONS(122), + [anon_sym_GT_LPAREN] = ACTIONS(122), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1271), }, - [233] = { - [aux_sym_concatenation_repeat1] = STATE(664), - [sym_file_descriptor] = ACTIONS(1279), - [sym__concat] = ACTIONS(1305), - [sym_variable_name] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_SEMI_SEMI] = ACTIONS(1281), - [anon_sym_PIPE_AMP] = ACTIONS(1281), - [anon_sym_AMP_AMP] = ACTIONS(1281), - [anon_sym_PIPE_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_GT_GT] = ACTIONS(1281), - [anon_sym_AMP_GT] = ACTIONS(1281), - [anon_sym_AMP_GT_GT] = ACTIONS(1281), - [anon_sym_LT_AMP] = ACTIONS(1281), - [anon_sym_GT_AMP] = ACTIONS(1281), - [sym__special_characters] = ACTIONS(1281), - [anon_sym_DQUOTE] = ACTIONS(1281), - [anon_sym_DOLLAR] = ACTIONS(1281), - [sym_raw_string] = ACTIONS(1281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), - [anon_sym_BQUOTE] = ACTIONS(1281), - [anon_sym_LT_LPAREN] = ACTIONS(1281), - [anon_sym_GT_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1281), - [anon_sym_SEMI] = ACTIONS(1281), - [anon_sym_LF] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), + [543] = { + [sym__concat] = ACTIONS(2101), + [anon_sym_EQ] = ACTIONS(2103), + [anon_sym_PLUS_EQ] = ACTIONS(2103), + [sym_comment] = ACTIONS(54), }, - [234] = { - [sym_subscript] = STATE(674), - [sym_variable_name] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1321), - [anon_sym_POUND] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1321), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_AT] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1321), - [anon_sym_0] = ACTIONS(1327), - [anon_sym__] = ACTIONS(1327), + [544] = { + [anon_sym_RBRACK] = ACTIONS(2099), + [sym_comment] = ACTIONS(54), }, - [235] = { - [sym_for_statement] = STATE(675), - [sym_while_statement] = STATE(675), - [sym_if_statement] = STATE(675), - [sym_case_statement] = STATE(675), - [sym_function_definition] = STATE(675), - [sym_subshell] = STATE(675), - [sym_pipeline] = STATE(675), - [sym_list] = STATE(675), - [sym_command] = STATE(675), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(675), - [sym_variable_assignment] = STATE(676), - [sym_declaration_command] = STATE(675), - [sym_unset_command] = STATE(675), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [545] = { + [sym_file_descriptor] = ACTIONS(2105), + [sym_variable_name] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2107), + [anon_sym_RPAREN] = ACTIONS(2107), + [anon_sym_SEMI_SEMI] = ACTIONS(2107), + [anon_sym_PIPE_AMP] = ACTIONS(2107), + [anon_sym_AMP_AMP] = ACTIONS(2107), + [anon_sym_PIPE_PIPE] = ACTIONS(2107), + [anon_sym_LT] = ACTIONS(2107), + [anon_sym_GT] = ACTIONS(2107), + [anon_sym_GT_GT] = ACTIONS(2107), + [anon_sym_AMP_GT] = ACTIONS(2107), + [anon_sym_AMP_GT_GT] = ACTIONS(2107), + [anon_sym_LT_AMP] = ACTIONS(2107), + [anon_sym_GT_AMP] = ACTIONS(2107), + [sym__special_characters] = ACTIONS(2107), + [anon_sym_DQUOTE] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(2107), + [sym_raw_string] = ACTIONS(2107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2107), + [anon_sym_LT_LPAREN] = ACTIONS(2107), + [anon_sym_GT_LPAREN] = ACTIONS(2107), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_LF] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2107), }, - [236] = { - [sym_for_statement] = STATE(677), - [sym_while_statement] = STATE(677), - [sym_if_statement] = STATE(677), - [sym_case_statement] = STATE(677), - [sym_function_definition] = STATE(677), - [sym_subshell] = STATE(677), - [sym_pipeline] = STATE(677), - [sym_list] = STATE(677), - [sym_command] = STATE(677), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(677), - [sym_variable_assignment] = STATE(678), - [sym_declaration_command] = STATE(677), - [sym_unset_command] = STATE(677), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), + [546] = { + [aux_sym_concatenation_repeat1] = STATE(966), + [sym__concat] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2111), + [sym__special_characters] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_DOLLAR] = ACTIONS(2113), + [sym_raw_string] = ACTIONS(2111), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2111), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2111), + [anon_sym_BQUOTE] = ACTIONS(2111), + [anon_sym_LT_LPAREN] = ACTIONS(2111), + [anon_sym_GT_LPAREN] = ACTIONS(2111), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2111), }, - [237] = { - [sym_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_command] = STATE(679), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(679), - [sym_variable_assignment] = STATE(680), - [sym_declaration_command] = STATE(679), - [sym_unset_command] = STATE(679), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [547] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(968), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), }, - [238] = { - [sym_concatenation] = STATE(689), - [sym_string] = STATE(684), - [sym_simple_expansion] = STATE(684), - [sym_string_expansion] = STATE(684), - [sym_expansion] = STATE(684), - [sym_command_substitution] = STATE(684), - [sym_process_substitution] = STATE(684), - [aux_sym_for_statement_repeat1] = STATE(690), - [sym__special_characters] = ACTIONS(1329), - [anon_sym_DQUOTE] = ACTIONS(1331), - [anon_sym_DOLLAR] = ACTIONS(1333), - [sym_raw_string] = ACTIONS(1335), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1337), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1339), - [anon_sym_BQUOTE] = ACTIONS(1341), - [anon_sym_LT_LPAREN] = ACTIONS(1343), - [anon_sym_GT_LPAREN] = ACTIONS(1343), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1345), + [548] = { + [sym_string] = STATE(970), + [anon_sym_DQUOTE] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(2117), + [sym_raw_string] = ACTIONS(2119), + [anon_sym_POUND] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2121), + [anon_sym_STAR] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2117), + [anon_sym_QMARK] = ACTIONS(2117), + [anon_sym_0] = ACTIONS(2123), + [anon_sym__] = ACTIONS(2123), }, - [239] = { - [sym_do_group] = STATE(692), - [anon_sym_do] = ACTIONS(1347), - [sym_comment] = ACTIONS(56), + [549] = { + [aux_sym_concatenation_repeat1] = STATE(966), + [sym__concat] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2125), + [sym__special_characters] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_DOLLAR] = ACTIONS(2127), + [sym_raw_string] = ACTIONS(2125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2125), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2125), + [anon_sym_BQUOTE] = ACTIONS(2125), + [anon_sym_LT_LPAREN] = ACTIONS(2125), + [anon_sym_GT_LPAREN] = ACTIONS(2125), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2125), }, - [240] = { - [sym__terminated_statement] = STATE(694), - [sym_for_statement] = STATE(695), - [sym_while_statement] = STATE(695), - [sym_if_statement] = STATE(695), - [sym_case_statement] = STATE(695), - [sym_function_definition] = STATE(695), - [sym_subshell] = STATE(695), - [sym_pipeline] = STATE(695), - [sym_list] = STATE(695), - [sym_command] = STATE(695), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(695), - [sym_variable_assignment] = STATE(696), - [sym_declaration_command] = STATE(695), - [sym_unset_command] = STATE(695), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [550] = { + [sym_subscript] = STATE(976), + [sym_variable_name] = ACTIONS(2129), + [anon_sym_DOLLAR] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2131), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_AT] = ACTIONS(2131), + [anon_sym_QMARK] = ACTIONS(2131), + [anon_sym_0] = ACTIONS(2137), + [anon_sym__] = ACTIONS(2137), + }, + [551] = { + [sym_for_statement] = STATE(977), + [sym_while_statement] = STATE(977), + [sym_if_statement] = STATE(977), + [sym_case_statement] = STATE(977), + [sym_function_definition] = STATE(977), + [sym_subshell] = STATE(977), + [sym_pipeline] = STATE(977), + [sym_list] = STATE(977), + [sym_command] = STATE(977), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(977), + [sym_variable_assignment] = STATE(978), + [sym_declaration_command] = STATE(977), + [sym_unset_command] = STATE(977), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [552] = { + [sym_for_statement] = STATE(979), + [sym_while_statement] = STATE(979), + [sym_if_statement] = STATE(979), + [sym_case_statement] = STATE(979), + [sym_function_definition] = STATE(979), + [sym_subshell] = STATE(979), + [sym_pipeline] = STATE(979), + [sym_list] = STATE(979), + [sym_command] = STATE(979), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(979), + [sym_variable_assignment] = STATE(980), + [sym_declaration_command] = STATE(979), + [sym_unset_command] = STATE(979), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), + }, + [553] = { + [sym_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_command] = STATE(981), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(981), + [sym_variable_assignment] = STATE(982), + [sym_declaration_command] = STATE(981), + [sym_unset_command] = STATE(981), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [554] = { + [sym_concatenation] = STATE(984), + [sym_string] = STATE(549), + [sym_simple_expansion] = STATE(549), + [sym_string_expansion] = STATE(549), + [sym_expansion] = STATE(549), + [sym_command_substitution] = STATE(549), + [sym_process_substitution] = STATE(549), + [aux_sym_for_statement_repeat1] = STATE(984), + [anon_sym_RPAREN] = ACTIONS(2139), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(1089), + [sym_raw_string] = ACTIONS(1091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1095), + [anon_sym_BQUOTE] = ACTIONS(1097), + [anon_sym_LT_LPAREN] = ACTIONS(1099), + [anon_sym_GT_LPAREN] = ACTIONS(1099), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1091), + }, + [555] = { + [sym_string] = STATE(985), + [sym_simple_expansion] = STATE(985), + [sym_string_expansion] = STATE(985), + [sym_expansion] = STATE(985), + [sym_command_substitution] = STATE(985), + [sym_process_substitution] = STATE(985), + [sym__special_characters] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(374), + [anon_sym_DOLLAR] = ACTIONS(376), + [sym_raw_string] = ACTIONS(2141), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(384), + [anon_sym_LT_LPAREN] = ACTIONS(386), + [anon_sym_GT_LPAREN] = ACTIONS(386), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2141), + }, + [556] = { + [aux_sym_concatenation_repeat1] = STATE(986), + [sym_file_descriptor] = ACTIONS(688), + [sym__concat] = ACTIONS(1103), + [sym_variable_name] = ACTIONS(688), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(690), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [sym__special_characters] = ACTIONS(690), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(690), + [anon_sym_BQUOTE] = ACTIONS(690), + [anon_sym_LT_LPAREN] = ACTIONS(690), + [anon_sym_GT_LPAREN] = ACTIONS(690), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(690), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), + }, + [557] = { + [sym_file_descriptor] = ACTIONS(692), + [sym__concat] = ACTIONS(692), + [sym_variable_name] = ACTIONS(692), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(694), + [anon_sym_SEMI_SEMI] = ACTIONS(694), + [anon_sym_PIPE_AMP] = ACTIONS(694), + [anon_sym_AMP_AMP] = ACTIONS(694), + [anon_sym_PIPE_PIPE] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_AMP_GT] = ACTIONS(694), + [anon_sym_AMP_GT_GT] = ACTIONS(694), + [anon_sym_LT_AMP] = ACTIONS(694), + [anon_sym_GT_AMP] = ACTIONS(694), + [sym__special_characters] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(694), + [sym_raw_string] = ACTIONS(694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(694), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LT_LPAREN] = ACTIONS(694), + [anon_sym_GT_LPAREN] = ACTIONS(694), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), + }, + [558] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [559] = { + [sym_file_descriptor] = ACTIONS(722), + [sym__concat] = ACTIONS(722), + [sym_variable_name] = ACTIONS(722), + [anon_sym_PIPE] = ACTIONS(724), + [anon_sym_RPAREN] = ACTIONS(724), + [anon_sym_SEMI_SEMI] = ACTIONS(724), + [anon_sym_PIPE_AMP] = ACTIONS(724), + [anon_sym_AMP_AMP] = ACTIONS(724), + [anon_sym_PIPE_PIPE] = ACTIONS(724), + [anon_sym_LT] = ACTIONS(724), + [anon_sym_GT] = ACTIONS(724), + [anon_sym_GT_GT] = ACTIONS(724), + [anon_sym_AMP_GT] = ACTIONS(724), + [anon_sym_AMP_GT_GT] = ACTIONS(724), + [anon_sym_LT_AMP] = ACTIONS(724), + [anon_sym_GT_AMP] = ACTIONS(724), + [sym__special_characters] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(724), + [sym_raw_string] = ACTIONS(724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(724), + [anon_sym_BQUOTE] = ACTIONS(724), + [anon_sym_LT_LPAREN] = ACTIONS(724), + [anon_sym_GT_LPAREN] = ACTIONS(724), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(724), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LF] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(724), + }, + [560] = { + [sym_file_descriptor] = ACTIONS(726), + [sym__concat] = ACTIONS(726), + [sym_variable_name] = ACTIONS(726), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_SEMI_SEMI] = ACTIONS(728), + [anon_sym_PIPE_AMP] = ACTIONS(728), + [anon_sym_AMP_AMP] = ACTIONS(728), + [anon_sym_PIPE_PIPE] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(728), + [anon_sym_GT] = ACTIONS(728), + [anon_sym_GT_GT] = ACTIONS(728), + [anon_sym_AMP_GT] = ACTIONS(728), + [anon_sym_AMP_GT_GT] = ACTIONS(728), + [anon_sym_LT_AMP] = ACTIONS(728), + [anon_sym_GT_AMP] = ACTIONS(728), + [sym__special_characters] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(728), + [anon_sym_DOLLAR] = ACTIONS(728), + [sym_raw_string] = ACTIONS(728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(728), + [anon_sym_BQUOTE] = ACTIONS(728), + [anon_sym_LT_LPAREN] = ACTIONS(728), + [anon_sym_GT_LPAREN] = ACTIONS(728), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(728), + [anon_sym_SEMI] = ACTIONS(728), + [anon_sym_LF] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(728), + }, + [561] = { + [sym_file_descriptor] = ACTIONS(730), + [sym__concat] = ACTIONS(730), + [sym_variable_name] = ACTIONS(730), + [anon_sym_PIPE] = ACTIONS(732), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_SEMI_SEMI] = ACTIONS(732), + [anon_sym_PIPE_AMP] = ACTIONS(732), + [anon_sym_AMP_AMP] = ACTIONS(732), + [anon_sym_PIPE_PIPE] = ACTIONS(732), + [anon_sym_LT] = ACTIONS(732), + [anon_sym_GT] = ACTIONS(732), + [anon_sym_GT_GT] = ACTIONS(732), + [anon_sym_AMP_GT] = ACTIONS(732), + [anon_sym_AMP_GT_GT] = ACTIONS(732), + [anon_sym_LT_AMP] = ACTIONS(732), + [anon_sym_GT_AMP] = ACTIONS(732), + [sym__special_characters] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_DOLLAR] = ACTIONS(732), + [sym_raw_string] = ACTIONS(732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(732), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(732), + [anon_sym_BQUOTE] = ACTIONS(732), + [anon_sym_LT_LPAREN] = ACTIONS(732), + [anon_sym_GT_LPAREN] = ACTIONS(732), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(732), + [anon_sym_SEMI] = ACTIONS(732), + [anon_sym_LF] = ACTIONS(730), + [anon_sym_AMP] = ACTIONS(732), + }, + [562] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(2145), + [sym_comment] = ACTIONS(54), + }, + [563] = { + [sym_concatenation] = STATE(991), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(991), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_EQ] = ACTIONS(2149), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2151), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2153), + [anon_sym_COLON] = ACTIONS(2149), + [anon_sym_COLON_QMARK] = ACTIONS(2149), + [anon_sym_COLON_DASH] = ACTIONS(2149), + [anon_sym_PERCENT] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [564] = { + [sym_subscript] = STATE(995), + [sym_variable_name] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(2157), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2159), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_AT] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_0] = ACTIONS(2161), + [anon_sym__] = ACTIONS(2161), + }, + [565] = { + [sym_concatenation] = STATE(998), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(998), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_EQ] = ACTIONS(2165), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2167), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2169), + [anon_sym_COLON] = ACTIONS(2165), + [anon_sym_COLON_QMARK] = ACTIONS(2165), + [anon_sym_COLON_DASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [566] = { + [sym_concatenation] = STATE(1001), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1001), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_EQ] = ACTIONS(2173), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2175), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2177), + [anon_sym_COLON] = ACTIONS(2173), + [anon_sym_COLON_QMARK] = ACTIONS(2173), + [anon_sym_COLON_DASH] = ACTIONS(2173), + [anon_sym_PERCENT] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [567] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(2179), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [568] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(2179), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [569] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(2179), + [sym_comment] = ACTIONS(54), + }, + [570] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(2179), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [571] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(2181), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [572] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(2181), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [573] = { + [aux_sym_concatenation_repeat1] = STATE(1005), + [sym__concat] = ACTIONS(2183), + [anon_sym_SEMI_SEMI] = ACTIONS(2113), + [sym__special_characters] = ACTIONS(2113), + [anon_sym_DQUOTE] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2113), + [sym_raw_string] = ACTIONS(2113), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2113), + [anon_sym_BQUOTE] = ACTIONS(2113), + [anon_sym_LT_LPAREN] = ACTIONS(2113), + [anon_sym_GT_LPAREN] = ACTIONS(2113), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2113), + [anon_sym_SEMI] = ACTIONS(2113), + [anon_sym_LF] = ACTIONS(2111), + [anon_sym_AMP] = ACTIONS(2113), + }, + [574] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(1007), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [575] = { + [sym_string] = STATE(1009), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_DOLLAR] = ACTIONS(2187), + [sym_raw_string] = ACTIONS(2189), + [anon_sym_POUND] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2187), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_AT] = ACTIONS(2187), + [anon_sym_QMARK] = ACTIONS(2187), + [anon_sym_0] = ACTIONS(2193), + [anon_sym__] = ACTIONS(2193), + }, + [576] = { + [aux_sym_concatenation_repeat1] = STATE(1005), + [sym__concat] = ACTIONS(2183), + [anon_sym_SEMI_SEMI] = ACTIONS(2127), + [sym__special_characters] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(2127), + [anon_sym_DOLLAR] = ACTIONS(2127), + [sym_raw_string] = ACTIONS(2127), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2127), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2127), + [anon_sym_BQUOTE] = ACTIONS(2127), + [anon_sym_LT_LPAREN] = ACTIONS(2127), + [anon_sym_GT_LPAREN] = ACTIONS(2127), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2127), + [anon_sym_SEMI] = ACTIONS(2127), + [anon_sym_LF] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2127), + }, + [577] = { + [sym_subscript] = STATE(1015), + [sym_variable_name] = ACTIONS(2195), + [anon_sym_DOLLAR] = ACTIONS(2197), + [anon_sym_POUND] = ACTIONS(2199), + [anon_sym_DASH] = ACTIONS(2197), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_QMARK] = ACTIONS(2197), + [anon_sym_0] = ACTIONS(2203), + [anon_sym__] = ACTIONS(2203), + }, + [578] = { + [sym_for_statement] = STATE(1016), + [sym_while_statement] = STATE(1016), + [sym_if_statement] = STATE(1016), + [sym_case_statement] = STATE(1016), + [sym_function_definition] = STATE(1016), + [sym_subshell] = STATE(1016), + [sym_pipeline] = STATE(1016), + [sym_list] = STATE(1016), + [sym_command] = STATE(1016), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(1016), + [sym_variable_assignment] = STATE(1017), + [sym_declaration_command] = STATE(1016), + [sym_unset_command] = STATE(1016), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [579] = { + [sym_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_command] = STATE(1018), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(1018), + [sym_variable_assignment] = STATE(1019), + [sym_declaration_command] = STATE(1018), + [sym_unset_command] = STATE(1018), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), + }, + [580] = { + [sym_for_statement] = STATE(1020), + [sym_while_statement] = STATE(1020), + [sym_if_statement] = STATE(1020), + [sym_case_statement] = STATE(1020), + [sym_function_definition] = STATE(1020), + [sym_subshell] = STATE(1020), + [sym_pipeline] = STATE(1020), + [sym_list] = STATE(1020), + [sym_command] = STATE(1020), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(1020), + [sym_variable_assignment] = STATE(1021), + [sym_declaration_command] = STATE(1020), + [sym_unset_command] = STATE(1020), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [581] = { + [sym_concatenation] = STATE(1023), + [sym_string] = STATE(576), + [sym_simple_expansion] = STATE(576), + [sym_string_expansion] = STATE(576), + [sym_expansion] = STATE(576), + [sym_command_substitution] = STATE(576), + [sym_process_substitution] = STATE(576), + [aux_sym_for_statement_repeat1] = STATE(1023), + [anon_sym_SEMI_SEMI] = ACTIONS(2205), + [sym__special_characters] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(1131), + [sym_raw_string] = ACTIONS(2211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2215), + [anon_sym_BQUOTE] = ACTIONS(2217), + [anon_sym_LT_LPAREN] = ACTIONS(2219), + [anon_sym_GT_LPAREN] = ACTIONS(2219), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2211), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_LF] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2205), + }, + [582] = { + [sym__terminated_statement] = STATE(1025), + [sym_for_statement] = STATE(585), + [sym_while_statement] = STATE(585), + [sym_if_statement] = STATE(585), + [sym_case_statement] = STATE(585), + [sym_function_definition] = STATE(585), + [sym_subshell] = STATE(585), + [sym_pipeline] = STATE(585), + [sym_list] = STATE(585), + [sym_command] = STATE(585), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(585), + [sym_variable_assignment] = STATE(586), + [sym_declaration_command] = STATE(585), + [sym_unset_command] = STATE(585), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), [sym_string] = STATE(18), [sym_simple_expansion] = STATE(18), [sym_string_expansion] = STATE(18), [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(697), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(1349), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [aux_sym_program_repeat1] = STATE(1025), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_done] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), }, - [241] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(698), - [sym_file_descriptor] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(1351), - [anon_sym_SEMI_SEMI] = ACTIONS(1351), - [anon_sym_PIPE_AMP] = ACTIONS(1351), - [anon_sym_AMP_AMP] = ACTIONS(1351), - [anon_sym_PIPE_PIPE] = ACTIONS(1351), - [anon_sym_LT] = ACTIONS(358), - [anon_sym_GT] = ACTIONS(358), - [anon_sym_GT_GT] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(358), - [anon_sym_AMP_GT_GT] = ACTIONS(358), - [anon_sym_LT_AMP] = ACTIONS(358), - [anon_sym_GT_AMP] = ACTIONS(358), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(362), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_LF] = ACTIONS(1351), - [anon_sym_AMP] = ACTIONS(1351), + [583] = { + [anon_sym_esac] = ACTIONS(2225), + [anon_sym_PIPE] = ACTIONS(2225), + [anon_sym_RPAREN] = ACTIONS(2225), + [anon_sym_SEMI_SEMI] = ACTIONS(2225), + [anon_sym_PIPE_AMP] = ACTIONS(2225), + [anon_sym_AMP_AMP] = ACTIONS(2225), + [anon_sym_PIPE_PIPE] = ACTIONS(2225), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_LF] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2225), }, - [242] = { - [anon_sym_do] = ACTIONS(1102), - [anon_sym_then] = ACTIONS(1102), - [sym_comment] = ACTIONS(56), + [584] = { + [sym_file_descriptor] = ACTIONS(2229), + [anon_sym_esac] = ACTIONS(2231), + [anon_sym_PIPE] = ACTIONS(2231), + [anon_sym_RPAREN] = ACTIONS(2231), + [anon_sym_SEMI_SEMI] = ACTIONS(2231), + [anon_sym_PIPE_AMP] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2231), + [anon_sym_GT] = ACTIONS(2231), + [anon_sym_GT_GT] = ACTIONS(2231), + [anon_sym_AMP_GT] = ACTIONS(2231), + [anon_sym_AMP_GT_GT] = ACTIONS(2231), + [anon_sym_LT_AMP] = ACTIONS(2231), + [anon_sym_GT_AMP] = ACTIONS(2231), + [anon_sym_LT_LT] = ACTIONS(2231), + [anon_sym_LT_LT_DASH] = ACTIONS(2231), + [anon_sym_LT_LT_LT] = ACTIONS(2231), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_LF] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), }, - [243] = { - [sym__terminated_statement] = STATE(702), - [sym_for_statement] = STATE(703), - [sym_while_statement] = STATE(703), - [sym_if_statement] = STATE(703), - [sym_elif_clause] = STATE(704), - [sym_else_clause] = STATE(705), - [sym_case_statement] = STATE(703), - [sym_function_definition] = STATE(703), - [sym_subshell] = STATE(703), - [sym_pipeline] = STATE(703), - [sym_list] = STATE(703), - [sym_command] = STATE(703), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(703), - [sym_variable_assignment] = STATE(706), - [sym_declaration_command] = STATE(703), - [sym_unset_command] = STATE(703), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [585] = { + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(2233), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_LF] = ACTIONS(2235), + [anon_sym_AMP] = ACTIONS(2233), + }, + [586] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(2233), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_LF] = ACTIONS(2235), + [anon_sym_AMP] = ACTIONS(2233), + }, + [587] = { + [sym__terminated_statement] = STATE(1028), + [sym_for_statement] = STATE(585), + [sym_while_statement] = STATE(585), + [sym_if_statement] = STATE(585), + [sym_case_statement] = STATE(585), + [sym_function_definition] = STATE(585), + [sym_subshell] = STATE(585), + [sym_pipeline] = STATE(585), + [sym_list] = STATE(585), + [sym_command] = STATE(585), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(585), + [sym_variable_assignment] = STATE(586), + [sym_declaration_command] = STATE(585), + [sym_unset_command] = STATE(585), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), [sym_string] = STATE(18), [sym_simple_expansion] = STATE(18), [sym_string_expansion] = STATE(18), [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(707), - [aux_sym_if_statement_repeat1] = STATE(708), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(1353), - [anon_sym_elif] = ACTIONS(1355), - [anon_sym_else] = ACTIONS(1357), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [aux_sym_program_repeat1] = STATE(1028), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_done] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), }, - [244] = { - [sym_string] = STATE(709), - [sym_simple_expansion] = STATE(709), - [sym_string_expansion] = STATE(709), - [sym_expansion] = STATE(709), - [sym_command_substitution] = STATE(709), - [sym_process_substitution] = STATE(709), - [sym__special_characters] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(72), - [anon_sym_DOLLAR] = ACTIONS(74), - [sym_raw_string] = ACTIONS(1361), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(78), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(80), - [anon_sym_BQUOTE] = ACTIONS(82), - [anon_sym_LT_LPAREN] = ACTIONS(84), - [anon_sym_GT_LPAREN] = ACTIONS(84), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1359), + [588] = { + [sym_file_redirect] = STATE(534), + [sym_heredoc_redirect] = STATE(534), + [sym_herestring_redirect] = STATE(534), + [aux_sym_while_statement_repeat1] = STATE(534), + [sym_file_descriptor] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(2239), + [anon_sym_SEMI_SEMI] = ACTIONS(2239), + [anon_sym_PIPE_AMP] = ACTIONS(2239), + [anon_sym_AMP_AMP] = ACTIONS(2239), + [anon_sym_PIPE_PIPE] = ACTIONS(2239), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(328), + [anon_sym_GT_GT] = ACTIONS(328), + [anon_sym_AMP_GT] = ACTIONS(328), + [anon_sym_AMP_GT_GT] = ACTIONS(328), + [anon_sym_LT_AMP] = ACTIONS(328), + [anon_sym_GT_AMP] = ACTIONS(328), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(332), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_LF] = ACTIONS(2241), + [anon_sym_AMP] = ACTIONS(2239), }, - [245] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1363), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_LF] = ACTIONS(1363), - [anon_sym_AMP] = ACTIONS(1363), + [589] = { + [anon_sym_esac] = ACTIONS(2243), + [anon_sym_PIPE] = ACTIONS(2243), + [anon_sym_RPAREN] = ACTIONS(2243), + [anon_sym_SEMI_SEMI] = ACTIONS(2243), + [anon_sym_PIPE_AMP] = ACTIONS(2243), + [anon_sym_AMP_AMP] = ACTIONS(2243), + [anon_sym_PIPE_PIPE] = ACTIONS(2243), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_LF] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2243), }, - [246] = { - [anon_sym_in] = ACTIONS(1365), - [sym_comment] = ACTIONS(56), - }, - [247] = { - [aux_sym_concatenation_repeat1] = STATE(712), - [sym__concat] = ACTIONS(454), - [anon_sym_in] = ACTIONS(792), - [anon_sym_SEMI_SEMI] = ACTIONS(792), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LF] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(792), - }, - [248] = { - [sym__concat] = ACTIONS(794), - [anon_sym_in] = ACTIONS(796), - [anon_sym_SEMI_SEMI] = ACTIONS(796), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_LF] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - }, - [249] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(1367), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [250] = { - [sym__concat] = ACTIONS(826), - [anon_sym_in] = ACTIONS(828), - [anon_sym_SEMI_SEMI] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(828), - }, - [251] = { - [sym__concat] = ACTIONS(830), - [anon_sym_in] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(832), - [anon_sym_AMP] = ACTIONS(832), - }, - [252] = { - [sym__concat] = ACTIONS(834), - [anon_sym_in] = ACTIONS(836), - [anon_sym_SEMI_SEMI] = ACTIONS(836), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(836), - }, - [253] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1369), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_LF] = ACTIONS(1369), - [anon_sym_AMP] = ACTIONS(1369), - }, - [254] = { - [anon_sym_in] = ACTIONS(1371), - [sym_comment] = ACTIONS(56), - }, - [255] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(1373), - [sym_comment] = ACTIONS(56), - }, - [256] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(719), - [anon_sym_RBRACE] = ACTIONS(1375), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1377), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [257] = { - [sym_subscript] = STATE(723), - [sym_variable_name] = ACTIONS(1379), - [anon_sym_DOLLAR] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1381), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_AT] = ACTIONS(1381), - [anon_sym_QMARK] = ACTIONS(1381), - [anon_sym_0] = ACTIONS(1385), - [anon_sym__] = ACTIONS(1385), - }, - [258] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(726), - [anon_sym_RBRACE] = ACTIONS(1387), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1389), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [259] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(729), - [anon_sym_RBRACE] = ACTIONS(1391), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1393), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [260] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1395), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [261] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1395), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [262] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(1395), - [sym_comment] = ACTIONS(56), - }, - [263] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(1395), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [264] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1397), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [265] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1397), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [266] = { - [anon_sym_RPAREN] = ACTIONS(1399), - [sym_comment] = ACTIONS(56), - }, - [267] = { - [sym__terminated_statement] = STATE(734), - [sym_for_statement] = STATE(735), - [sym_while_statement] = STATE(735), - [sym_if_statement] = STATE(735), - [sym_case_statement] = STATE(735), - [sym_function_definition] = STATE(735), - [sym_subshell] = STATE(735), - [sym_pipeline] = STATE(735), - [sym_list] = STATE(735), - [sym_command] = STATE(735), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(735), - [sym_variable_assignment] = STATE(736), - [sym_declaration_command] = STATE(735), - [sym_unset_command] = STATE(735), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [590] = { + [sym__terminated_statement] = STATE(1029), + [sym_for_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_case_statement] = STATE(38), + [sym_function_definition] = STATE(38), + [sym_subshell] = STATE(38), + [sym_pipeline] = STATE(38), + [sym_list] = STATE(38), + [sym_command] = STATE(38), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(38), + [sym_variable_assignment] = STATE(39), + [sym_declaration_command] = STATE(38), + [sym_unset_command] = STATE(38), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), [sym_string] = STATE(18), [sym_simple_expansion] = STATE(18), [sym_string_expansion] = STATE(18), [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(737), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), }, - [268] = { - [sym_file_redirect] = STATE(740), - [sym_file_descriptor] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_SEMI_SEMI] = ACTIONS(1405), - [anon_sym_PIPE_AMP] = ACTIONS(1405), - [anon_sym_AMP_AMP] = ACTIONS(1405), - [anon_sym_PIPE_PIPE] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(1407), - [anon_sym_GT] = ACTIONS(1407), - [anon_sym_GT_GT] = ACTIONS(1407), - [anon_sym_AMP_GT] = ACTIONS(1407), - [anon_sym_AMP_GT_GT] = ACTIONS(1407), - [anon_sym_LT_AMP] = ACTIONS(1407), - [anon_sym_GT_AMP] = ACTIONS(1407), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_LF] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1405), + [591] = { + [sym__terminated_statement] = STATE(1032), + [sym_for_statement] = STATE(1030), + [sym_while_statement] = STATE(1030), + [sym_if_statement] = STATE(1030), + [sym_case_statement] = STATE(1030), + [sym_function_definition] = STATE(1030), + [sym_subshell] = STATE(1030), + [sym_pipeline] = STATE(1030), + [sym_list] = STATE(1030), + [sym_command] = STATE(1030), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(1030), + [sym_variable_assignment] = STATE(1031), + [sym_declaration_command] = STATE(1030), + [sym_unset_command] = STATE(1030), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1032), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_fi] = ACTIONS(2247), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), }, - [269] = { - [sym_concatenation] = STATE(228), - [sym_string] = STATE(744), - [sym_array] = STATE(228), - [sym_simple_expansion] = STATE(744), - [sym_string_expansion] = STATE(744), - [sym_expansion] = STATE(744), - [sym_command_substitution] = STATE(744), - [sym_process_substitution] = STATE(744), - [sym__empty_value] = ACTIONS(418), - [anon_sym_LPAREN] = ACTIONS(420), - [sym__special_characters] = ACTIONS(1409), - [anon_sym_DQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1413), - [sym_raw_string] = ACTIONS(1415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1419), - [anon_sym_BQUOTE] = ACTIONS(1421), - [anon_sym_LT_LPAREN] = ACTIONS(1423), - [anon_sym_GT_LPAREN] = ACTIONS(1423), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1425), + [592] = { + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(2249), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_LF] = ACTIONS(2251), + [anon_sym_AMP] = ACTIONS(2249), }, - [270] = { - [sym_do_group] = STATE(749), - [anon_sym_do] = ACTIONS(448), - [sym_comment] = ACTIONS(56), + [593] = { + [anon_sym_fi] = ACTIONS(2253), + [sym_comment] = ACTIONS(54), }, - [271] = { - [sym_compound_statement] = STATE(751), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(56), + [594] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(2249), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_LF] = ACTIONS(2251), + [anon_sym_AMP] = ACTIONS(2249), }, - [272] = { - [sym_concatenation] = STATE(84), - [sym_string] = STATE(79), - [sym_simple_expansion] = STATE(79), - [sym_string_expansion] = STATE(79), - [sym_expansion] = STATE(79), - [sym_command_substitution] = STATE(79), - [sym_process_substitution] = STATE(79), - [aux_sym_command_repeat2] = STATE(351), - [anon_sym_EQ_TILDE] = ACTIONS(122), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_RBRACK] = ACTIONS(1429), - [sym__special_characters] = ACTIONS(640), - [anon_sym_DQUOTE] = ACTIONS(126), - [anon_sym_DOLLAR] = ACTIONS(128), - [sym_raw_string] = ACTIONS(130), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), - [anon_sym_BQUOTE] = ACTIONS(136), - [anon_sym_LT_LPAREN] = ACTIONS(138), - [anon_sym_GT_LPAREN] = ACTIONS(138), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(140), + [595] = { + [sym__terminated_statement] = STATE(1036), + [sym_for_statement] = STATE(592), + [sym_while_statement] = STATE(592), + [sym_if_statement] = STATE(592), + [sym_elif_clause] = STATE(1037), + [sym_else_clause] = STATE(1035), + [sym_case_statement] = STATE(592), + [sym_function_definition] = STATE(592), + [sym_subshell] = STATE(592), + [sym_pipeline] = STATE(592), + [sym_list] = STATE(592), + [sym_command] = STATE(592), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(592), + [sym_variable_assignment] = STATE(594), + [sym_declaration_command] = STATE(592), + [sym_unset_command] = STATE(592), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1036), + [aux_sym_if_statement_repeat1] = STATE(1037), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_fi] = ACTIONS(2255), + [anon_sym_elif] = ACTIONS(1153), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), }, - [273] = { - [sym_concatenation] = STATE(95), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_string_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat2] = STATE(373), - [anon_sym_EQ_TILDE] = ACTIONS(142), - [anon_sym_EQ_EQ] = ACTIONS(142), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1429), - [sym__special_characters] = ACTIONS(682), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(148), - [sym_raw_string] = ACTIONS(150), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(156), - [anon_sym_LT_LPAREN] = ACTIONS(158), - [anon_sym_GT_LPAREN] = ACTIONS(158), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(160), + [596] = { + [sym_elif_clause] = STATE(1038), + [sym_else_clause] = STATE(1035), + [aux_sym_if_statement_repeat1] = STATE(1038), + [anon_sym_fi] = ACTIONS(2253), + [anon_sym_elif] = ACTIONS(2257), + [anon_sym_else] = ACTIONS(2259), + [sym_comment] = ACTIONS(54), }, - [274] = { - [sym__assignment] = STATE(375), - [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(1431), - [anon_sym_PLUS_EQ] = ACTIONS(1431), - [sym_comment] = ACTIONS(56), + [597] = { + [sym__concat] = ACTIONS(1634), + [anon_sym_in] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), }, - [275] = { - [aux_sym_concatenation_repeat1] = STATE(755), - [sym__concat] = ACTIONS(1433), + [598] = { + [sym_case_item] = STATE(1044), + [sym_last_case_item] = STATE(1042), + [sym_concatenation] = STATE(1043), + [sym_string] = STATE(1041), + [sym_simple_expansion] = STATE(1041), + [sym_string_expansion] = STATE(1041), + [sym_expansion] = STATE(1041), + [sym_command_substitution] = STATE(1041), + [sym_process_substitution] = STATE(1041), + [aux_sym_case_statement_repeat1] = STATE(1044), + [anon_sym_esac] = ACTIONS(2261), + [sym__special_characters] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(2265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2267), + }, + [599] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2269), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2269), + [anon_sym_LF] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2269), + }, + [600] = { + [aux_sym_concatenation_repeat1] = STATE(600), + [sym__concat] = ACTIONS(2273), + [anon_sym_in] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [601] = { + [sym__concat] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + }, + [602] = { + [sym_case_item] = STATE(1048), + [sym_last_case_item] = STATE(1047), + [sym_concatenation] = STATE(1043), + [sym_string] = STATE(1041), + [sym_simple_expansion] = STATE(1041), + [sym_string_expansion] = STATE(1041), + [sym_expansion] = STATE(1041), + [sym_command_substitution] = STATE(1041), + [sym_process_substitution] = STATE(1041), + [aux_sym_case_statement_repeat1] = STATE(1048), + [anon_sym_esac] = ACTIONS(2276), + [sym__special_characters] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(2265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2267), + }, + [603] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2278), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2278), + [anon_sym_LF] = ACTIONS(2280), + [anon_sym_AMP] = ACTIONS(2278), + }, + [604] = { + [sym_concatenation] = STATE(1053), + [sym_string] = STATE(1052), + [sym_simple_expansion] = STATE(1052), + [sym_string_expansion] = STATE(1052), + [sym_expansion] = STATE(1052), + [sym_command_substitution] = STATE(1052), + [sym_process_substitution] = STATE(1052), + [anon_sym_RBRACE] = ACTIONS(2282), + [sym__special_characters] = ACTIONS(2284), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(2286), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2286), + }, + [605] = { + [sym__concat] = ACTIONS(1724), + [anon_sym_in] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LF] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1726), + }, + [606] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2288), + }, + [607] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2290), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [608] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(2292), + [sym_comment] = ACTIONS(54), + }, + [609] = { + [sym_concatenation] = STATE(1059), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1059), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_EQ] = ACTIONS(2296), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2298), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2300), + [anon_sym_COLON] = ACTIONS(2296), + [anon_sym_COLON_QMARK] = ACTIONS(2296), + [anon_sym_COLON_DASH] = ACTIONS(2296), + [anon_sym_PERCENT] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [610] = { + [sym_concatenation] = STATE(1062), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1062), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_EQ] = ACTIONS(2304), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2308), + [anon_sym_COLON] = ACTIONS(2304), + [anon_sym_COLON_QMARK] = ACTIONS(2304), + [anon_sym_COLON_DASH] = ACTIONS(2304), + [anon_sym_PERCENT] = ACTIONS(2304), + [anon_sym_DASH] = ACTIONS(2304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [611] = { + [sym_concatenation] = STATE(1064), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1064), + [anon_sym_RBRACE] = ACTIONS(2282), + [anon_sym_EQ] = ACTIONS(2310), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2314), + [anon_sym_COLON] = ACTIONS(2310), + [anon_sym_COLON_QMARK] = ACTIONS(2310), + [anon_sym_COLON_DASH] = ACTIONS(2310), + [anon_sym_PERCENT] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [612] = { + [sym__concat] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1792), + [anon_sym_SEMI_SEMI] = ACTIONS(1792), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_LF] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1792), + }, + [613] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2316), + }, + [614] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [615] = { + [sym__concat] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_SEMI_SEMI] = ACTIONS(1800), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_LF] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1800), + }, + [616] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2320), + }, + [617] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2282), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [618] = { + [sym__concat] = ACTIONS(1936), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_SEMI_SEMI] = ACTIONS(1938), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1938), + }, + [619] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_in] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2002), + }, + [620] = { + [sym_compound_statement] = STATE(1068), + [anon_sym_LBRACE] = ACTIONS(442), + [sym_comment] = ACTIONS(54), + }, + [621] = { + [sym_file_descriptor] = ACTIONS(2322), + [anon_sym_esac] = ACTIONS(2324), + [anon_sym_PIPE] = ACTIONS(2324), + [anon_sym_RPAREN] = ACTIONS(2324), + [anon_sym_SEMI_SEMI] = ACTIONS(2324), + [anon_sym_PIPE_AMP] = ACTIONS(2324), + [anon_sym_AMP_AMP] = ACTIONS(2324), + [anon_sym_PIPE_PIPE] = ACTIONS(2324), + [anon_sym_LT] = ACTIONS(2324), + [anon_sym_GT] = ACTIONS(2324), + [anon_sym_GT_GT] = ACTIONS(2324), + [anon_sym_AMP_GT] = ACTIONS(2324), + [anon_sym_AMP_GT_GT] = ACTIONS(2324), + [anon_sym_LT_AMP] = ACTIONS(2324), + [anon_sym_GT_AMP] = ACTIONS(2324), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2324), + [anon_sym_LF] = ACTIONS(2322), + [anon_sym_AMP] = ACTIONS(2324), + }, + [622] = { + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(2326), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2326), + [anon_sym_LF] = ACTIONS(2328), + [anon_sym_AMP] = ACTIONS(2326), + }, + [623] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(2326), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(2326), + [anon_sym_LF] = ACTIONS(2328), + [anon_sym_AMP] = ACTIONS(2326), + }, + [624] = { + [sym__terminated_statement] = STATE(1071), + [sym_for_statement] = STATE(622), + [sym_while_statement] = STATE(622), + [sym_if_statement] = STATE(622), + [sym_case_statement] = STATE(622), + [sym_function_definition] = STATE(622), + [sym_subshell] = STATE(622), + [sym_pipeline] = STATE(622), + [sym_list] = STATE(622), + [sym_command] = STATE(622), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(622), + [sym_variable_assignment] = STATE(623), + [sym_declaration_command] = STATE(622), + [sym_unset_command] = STATE(622), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1071), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(2330), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [625] = { + [anon_sym_LT] = ACTIONS(2332), + [anon_sym_GT] = ACTIONS(2332), + [anon_sym_GT_GT] = ACTIONS(2334), + [anon_sym_AMP_GT] = ACTIONS(2332), + [anon_sym_AMP_GT_GT] = ACTIONS(2334), + [anon_sym_LT_AMP] = ACTIONS(2334), + [anon_sym_GT_AMP] = ACTIONS(2334), + [sym_comment] = ACTIONS(54), + }, + [626] = { + [sym_concatenation] = STATE(1075), + [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), + [sym__special_characters] = ACTIONS(2336), + [anon_sym_DQUOTE] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(178), + [sym_raw_string] = ACTIONS(2338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1517), + [anon_sym_LT_LPAREN] = ACTIONS(1519), + [anon_sym_GT_LPAREN] = ACTIONS(1519), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2338), + }, + [627] = { + [anon_sym_esac] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_SEMI_SEMI] = ACTIONS(2340), + [anon_sym_PIPE_AMP] = ACTIONS(2340), + [anon_sym_AMP_AMP] = ACTIONS(2340), + [anon_sym_PIPE_PIPE] = ACTIONS(2340), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_LF] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2340), + }, + [628] = { + [aux_sym_concatenation_repeat1] = STATE(1076), + [sym_file_descriptor] = ACTIONS(1101), + [sym__concat] = ACTIONS(1103), + [sym_variable_name] = ACTIONS(1101), + [anon_sym_PIPE] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(1105), + [anon_sym_SEMI_SEMI] = ACTIONS(1105), + [anon_sym_PIPE_AMP] = ACTIONS(1105), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE_PIPE] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(1105), + [anon_sym_GT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1105), + [anon_sym_AMP_GT] = ACTIONS(1105), + [anon_sym_AMP_GT_GT] = ACTIONS(1105), + [anon_sym_LT_AMP] = ACTIONS(1105), + [anon_sym_GT_AMP] = ACTIONS(1105), + [sym__special_characters] = ACTIONS(1105), + [anon_sym_DQUOTE] = ACTIONS(1105), + [anon_sym_DOLLAR] = ACTIONS(1105), + [sym_raw_string] = ACTIONS(1105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1105), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), + [anon_sym_BQUOTE] = ACTIONS(1105), + [anon_sym_LT_LPAREN] = ACTIONS(1105), + [anon_sym_GT_LPAREN] = ACTIONS(1105), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(1105), + [anon_sym_LF] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1105), + }, + [629] = { + [aux_sym_concatenation_repeat1] = STATE(1076), + [sym_file_descriptor] = ACTIONS(1079), + [sym__concat] = ACTIONS(1103), + [sym_variable_name] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_RPAREN] = ACTIONS(1081), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1081), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1081), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1081), + [anon_sym_LF] = ACTIONS(1079), + [anon_sym_AMP] = ACTIONS(1081), + }, + [630] = { + [sym_file_redirect] = STATE(1077), + [sym_heredoc_redirect] = STATE(1077), + [sym_herestring_redirect] = STATE(1077), + [aux_sym_while_statement_repeat1] = STATE(1077), + [sym_file_descriptor] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(1147), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_SEMI_SEMI] = ACTIONS(1147), + [anon_sym_PIPE_AMP] = ACTIONS(1147), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_LT] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(474), + [anon_sym_GT_GT] = ACTIONS(474), + [anon_sym_AMP_GT] = ACTIONS(474), + [anon_sym_AMP_GT_GT] = ACTIONS(474), + [anon_sym_LT_AMP] = ACTIONS(474), + [anon_sym_GT_AMP] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(476), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_LF] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1147), + }, + [631] = { + [anon_sym_RPAREN] = ACTIONS(2344), + [sym_comment] = ACTIONS(54), + }, + [632] = { + [sym_file_redirect] = STATE(627), + [sym_file_descriptor] = ACTIONS(2346), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_RPAREN] = ACTIONS(1217), + [anon_sym_SEMI_SEMI] = ACTIONS(1217), + [anon_sym_PIPE_AMP] = ACTIONS(1217), + [anon_sym_AMP_AMP] = ACTIONS(1217), + [anon_sym_PIPE_PIPE] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(2348), + [anon_sym_GT] = ACTIONS(2348), + [anon_sym_GT_GT] = ACTIONS(2348), + [anon_sym_AMP_GT] = ACTIONS(2348), + [anon_sym_AMP_GT_GT] = ACTIONS(2348), + [anon_sym_LT_AMP] = ACTIONS(2348), + [anon_sym_GT_AMP] = ACTIONS(2348), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1217), + }, + [633] = { + [sym_file_redirect] = STATE(1081), + [sym_heredoc_redirect] = STATE(1081), + [sym_herestring_redirect] = STATE(1081), + [aux_sym_while_statement_repeat1] = STATE(1081), + [sym_file_descriptor] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_RPAREN] = ACTIONS(1313), + [anon_sym_SEMI_SEMI] = ACTIONS(1313), + [anon_sym_PIPE_AMP] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(474), + [anon_sym_GT_GT] = ACTIONS(474), + [anon_sym_AMP_GT] = ACTIONS(474), + [anon_sym_AMP_GT_GT] = ACTIONS(474), + [anon_sym_LT_AMP] = ACTIONS(474), + [anon_sym_GT_AMP] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(476), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LF] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1313), + }, + [634] = { + [sym_concatenation] = STATE(695), + [sym_string] = STATE(1083), + [sym_array] = STATE(695), + [sym_simple_expansion] = STATE(1083), + [sym_string_expansion] = STATE(1083), + [sym_expansion] = STATE(1083), + [sym_command_substitution] = STATE(1083), + [sym_process_substitution] = STATE(1083), + [sym__empty_value] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1421), + [sym__special_characters] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_DOLLAR] = ACTIONS(154), + [sym_raw_string] = ACTIONS(2352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1427), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1429), + [anon_sym_BQUOTE] = ACTIONS(1431), + [anon_sym_LT_LPAREN] = ACTIONS(1433), + [anon_sym_GT_LPAREN] = ACTIONS(1433), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2352), + }, + [635] = { + [aux_sym_concatenation_repeat1] = STATE(1084), + [sym__concat] = ACTIONS(576), [sym_variable_name] = ACTIONS(688), [anon_sym_PIPE] = ACTIONS(690), [anon_sym_RPAREN] = ACTIONS(690), @@ -19491,1305 +26886,30019 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(690), [anon_sym_LT_LPAREN] = ACTIONS(690), [anon_sym_GT_LPAREN] = ACTIONS(690), - [sym_comment] = ACTIONS(182), + [sym_comment] = ACTIONS(166), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(690), [sym_word] = ACTIONS(690), [anon_sym_SEMI] = ACTIONS(690), - [anon_sym_LF] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(688), [anon_sym_AMP] = ACTIONS(690), }, - [276] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(757), - [anon_sym_DQUOTE] = ACTIONS(1435), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), + [636] = { + [sym_variable_assignment] = STATE(636), + [sym_subscript] = STATE(254), + [sym_concatenation] = STATE(636), + [sym_string] = STATE(253), + [sym_simple_expansion] = STATE(253), + [sym_string_expansion] = STATE(253), + [sym_expansion] = STATE(253), + [sym_command_substitution] = STATE(253), + [sym_process_substitution] = STATE(253), + [aux_sym_declaration_command_repeat1] = STATE(636), + [sym_variable_name] = ACTIONS(2354), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_RPAREN] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), + [anon_sym_PIPE_AMP] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1480), + [sym__special_characters] = ACTIONS(2357), + [anon_sym_DQUOTE] = ACTIONS(1485), + [anon_sym_DOLLAR] = ACTIONS(1488), + [sym_raw_string] = ACTIONS(2360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1494), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1497), + [anon_sym_BQUOTE] = ACTIONS(1500), + [anon_sym_LT_LPAREN] = ACTIONS(1503), + [anon_sym_GT_LPAREN] = ACTIONS(1503), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1506), + [sym_word] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_LF] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1480), }, - [277] = { - [sym_string] = STATE(759), - [anon_sym_DQUOTE] = ACTIONS(1437), - [anon_sym_DOLLAR] = ACTIONS(1439), - [sym_raw_string] = ACTIONS(1441), - [anon_sym_POUND] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1439), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_AT] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1439), - [anon_sym_0] = ACTIONS(1445), - [anon_sym__] = ACTIONS(1445), + [637] = { + [aux_sym_concatenation_repeat1] = STATE(1085), + [sym__concat] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(690), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [sym__special_characters] = ACTIONS(690), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(690), + [anon_sym_BQUOTE] = ACTIONS(690), + [anon_sym_LT_LPAREN] = ACTIONS(690), + [anon_sym_GT_LPAREN] = ACTIONS(690), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(690), + [sym_word] = ACTIONS(690), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), }, - [278] = { - [aux_sym_concatenation_repeat1] = STATE(755), - [sym__concat] = ACTIONS(1433), - [sym_variable_name] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_SEMI_SEMI] = ACTIONS(706), - [anon_sym_PIPE_AMP] = ACTIONS(706), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE_PIPE] = ACTIONS(706), - [sym__special_characters] = ACTIONS(706), - [anon_sym_DQUOTE] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(706), - [sym_raw_string] = ACTIONS(706), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(706), - [anon_sym_BQUOTE] = ACTIONS(706), - [anon_sym_LT_LPAREN] = ACTIONS(706), - [anon_sym_GT_LPAREN] = ACTIONS(706), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(706), - [sym_word] = ACTIONS(706), - [anon_sym_SEMI] = ACTIONS(706), - [anon_sym_LF] = ACTIONS(706), - [anon_sym_AMP] = ACTIONS(706), + [638] = { + [sym_concatenation] = STATE(638), + [sym_string] = STATE(257), + [sym_simple_expansion] = STATE(257), + [sym_string_expansion] = STATE(257), + [sym_expansion] = STATE(257), + [sym_command_substitution] = STATE(257), + [sym_process_substitution] = STATE(257), + [aux_sym_unset_command_repeat1] = STATE(638), + [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(2363), + [anon_sym_DQUOTE] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1569), + [sym_raw_string] = ACTIONS(2366), + [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(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1587), + [sym_word] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_LF] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(1561), }, - [279] = { - [sym_subscript] = STATE(765), - [sym_variable_name] = ACTIONS(1447), - [anon_sym_DOLLAR] = ACTIONS(1449), - [anon_sym_POUND] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1449), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_AT] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1449), - [anon_sym_0] = ACTIONS(1455), - [anon_sym__] = ACTIONS(1455), + [639] = { + [aux_sym_concatenation_repeat1] = STATE(639), + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(1638), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_EQ_TILDE] = ACTIONS(1636), + [anon_sym_EQ_EQ] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1636), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1636), + [anon_sym_LT_AMP] = ACTIONS(1636), + [anon_sym_GT_AMP] = ACTIONS(1636), + [anon_sym_LT_LT] = ACTIONS(1636), + [anon_sym_LT_LT_DASH] = ACTIONS(1636), + [anon_sym_LT_LT_LT] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), }, - [280] = { - [sym_for_statement] = STATE(766), - [sym_while_statement] = STATE(766), - [sym_if_statement] = STATE(766), - [sym_case_statement] = STATE(766), - [sym_function_definition] = STATE(766), - [sym_subshell] = STATE(766), - [sym_pipeline] = STATE(766), - [sym_list] = STATE(766), - [sym_command] = STATE(766), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(766), - [sym_variable_assignment] = STATE(767), - [sym_declaration_command] = STATE(766), - [sym_unset_command] = STATE(766), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [640] = { + [sym_compound_statement] = STATE(1086), + [anon_sym_LBRACE] = ACTIONS(442), + [sym_comment] = ACTIONS(54), }, - [281] = { - [sym_for_statement] = STATE(768), - [sym_while_statement] = STATE(768), - [sym_if_statement] = STATE(768), - [sym_case_statement] = STATE(768), - [sym_function_definition] = STATE(768), - [sym_subshell] = STATE(768), - [sym_pipeline] = STATE(768), - [sym_list] = STATE(768), - [sym_command] = STATE(768), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(768), - [sym_variable_assignment] = STATE(769), - [sym_declaration_command] = STATE(768), - [sym_unset_command] = STATE(768), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), + [641] = { + [anon_sym_esac] = ACTIONS(2369), + [anon_sym_PIPE] = ACTIONS(2369), + [anon_sym_RPAREN] = ACTIONS(2369), + [anon_sym_SEMI_SEMI] = ACTIONS(2369), + [anon_sym_PIPE_AMP] = ACTIONS(2369), + [anon_sym_AMP_AMP] = ACTIONS(2369), + [anon_sym_PIPE_PIPE] = ACTIONS(2369), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2369), + [anon_sym_LF] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2369), }, - [282] = { - [sym_for_statement] = STATE(770), - [sym_while_statement] = STATE(770), - [sym_if_statement] = STATE(770), - [sym_case_statement] = STATE(770), - [sym_function_definition] = STATE(770), - [sym_subshell] = STATE(770), - [sym_pipeline] = STATE(770), - [sym_list] = STATE(770), - [sym_command] = STATE(770), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(770), - [sym_variable_assignment] = STATE(771), - [sym_declaration_command] = STATE(770), - [sym_unset_command] = STATE(770), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [642] = { + [anon_sym_PIPE] = ACTIONS(460), + [anon_sym_RPAREN] = ACTIONS(2008), + [anon_sym_SEMI_SEMI] = ACTIONS(2008), + [anon_sym_PIPE_AMP] = ACTIONS(460), + [anon_sym_AMP_AMP] = ACTIONS(2008), + [anon_sym_PIPE_PIPE] = ACTIONS(2008), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_LF] = ACTIONS(2010), + [anon_sym_AMP] = ACTIONS(2008), }, - [283] = { - [sym__assignment] = STATE(375), - [anon_sym_EQ] = ACTIONS(1431), - [anon_sym_PLUS_EQ] = ACTIONS(1431), - [sym_comment] = ACTIONS(56), + [643] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(460), + [anon_sym_RPAREN] = ACTIONS(2008), + [anon_sym_SEMI_SEMI] = ACTIONS(2008), + [anon_sym_PIPE_AMP] = ACTIONS(460), + [anon_sym_AMP_AMP] = ACTIONS(2008), + [anon_sym_PIPE_PIPE] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_LF] = ACTIONS(2010), + [anon_sym_AMP] = ACTIONS(2008), }, - [284] = { - [sym_variable_assignment] = STATE(107), - [sym_subscript] = STATE(283), - [sym_concatenation] = STATE(107), - [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), - [aux_sym_declaration_command_repeat1] = STATE(772), - [sym_variable_name] = ACTIONS(492), - [anon_sym_PIPE] = ACTIONS(722), + [644] = { + [sym_concatenation] = STATE(950), + [sym_string] = STATE(1088), + [sym_simple_expansion] = STATE(1088), + [sym_string_expansion] = STATE(1088), + [sym_expansion] = STATE(1088), + [sym_command_substitution] = STATE(1088), + [sym_process_substitution] = STATE(1088), + [sym__special_characters] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(2375), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2375), + }, + [645] = { + [aux_sym_concatenation_repeat1] = STATE(259), + [sym_file_descriptor] = ACTIONS(1265), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1263), + [anon_sym_SEMI_SEMI] = ACTIONS(1263), + [anon_sym_PIPE_AMP] = ACTIONS(1263), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1263), + [anon_sym_EQ_TILDE] = ACTIONS(1263), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_GT] = ACTIONS(1263), + [anon_sym_AMP_GT] = ACTIONS(1263), + [anon_sym_AMP_GT_GT] = ACTIONS(1263), + [anon_sym_LT_AMP] = ACTIONS(1263), + [anon_sym_GT_AMP] = ACTIONS(1263), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_LT_LT_DASH] = ACTIONS(1263), + [anon_sym_LT_LT_LT] = ACTIONS(1263), + [sym__special_characters] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1263), + [sym_raw_string] = ACTIONS(1263), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [anon_sym_LT_LPAREN] = ACTIONS(1263), + [anon_sym_GT_LPAREN] = ACTIONS(1263), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_LF] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1263), + }, + [646] = { + [aux_sym_concatenation_repeat1] = STATE(259), + [sym_file_descriptor] = ACTIONS(1269), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1267), + [anon_sym_SEMI_SEMI] = ACTIONS(1267), + [anon_sym_PIPE_AMP] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_EQ_TILDE] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_AMP_GT] = ACTIONS(1267), + [anon_sym_AMP_GT_GT] = ACTIONS(1267), + [anon_sym_LT_AMP] = ACTIONS(1267), + [anon_sym_GT_AMP] = ACTIONS(1267), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_LT_LT_DASH] = ACTIONS(1267), + [anon_sym_LT_LT_LT] = ACTIONS(1267), + [sym__special_characters] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1267), + [sym_raw_string] = ACTIONS(1267), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1267), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1267), + [anon_sym_BQUOTE] = ACTIONS(1267), + [anon_sym_LT_LPAREN] = ACTIONS(1267), + [anon_sym_GT_LPAREN] = ACTIONS(1267), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_LF] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1267), + }, + [647] = { + [aux_sym_concatenation_repeat1] = STATE(1089), + [sym_file_descriptor] = ACTIONS(656), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(660), + [anon_sym_RPAREN] = ACTIONS(660), + [anon_sym_SEMI_SEMI] = ACTIONS(660), + [anon_sym_PIPE_AMP] = ACTIONS(660), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_LT] = ACTIONS(660), + [anon_sym_GT] = ACTIONS(660), + [anon_sym_GT_GT] = ACTIONS(660), + [anon_sym_AMP_GT] = ACTIONS(660), + [anon_sym_AMP_GT_GT] = ACTIONS(660), + [anon_sym_LT_AMP] = ACTIONS(660), + [anon_sym_GT_AMP] = ACTIONS(660), + [anon_sym_LT_LT] = ACTIONS(660), + [anon_sym_LT_LT_DASH] = ACTIONS(660), + [anon_sym_LT_LT_LT] = ACTIONS(660), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(660), + [anon_sym_LF] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(660), + }, + [648] = { + [aux_sym_concatenation_repeat1] = STATE(1089), + [sym_file_descriptor] = ACTIONS(672), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(674), + [anon_sym_SEMI_SEMI] = ACTIONS(674), + [anon_sym_PIPE_AMP] = ACTIONS(674), + [anon_sym_AMP_AMP] = ACTIONS(674), + [anon_sym_PIPE_PIPE] = ACTIONS(674), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(674), + [anon_sym_AMP_GT] = ACTIONS(674), + [anon_sym_AMP_GT_GT] = ACTIONS(674), + [anon_sym_LT_AMP] = ACTIONS(674), + [anon_sym_GT_AMP] = ACTIONS(674), + [anon_sym_LT_LT] = ACTIONS(674), + [anon_sym_LT_LT_DASH] = ACTIONS(674), + [anon_sym_LT_LT_LT] = ACTIONS(674), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(674), + [anon_sym_LF] = ACTIONS(672), + [anon_sym_AMP] = ACTIONS(674), + }, + [649] = { + [aux_sym_concatenation_repeat1] = STATE(1089), + [sym_file_descriptor] = ACTIONS(2032), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(2034), + [anon_sym_RPAREN] = ACTIONS(2034), + [anon_sym_SEMI_SEMI] = ACTIONS(2034), + [anon_sym_PIPE_AMP] = ACTIONS(2034), + [anon_sym_AMP_AMP] = ACTIONS(2034), + [anon_sym_PIPE_PIPE] = ACTIONS(2034), + [anon_sym_LT] = ACTIONS(2034), + [anon_sym_GT] = ACTIONS(2034), + [anon_sym_GT_GT] = ACTIONS(2034), + [anon_sym_AMP_GT] = ACTIONS(2034), + [anon_sym_AMP_GT_GT] = ACTIONS(2034), + [anon_sym_LT_AMP] = ACTIONS(2034), + [anon_sym_GT_AMP] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(2034), + [anon_sym_LT_LT_DASH] = ACTIONS(2034), + [anon_sym_LT_LT_LT] = ACTIONS(2034), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2034), + }, + [650] = { + [aux_sym_concatenation_repeat1] = STATE(1089), + [sym_file_descriptor] = ACTIONS(2036), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(2038), + [anon_sym_RPAREN] = ACTIONS(2038), + [anon_sym_SEMI_SEMI] = ACTIONS(2038), + [anon_sym_PIPE_AMP] = ACTIONS(2038), + [anon_sym_AMP_AMP] = ACTIONS(2038), + [anon_sym_PIPE_PIPE] = ACTIONS(2038), + [anon_sym_LT] = ACTIONS(2038), + [anon_sym_GT] = ACTIONS(2038), + [anon_sym_GT_GT] = ACTIONS(2038), + [anon_sym_AMP_GT] = ACTIONS(2038), + [anon_sym_AMP_GT_GT] = ACTIONS(2038), + [anon_sym_LT_AMP] = ACTIONS(2038), + [anon_sym_GT_AMP] = ACTIONS(2038), + [anon_sym_LT_LT] = ACTIONS(2038), + [anon_sym_LT_LT_DASH] = ACTIONS(2038), + [anon_sym_LT_LT_LT] = ACTIONS(2038), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2038), + }, + [651] = { + [sym_file_redirect] = STATE(651), + [sym_heredoc_redirect] = STATE(651), + [sym_herestring_redirect] = STATE(651), + [aux_sym_while_statement_repeat1] = STATE(651), + [sym_file_descriptor] = ACTIONS(2377), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_RPAREN] = ACTIONS(2043), + [anon_sym_SEMI_SEMI] = ACTIONS(2043), + [anon_sym_PIPE_AMP] = ACTIONS(2043), + [anon_sym_AMP_AMP] = ACTIONS(2043), + [anon_sym_PIPE_PIPE] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2380), + [anon_sym_GT_GT] = ACTIONS(2380), + [anon_sym_AMP_GT] = ACTIONS(2380), + [anon_sym_AMP_GT_GT] = ACTIONS(2380), + [anon_sym_LT_AMP] = ACTIONS(2380), + [anon_sym_GT_AMP] = ACTIONS(2380), + [anon_sym_LT_LT] = ACTIONS(2048), + [anon_sym_LT_LT_DASH] = ACTIONS(2048), + [anon_sym_LT_LT_LT] = ACTIONS(2383), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2043), + [anon_sym_LF] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2043), + }, + [652] = { + [sym_file_redirect] = STATE(651), + [sym_heredoc_redirect] = STATE(651), + [sym_herestring_redirect] = STATE(651), + [aux_sym_while_statement_repeat1] = STATE(651), + [sym_file_descriptor] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(2056), + [anon_sym_RPAREN] = ACTIONS(2056), + [anon_sym_SEMI_SEMI] = ACTIONS(2056), + [anon_sym_PIPE_AMP] = ACTIONS(2056), + [anon_sym_AMP_AMP] = ACTIONS(2056), + [anon_sym_PIPE_PIPE] = ACTIONS(2056), + [anon_sym_LT] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(474), + [anon_sym_GT_GT] = ACTIONS(474), + [anon_sym_AMP_GT] = ACTIONS(474), + [anon_sym_AMP_GT_GT] = ACTIONS(474), + [anon_sym_LT_AMP] = ACTIONS(474), + [anon_sym_GT_AMP] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(476), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_LF] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2056), + }, + [653] = { + [sym_concatenation] = STATE(191), + [sym_string] = STATE(270), + [sym_simple_expansion] = STATE(270), + [sym_string_expansion] = STATE(270), + [sym_expansion] = STATE(270), + [sym_command_substitution] = STATE(270), + [sym_process_substitution] = STATE(270), + [aux_sym_command_repeat2] = STATE(653), + [sym_file_descriptor] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1267), + [anon_sym_SEMI_SEMI] = ACTIONS(1267), + [anon_sym_PIPE_AMP] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_EQ_TILDE] = ACTIONS(2386), + [anon_sym_EQ_EQ] = ACTIONS(2386), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_AMP_GT] = ACTIONS(1267), + [anon_sym_AMP_GT_GT] = ACTIONS(1267), + [anon_sym_LT_AMP] = ACTIONS(1267), + [anon_sym_GT_AMP] = ACTIONS(1267), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_LT_LT_DASH] = ACTIONS(1267), + [anon_sym_LT_LT_LT] = ACTIONS(1267), + [sym__special_characters] = ACTIONS(2389), + [anon_sym_DQUOTE] = ACTIONS(2066), + [anon_sym_DOLLAR] = ACTIONS(2069), + [sym_raw_string] = ACTIONS(2392), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2075), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2078), + [anon_sym_BQUOTE] = ACTIONS(2081), + [anon_sym_LT_LPAREN] = ACTIONS(2084), + [anon_sym_GT_LPAREN] = ACTIONS(2084), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_LF] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1267), + }, + [654] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(2395), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(944), + [sym_raw_string] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(944), + }, + [655] = { + [sym_file_redirect] = STATE(1091), + [sym_heredoc_redirect] = STATE(1091), + [sym_herestring_redirect] = STATE(1091), + [sym_concatenation] = STATE(191), + [sym_string] = STATE(270), + [sym_simple_expansion] = STATE(270), + [sym_string_expansion] = STATE(270), + [sym_expansion] = STATE(270), + [sym_command_substitution] = STATE(270), + [sym_process_substitution] = STATE(270), + [aux_sym_while_statement_repeat1] = STATE(1091), + [aux_sym_command_repeat2] = STATE(653), + [sym_file_descriptor] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(2056), + [anon_sym_RPAREN] = ACTIONS(2056), + [anon_sym_SEMI_SEMI] = ACTIONS(2056), + [anon_sym_PIPE_AMP] = ACTIONS(2056), + [anon_sym_AMP_AMP] = ACTIONS(2056), + [anon_sym_PIPE_PIPE] = ACTIONS(2056), + [anon_sym_EQ_TILDE] = ACTIONS(472), + [anon_sym_EQ_EQ] = ACTIONS(472), + [anon_sym_LT] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(474), + [anon_sym_GT_GT] = ACTIONS(474), + [anon_sym_AMP_GT] = ACTIONS(474), + [anon_sym_AMP_GT_GT] = ACTIONS(474), + [anon_sym_LT_AMP] = ACTIONS(474), + [anon_sym_GT_AMP] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(476), + [sym__special_characters] = ACTIONS(478), + [anon_sym_DQUOTE] = ACTIONS(336), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(342), + [anon_sym_BQUOTE] = ACTIONS(344), + [anon_sym_LT_LPAREN] = ACTIONS(346), + [anon_sym_GT_LPAREN] = ACTIONS(346), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(480), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_LF] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2056), + }, + [656] = { + [sym__concat] = ACTIONS(1634), + [anon_sym_EQ_TILDE] = ACTIONS(1636), + [anon_sym_EQ_EQ] = ACTIONS(1636), + [anon_sym_RBRACK] = ACTIONS(1634), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LT_LPAREN] = ACTIONS(1634), + [anon_sym_GT_LPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1636), + }, + [657] = { + [aux_sym_concatenation_repeat1] = STATE(657), + [sym__concat] = ACTIONS(2397), + [anon_sym_EQ_TILDE] = ACTIONS(1636), + [anon_sym_EQ_EQ] = ACTIONS(1636), + [anon_sym_RBRACK] = ACTIONS(1634), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LT_LPAREN] = ACTIONS(1634), + [anon_sym_GT_LPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1636), + }, + [658] = { + [sym__concat] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1685), + [anon_sym_EQ_EQ] = ACTIONS(1685), + [anon_sym_RBRACK] = ACTIONS(1683), + [sym__special_characters] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1683), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1683), + [anon_sym_BQUOTE] = ACTIONS(1683), + [anon_sym_LT_LPAREN] = ACTIONS(1683), + [anon_sym_GT_LPAREN] = ACTIONS(1683), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1685), + }, + [659] = { + [sym_concatenation] = STATE(1095), + [sym_string] = STATE(1094), + [sym_simple_expansion] = STATE(1094), + [sym_string_expansion] = STATE(1094), + [sym_expansion] = STATE(1094), + [sym_command_substitution] = STATE(1094), + [sym_process_substitution] = STATE(1094), + [anon_sym_RBRACE] = ACTIONS(2400), + [sym__special_characters] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(2404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2404), + }, + [660] = { + [sym__concat] = ACTIONS(1724), + [anon_sym_EQ_TILDE] = ACTIONS(1726), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_RBRACK] = ACTIONS(1724), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1726), + [sym_raw_string] = ACTIONS(1724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), + [anon_sym_BQUOTE] = ACTIONS(1724), + [anon_sym_LT_LPAREN] = ACTIONS(1724), + [anon_sym_GT_LPAREN] = ACTIONS(1724), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1726), + }, + [661] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2406), + }, + [662] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2408), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [663] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(2410), + [sym_comment] = ACTIONS(54), + }, + [664] = { + [sym_concatenation] = STATE(1101), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1101), + [anon_sym_RBRACE] = ACTIONS(2412), + [anon_sym_EQ] = ACTIONS(2414), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2418), + [anon_sym_COLON] = ACTIONS(2414), + [anon_sym_COLON_QMARK] = ACTIONS(2414), + [anon_sym_COLON_DASH] = ACTIONS(2414), + [anon_sym_PERCENT] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [665] = { + [sym_concatenation] = STATE(1104), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1104), + [anon_sym_RBRACE] = ACTIONS(2420), + [anon_sym_EQ] = ACTIONS(2422), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2424), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2426), + [anon_sym_COLON] = ACTIONS(2422), + [anon_sym_COLON_QMARK] = ACTIONS(2422), + [anon_sym_COLON_DASH] = ACTIONS(2422), + [anon_sym_PERCENT] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [666] = { + [sym_concatenation] = STATE(1106), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1106), + [anon_sym_RBRACE] = ACTIONS(2400), + [anon_sym_EQ] = ACTIONS(2428), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2430), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2432), + [anon_sym_COLON] = ACTIONS(2428), + [anon_sym_COLON_QMARK] = ACTIONS(2428), + [anon_sym_COLON_DASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [667] = { + [sym__concat] = ACTIONS(1790), + [anon_sym_EQ_TILDE] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1790), + [sym__special_characters] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1792), + [sym_raw_string] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_LT_LPAREN] = ACTIONS(1790), + [anon_sym_GT_LPAREN] = ACTIONS(1790), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1792), + }, + [668] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2434), + }, + [669] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2436), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [670] = { + [sym__concat] = ACTIONS(1798), + [anon_sym_EQ_TILDE] = ACTIONS(1800), + [anon_sym_EQ_EQ] = ACTIONS(1800), + [anon_sym_RBRACK] = ACTIONS(1798), + [sym__special_characters] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1798), + [anon_sym_DOLLAR] = ACTIONS(1800), + [sym_raw_string] = ACTIONS(1798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1798), + [anon_sym_LT_LPAREN] = ACTIONS(1798), + [anon_sym_GT_LPAREN] = ACTIONS(1798), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1800), + }, + [671] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2438), + }, + [672] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2400), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [673] = { + [sym__concat] = ACTIONS(1936), + [anon_sym_EQ_TILDE] = ACTIONS(1938), + [anon_sym_EQ_EQ] = ACTIONS(1938), + [anon_sym_RBRACK] = ACTIONS(1936), + [sym__special_characters] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR] = ACTIONS(1938), + [sym_raw_string] = ACTIONS(1936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1936), + [anon_sym_BQUOTE] = ACTIONS(1936), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1938), + }, + [674] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_EQ_TILDE] = ACTIONS(2002), + [anon_sym_EQ_EQ] = ACTIONS(2002), + [anon_sym_RBRACK] = ACTIONS(2000), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [anon_sym_LT_LPAREN] = ACTIONS(2000), + [anon_sym_GT_LPAREN] = ACTIONS(2000), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2002), + }, + [675] = { + [sym_file_redirect] = STATE(534), + [sym_heredoc_redirect] = STATE(534), + [sym_herestring_redirect] = STATE(534), + [aux_sym_while_statement_repeat1] = STATE(534), + [sym_file_descriptor] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(328), + [anon_sym_GT_GT] = ACTIONS(328), + [anon_sym_AMP_GT] = ACTIONS(328), + [anon_sym_AMP_GT_GT] = ACTIONS(328), + [anon_sym_LT_AMP] = ACTIONS(328), + [anon_sym_GT_AMP] = ACTIONS(328), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(332), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_LF] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2440), + }, + [676] = { + [sym__concat] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_EQ_TILDE] = ACTIONS(1636), + [anon_sym_EQ_EQ] = ACTIONS(1636), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1634), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LT_LPAREN] = ACTIONS(1634), + [anon_sym_GT_LPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1636), + }, + [677] = { + [aux_sym_concatenation_repeat1] = STATE(677), + [sym__concat] = ACTIONS(2444), + [anon_sym_EQ_TILDE] = ACTIONS(1636), + [anon_sym_EQ_EQ] = ACTIONS(1636), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1634), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LT_LPAREN] = ACTIONS(1634), + [anon_sym_GT_LPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1636), + }, + [678] = { + [sym__concat] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1685), + [anon_sym_EQ_EQ] = ACTIONS(1685), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1683), + [sym__special_characters] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1683), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1683), + [anon_sym_BQUOTE] = ACTIONS(1683), + [anon_sym_LT_LPAREN] = ACTIONS(1683), + [anon_sym_GT_LPAREN] = ACTIONS(1683), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1685), + }, + [679] = { + [sym_concatenation] = STATE(1113), + [sym_string] = STATE(1112), + [sym_simple_expansion] = STATE(1112), + [sym_string_expansion] = STATE(1112), + [sym_expansion] = STATE(1112), + [sym_command_substitution] = STATE(1112), + [sym_process_substitution] = STATE(1112), + [anon_sym_RBRACE] = ACTIONS(2447), + [sym__special_characters] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(2451), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2451), + }, + [680] = { + [sym__concat] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(1724), + [anon_sym_EQ_TILDE] = ACTIONS(1726), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1724), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1726), + [sym_raw_string] = ACTIONS(1724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), + [anon_sym_BQUOTE] = ACTIONS(1724), + [anon_sym_LT_LPAREN] = ACTIONS(1724), + [anon_sym_GT_LPAREN] = ACTIONS(1724), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1726), + }, + [681] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2453), + }, + [682] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [683] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(2457), + [sym_comment] = ACTIONS(54), + }, + [684] = { + [sym_concatenation] = STATE(1119), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1119), + [anon_sym_RBRACE] = ACTIONS(2459), + [anon_sym_EQ] = ACTIONS(2461), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2463), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2465), + [anon_sym_COLON] = ACTIONS(2461), + [anon_sym_COLON_QMARK] = ACTIONS(2461), + [anon_sym_COLON_DASH] = ACTIONS(2461), + [anon_sym_PERCENT] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2461), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [685] = { + [sym_concatenation] = STATE(1122), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1122), + [anon_sym_RBRACE] = ACTIONS(2467), + [anon_sym_EQ] = ACTIONS(2469), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2471), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2473), + [anon_sym_COLON] = ACTIONS(2469), + [anon_sym_COLON_QMARK] = ACTIONS(2469), + [anon_sym_COLON_DASH] = ACTIONS(2469), + [anon_sym_PERCENT] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [686] = { + [sym_concatenation] = STATE(1124), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1124), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_EQ] = ACTIONS(2475), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2477), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [687] = { + [sym__concat] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_EQ_TILDE] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1792), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1790), + [sym__special_characters] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1792), + [sym_raw_string] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_LT_LPAREN] = ACTIONS(1790), + [anon_sym_GT_LPAREN] = ACTIONS(1790), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1792), + }, + [688] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2481), + }, + [689] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2483), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [690] = { + [sym__concat] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_EQ_TILDE] = ACTIONS(1800), + [anon_sym_EQ_EQ] = ACTIONS(1800), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1798), + [sym__special_characters] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1798), + [anon_sym_DOLLAR] = ACTIONS(1800), + [sym_raw_string] = ACTIONS(1798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1798), + [anon_sym_LT_LPAREN] = ACTIONS(1798), + [anon_sym_GT_LPAREN] = ACTIONS(1798), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1800), + }, + [691] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2485), + }, + [692] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [693] = { + [sym__concat] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_RPAREN] = ACTIONS(1936), + [anon_sym_EQ_TILDE] = ACTIONS(1938), + [anon_sym_EQ_EQ] = ACTIONS(1938), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1936), + [sym__special_characters] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR] = ACTIONS(1938), + [sym_raw_string] = ACTIONS(1936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1936), + [anon_sym_BQUOTE] = ACTIONS(1936), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1938), + }, + [694] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2000), + [anon_sym_RPAREN] = ACTIONS(2000), + [anon_sym_EQ_TILDE] = ACTIONS(2002), + [anon_sym_EQ_EQ] = ACTIONS(2002), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2000), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [anon_sym_LT_LPAREN] = ACTIONS(2000), + [anon_sym_GT_LPAREN] = ACTIONS(2000), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2002), + }, + [695] = { + [sym_variable_name] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_RPAREN] = ACTIONS(1081), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1081), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1081), + [sym_word] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1081), + [anon_sym_LF] = ACTIONS(1079), + [anon_sym_AMP] = ACTIONS(1081), + }, + [696] = { + [sym_concatenation] = STATE(1129), + [sym_string] = STATE(549), + [sym_simple_expansion] = STATE(549), + [sym_string_expansion] = STATE(549), + [sym_expansion] = STATE(549), + [sym_command_substitution] = STATE(549), + [sym_process_substitution] = STATE(549), + [aux_sym_for_statement_repeat1] = STATE(1129), + [anon_sym_RPAREN] = ACTIONS(2487), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(1089), + [sym_raw_string] = ACTIONS(1091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1095), + [anon_sym_BQUOTE] = ACTIONS(1097), + [anon_sym_LT_LPAREN] = ACTIONS(1099), + [anon_sym_GT_LPAREN] = ACTIONS(1099), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1091), + }, + [697] = { + [aux_sym_concatenation_repeat1] = STATE(325), + [sym__concat] = ACTIONS(576), + [sym_variable_name] = ACTIONS(1101), + [anon_sym_PIPE] = ACTIONS(1105), + [anon_sym_SEMI_SEMI] = ACTIONS(1105), + [anon_sym_PIPE_AMP] = ACTIONS(1105), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE_PIPE] = ACTIONS(1105), + [sym__special_characters] = ACTIONS(1105), + [anon_sym_DQUOTE] = ACTIONS(1105), + [anon_sym_DOLLAR] = ACTIONS(1105), + [sym_raw_string] = ACTIONS(1105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1105), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), + [anon_sym_BQUOTE] = ACTIONS(1105), + [anon_sym_LT_LPAREN] = ACTIONS(1105), + [anon_sym_GT_LPAREN] = ACTIONS(1105), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1105), + [sym_word] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(1105), + [anon_sym_LF] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1105), + }, + [698] = { + [aux_sym_concatenation_repeat1] = STATE(325), + [sym__concat] = ACTIONS(576), + [sym_variable_name] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1081), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1081), + [sym_word] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1081), + [anon_sym_LF] = ACTIONS(1079), + [anon_sym_AMP] = ACTIONS(1081), + }, + [699] = { + [sym__concat] = ACTIONS(1634), + [sym_variable_name] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1636), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [700] = { + [aux_sym_concatenation_repeat1] = STATE(700), + [sym__concat] = ACTIONS(2489), + [sym_variable_name] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1636), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [701] = { + [sym__concat] = ACTIONS(1683), + [sym_variable_name] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [sym__special_characters] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_BQUOTE] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1685), + [sym_word] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + }, + [702] = { + [sym_concatenation] = STATE(1133), + [sym_string] = STATE(1132), + [sym_simple_expansion] = STATE(1132), + [sym_string_expansion] = STATE(1132), + [sym_expansion] = STATE(1132), + [sym_command_substitution] = STATE(1132), + [sym_process_substitution] = STATE(1132), + [anon_sym_RBRACE] = ACTIONS(2492), + [sym__special_characters] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(2496), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2496), + }, + [703] = { + [sym__concat] = ACTIONS(1724), + [sym_variable_name] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1726), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1726), + [sym_word] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LF] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1726), + }, + [704] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2498), + }, + [705] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2500), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [706] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(2502), + [sym_comment] = ACTIONS(54), + }, + [707] = { + [sym_concatenation] = STATE(1139), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1139), + [anon_sym_RBRACE] = ACTIONS(2504), + [anon_sym_EQ] = ACTIONS(2506), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2508), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2510), + [anon_sym_COLON] = ACTIONS(2506), + [anon_sym_COLON_QMARK] = ACTIONS(2506), + [anon_sym_COLON_DASH] = ACTIONS(2506), + [anon_sym_PERCENT] = ACTIONS(2506), + [anon_sym_DASH] = ACTIONS(2506), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [708] = { + [sym_concatenation] = STATE(1142), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1142), + [anon_sym_RBRACE] = ACTIONS(2512), + [anon_sym_EQ] = ACTIONS(2514), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2518), + [anon_sym_COLON] = ACTIONS(2514), + [anon_sym_COLON_QMARK] = ACTIONS(2514), + [anon_sym_COLON_DASH] = ACTIONS(2514), + [anon_sym_PERCENT] = ACTIONS(2514), + [anon_sym_DASH] = ACTIONS(2514), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [709] = { + [sym_concatenation] = STATE(1144), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1144), + [anon_sym_RBRACE] = ACTIONS(2492), + [anon_sym_EQ] = ACTIONS(2520), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2522), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2524), + [anon_sym_COLON] = ACTIONS(2520), + [anon_sym_COLON_QMARK] = ACTIONS(2520), + [anon_sym_COLON_DASH] = ACTIONS(2520), + [anon_sym_PERCENT] = ACTIONS(2520), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [710] = { + [sym__concat] = ACTIONS(1790), + [sym_variable_name] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_SEMI_SEMI] = ACTIONS(1792), + [anon_sym_PIPE_AMP] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [sym__special_characters] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1792), + [anon_sym_DOLLAR] = ACTIONS(1792), + [sym_raw_string] = ACTIONS(1792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1792), + [anon_sym_LT_LPAREN] = ACTIONS(1792), + [anon_sym_GT_LPAREN] = ACTIONS(1792), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1792), + [sym_word] = ACTIONS(1792), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_LF] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1792), + }, + [711] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2526), + }, + [712] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2528), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [713] = { + [sym__concat] = ACTIONS(1798), + [sym_variable_name] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_RPAREN] = ACTIONS(1800), + [anon_sym_SEMI_SEMI] = ACTIONS(1800), + [anon_sym_PIPE_AMP] = ACTIONS(1800), + [anon_sym_AMP_AMP] = ACTIONS(1800), + [anon_sym_PIPE_PIPE] = ACTIONS(1800), + [sym__special_characters] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1800), + [sym_raw_string] = ACTIONS(1800), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1800), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1800), + [anon_sym_BQUOTE] = ACTIONS(1800), + [anon_sym_LT_LPAREN] = ACTIONS(1800), + [anon_sym_GT_LPAREN] = ACTIONS(1800), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1800), + [sym_word] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_LF] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1800), + }, + [714] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2530), + }, + [715] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2492), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [716] = { + [sym__concat] = ACTIONS(1936), + [sym_variable_name] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_RPAREN] = ACTIONS(1938), + [anon_sym_SEMI_SEMI] = ACTIONS(1938), + [anon_sym_PIPE_AMP] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_PIPE_PIPE] = ACTIONS(1938), + [sym__special_characters] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_DOLLAR] = ACTIONS(1938), + [sym_raw_string] = ACTIONS(1938), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1938), + [anon_sym_BQUOTE] = ACTIONS(1938), + [anon_sym_LT_LPAREN] = ACTIONS(1938), + [anon_sym_GT_LPAREN] = ACTIONS(1938), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1938), + [sym_word] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1938), + }, + [717] = { + [sym__concat] = ACTIONS(2000), + [sym_variable_name] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_RPAREN] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2002), + [anon_sym_BQUOTE] = ACTIONS(2002), + [anon_sym_LT_LPAREN] = ACTIONS(2002), + [anon_sym_GT_LPAREN] = ACTIONS(2002), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2002), + [sym_word] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2002), + }, + [718] = { + [sym__concat] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1636), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [719] = { + [aux_sym_concatenation_repeat1] = STATE(719), + [sym__concat] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1636), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [720] = { + [sym__concat] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [sym__special_characters] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_BQUOTE] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1685), + [sym_word] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + }, + [721] = { + [sym_concatenation] = STATE(1151), + [sym_string] = STATE(1150), + [sym_simple_expansion] = STATE(1150), + [sym_string_expansion] = STATE(1150), + [sym_expansion] = STATE(1150), + [sym_command_substitution] = STATE(1150), + [sym_process_substitution] = STATE(1150), + [anon_sym_RBRACE] = ACTIONS(2535), + [sym__special_characters] = ACTIONS(2537), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(2539), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2539), + }, + [722] = { + [sym__concat] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1726), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1726), + [sym_word] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LF] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1726), + }, + [723] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2541), + }, + [724] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2543), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [725] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(2545), + [sym_comment] = ACTIONS(54), + }, + [726] = { + [sym_concatenation] = STATE(1157), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1157), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_EQ] = ACTIONS(2549), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2551), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2553), + [anon_sym_COLON] = ACTIONS(2549), + [anon_sym_COLON_QMARK] = ACTIONS(2549), + [anon_sym_COLON_DASH] = ACTIONS(2549), + [anon_sym_PERCENT] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(2549), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [727] = { + [sym_concatenation] = STATE(1160), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1160), + [anon_sym_RBRACE] = ACTIONS(2555), + [anon_sym_EQ] = ACTIONS(2557), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2561), + [anon_sym_COLON] = ACTIONS(2557), + [anon_sym_COLON_QMARK] = ACTIONS(2557), + [anon_sym_COLON_DASH] = ACTIONS(2557), + [anon_sym_PERCENT] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [728] = { + [sym_concatenation] = STATE(1162), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1162), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_EQ] = ACTIONS(2563), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2565), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2567), + [anon_sym_COLON] = ACTIONS(2563), + [anon_sym_COLON_QMARK] = ACTIONS(2563), + [anon_sym_COLON_DASH] = ACTIONS(2563), + [anon_sym_PERCENT] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [729] = { + [sym__concat] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_SEMI_SEMI] = ACTIONS(1792), + [anon_sym_PIPE_AMP] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [sym__special_characters] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1792), + [anon_sym_DOLLAR] = ACTIONS(1792), + [sym_raw_string] = ACTIONS(1792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1792), + [anon_sym_LT_LPAREN] = ACTIONS(1792), + [anon_sym_GT_LPAREN] = ACTIONS(1792), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1792), + [sym_word] = ACTIONS(1792), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_LF] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1792), + }, + [730] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2569), + }, + [731] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2571), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [732] = { + [sym__concat] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_RPAREN] = ACTIONS(1800), + [anon_sym_SEMI_SEMI] = ACTIONS(1800), + [anon_sym_PIPE_AMP] = ACTIONS(1800), + [anon_sym_AMP_AMP] = ACTIONS(1800), + [anon_sym_PIPE_PIPE] = ACTIONS(1800), + [sym__special_characters] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1800), + [sym_raw_string] = ACTIONS(1800), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1800), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1800), + [anon_sym_BQUOTE] = ACTIONS(1800), + [anon_sym_LT_LPAREN] = ACTIONS(1800), + [anon_sym_GT_LPAREN] = ACTIONS(1800), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1800), + [sym_word] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_LF] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1800), + }, + [733] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2573), + }, + [734] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [735] = { + [sym__concat] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_RPAREN] = ACTIONS(1938), + [anon_sym_SEMI_SEMI] = ACTIONS(1938), + [anon_sym_PIPE_AMP] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_PIPE_PIPE] = ACTIONS(1938), + [sym__special_characters] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_DOLLAR] = ACTIONS(1938), + [sym_raw_string] = ACTIONS(1938), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1938), + [anon_sym_BQUOTE] = ACTIONS(1938), + [anon_sym_LT_LPAREN] = ACTIONS(1938), + [anon_sym_GT_LPAREN] = ACTIONS(1938), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1938), + [sym_word] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1938), + }, + [736] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_RPAREN] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2002), + [anon_sym_BQUOTE] = ACTIONS(2002), + [anon_sym_LT_LPAREN] = ACTIONS(2002), + [anon_sym_GT_LPAREN] = ACTIONS(2002), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2002), + [sym_word] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2002), + }, + [737] = { + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(1634), + [sym_variable_name] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_PIPE_AMP] = ACTIONS(1634), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE_PIPE] = ACTIONS(1634), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1634), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1634), + [anon_sym_LT_AMP] = ACTIONS(1634), + [anon_sym_GT_AMP] = ACTIONS(1634), + [sym__special_characters] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LT_LPAREN] = ACTIONS(1634), + [anon_sym_GT_LPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1634), + }, + [738] = { + [aux_sym_concatenation_repeat1] = STATE(738), + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(2575), + [sym_variable_name] = ACTIONS(1634), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1634), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1634), + [anon_sym_LT_AMP] = ACTIONS(1634), + [anon_sym_GT_AMP] = ACTIONS(1634), + [sym__special_characters] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LT_LPAREN] = ACTIONS(1634), + [anon_sym_GT_LPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1634), + }, + [739] = { + [sym_file_descriptor] = ACTIONS(1683), + [sym__concat] = ACTIONS(1683), + [sym_variable_name] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_PIPE_AMP] = ACTIONS(1683), + [anon_sym_AMP_AMP] = ACTIONS(1683), + [anon_sym_PIPE_PIPE] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1683), + [anon_sym_AMP_GT] = ACTIONS(1685), + [anon_sym_AMP_GT_GT] = ACTIONS(1683), + [anon_sym_LT_AMP] = ACTIONS(1683), + [anon_sym_GT_AMP] = ACTIONS(1683), + [sym__special_characters] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1683), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1683), + [anon_sym_BQUOTE] = ACTIONS(1683), + [anon_sym_LT_LPAREN] = ACTIONS(1683), + [anon_sym_GT_LPAREN] = ACTIONS(1683), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1683), + }, + [740] = { + [sym_concatenation] = STATE(1169), + [sym_string] = STATE(1168), + [sym_simple_expansion] = STATE(1168), + [sym_string_expansion] = STATE(1168), + [sym_expansion] = STATE(1168), + [sym_command_substitution] = STATE(1168), + [sym_process_substitution] = STATE(1168), + [anon_sym_RBRACE] = ACTIONS(2578), + [sym__special_characters] = ACTIONS(2580), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(2582), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2582), + }, + [741] = { + [sym_file_descriptor] = ACTIONS(1724), + [sym__concat] = ACTIONS(1724), + [sym_variable_name] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1724), + [anon_sym_PIPE_AMP] = ACTIONS(1724), + [anon_sym_AMP_AMP] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1724), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1726), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_AMP_GT] = ACTIONS(1726), + [anon_sym_AMP_GT_GT] = ACTIONS(1724), + [anon_sym_LT_AMP] = ACTIONS(1724), + [anon_sym_GT_AMP] = ACTIONS(1724), + [sym__special_characters] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1726), + [sym_raw_string] = ACTIONS(1724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), + [anon_sym_BQUOTE] = ACTIONS(1724), + [anon_sym_LT_LPAREN] = ACTIONS(1724), + [anon_sym_GT_LPAREN] = ACTIONS(1724), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1724), + }, + [742] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2584), + }, + [743] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2586), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [744] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(2588), + [sym_comment] = ACTIONS(54), + }, + [745] = { + [sym_concatenation] = STATE(1175), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1175), + [anon_sym_RBRACE] = ACTIONS(2590), + [anon_sym_EQ] = ACTIONS(2592), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2594), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(2592), + [anon_sym_COLON_QMARK] = ACTIONS(2592), + [anon_sym_COLON_DASH] = ACTIONS(2592), + [anon_sym_PERCENT] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [746] = { + [sym_concatenation] = STATE(1178), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1178), + [anon_sym_RBRACE] = ACTIONS(2598), + [anon_sym_EQ] = ACTIONS(2600), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2604), + [anon_sym_COLON] = ACTIONS(2600), + [anon_sym_COLON_QMARK] = ACTIONS(2600), + [anon_sym_COLON_DASH] = ACTIONS(2600), + [anon_sym_PERCENT] = ACTIONS(2600), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [747] = { + [sym_concatenation] = STATE(1180), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1180), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_EQ] = ACTIONS(2606), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2610), + [anon_sym_COLON] = ACTIONS(2606), + [anon_sym_COLON_QMARK] = ACTIONS(2606), + [anon_sym_COLON_DASH] = ACTIONS(2606), + [anon_sym_PERCENT] = ACTIONS(2606), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [748] = { + [sym_file_descriptor] = ACTIONS(1790), + [sym__concat] = ACTIONS(1790), + [sym_variable_name] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_PIPE_AMP] = ACTIONS(1790), + [anon_sym_AMP_AMP] = ACTIONS(1790), + [anon_sym_PIPE_PIPE] = ACTIONS(1790), + [anon_sym_LT] = ACTIONS(1792), + [anon_sym_GT] = ACTIONS(1792), + [anon_sym_GT_GT] = ACTIONS(1790), + [anon_sym_AMP_GT] = ACTIONS(1792), + [anon_sym_AMP_GT_GT] = ACTIONS(1790), + [anon_sym_LT_AMP] = ACTIONS(1790), + [anon_sym_GT_AMP] = ACTIONS(1790), + [sym__special_characters] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1792), + [sym_raw_string] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_LT_LPAREN] = ACTIONS(1790), + [anon_sym_GT_LPAREN] = ACTIONS(1790), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1790), + }, + [749] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2612), + }, + [750] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2614), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [751] = { + [sym_file_descriptor] = ACTIONS(1798), + [sym__concat] = ACTIONS(1798), + [sym_variable_name] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_PIPE_AMP] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1800), + [anon_sym_GT] = ACTIONS(1800), + [anon_sym_GT_GT] = ACTIONS(1798), + [anon_sym_AMP_GT] = ACTIONS(1800), + [anon_sym_AMP_GT_GT] = ACTIONS(1798), + [anon_sym_LT_AMP] = ACTIONS(1798), + [anon_sym_GT_AMP] = ACTIONS(1798), + [sym__special_characters] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1798), + [anon_sym_DOLLAR] = ACTIONS(1800), + [sym_raw_string] = ACTIONS(1798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1798), + [anon_sym_LT_LPAREN] = ACTIONS(1798), + [anon_sym_GT_LPAREN] = ACTIONS(1798), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1798), + }, + [752] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2616), + }, + [753] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [754] = { + [sym_file_descriptor] = ACTIONS(1936), + [sym__concat] = ACTIONS(1936), + [sym_variable_name] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_RPAREN] = 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), + [sym__special_characters] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR] = ACTIONS(1938), + [sym_raw_string] = ACTIONS(1936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1936), + [anon_sym_BQUOTE] = ACTIONS(1936), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1936), + }, + [755] = { + [sym_file_descriptor] = ACTIONS(2000), + [sym__concat] = ACTIONS(2000), + [sym_variable_name] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_RPAREN] = ACTIONS(2000), + [anon_sym_PIPE_AMP] = ACTIONS(2000), + [anon_sym_AMP_AMP] = ACTIONS(2000), + [anon_sym_PIPE_PIPE] = ACTIONS(2000), + [anon_sym_LT] = ACTIONS(2002), + [anon_sym_GT] = ACTIONS(2002), + [anon_sym_GT_GT] = ACTIONS(2000), + [anon_sym_AMP_GT] = ACTIONS(2002), + [anon_sym_AMP_GT_GT] = ACTIONS(2000), + [anon_sym_LT_AMP] = ACTIONS(2000), + [anon_sym_GT_AMP] = ACTIONS(2000), + [sym__special_characters] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [anon_sym_LT_LPAREN] = ACTIONS(2000), + [anon_sym_GT_LPAREN] = ACTIONS(2000), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2000), + }, + [756] = { + [anon_sym_DQUOTE] = ACTIONS(2618), + [anon_sym_DOLLAR] = ACTIONS(2618), + [sym__string_content] = ACTIONS(2620), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2618), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2618), + [anon_sym_BQUOTE] = ACTIONS(2618), + [sym_comment] = ACTIONS(166), + }, + [757] = { + [sym_concatenation] = STATE(1187), + [sym_string] = STATE(1186), + [sym_simple_expansion] = STATE(1186), + [sym_string_expansion] = STATE(1186), + [sym_expansion] = STATE(1186), + [sym_command_substitution] = STATE(1186), + [sym_process_substitution] = STATE(1186), + [anon_sym_RBRACE] = ACTIONS(2622), + [sym__special_characters] = ACTIONS(2624), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(2626), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2626), + }, + [758] = { + [sym__concat] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1726), + [sym__string_content] = ACTIONS(1724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [sym_comment] = ACTIONS(166), + }, + [759] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2628), + }, + [760] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2630), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [761] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(2632), + [sym_comment] = ACTIONS(54), + }, + [762] = { + [sym_concatenation] = STATE(1193), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1193), + [anon_sym_RBRACE] = ACTIONS(2634), + [anon_sym_EQ] = ACTIONS(2636), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2638), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2640), + [anon_sym_COLON] = ACTIONS(2636), + [anon_sym_COLON_QMARK] = ACTIONS(2636), + [anon_sym_COLON_DASH] = ACTIONS(2636), + [anon_sym_PERCENT] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [763] = { + [sym_concatenation] = STATE(1196), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1196), + [anon_sym_RBRACE] = ACTIONS(2642), + [anon_sym_EQ] = ACTIONS(2644), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2648), + [anon_sym_COLON] = ACTIONS(2644), + [anon_sym_COLON_QMARK] = ACTIONS(2644), + [anon_sym_COLON_DASH] = ACTIONS(2644), + [anon_sym_PERCENT] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [764] = { + [sym_concatenation] = STATE(1198), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1198), + [anon_sym_RBRACE] = ACTIONS(2622), + [anon_sym_EQ] = ACTIONS(2650), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2654), + [anon_sym_COLON] = ACTIONS(2650), + [anon_sym_COLON_QMARK] = ACTIONS(2650), + [anon_sym_COLON_DASH] = ACTIONS(2650), + [anon_sym_PERCENT] = ACTIONS(2650), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [765] = { + [sym__concat] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1792), + [anon_sym_DOLLAR] = ACTIONS(1792), + [sym__string_content] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1792), + [sym_comment] = ACTIONS(166), + }, + [766] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2656), + }, + [767] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2658), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [768] = { + [sym__concat] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1800), + [sym__string_content] = ACTIONS(1798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1800), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1800), + [anon_sym_BQUOTE] = ACTIONS(1800), + [sym_comment] = ACTIONS(166), + }, + [769] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2660), + }, + [770] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2622), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [771] = { + [sym__concat] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_DOLLAR] = ACTIONS(1938), + [sym__string_content] = ACTIONS(1936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1938), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_comment] = ACTIONS(166), + }, + [772] = { + [aux_sym_concatenation_repeat1] = STATE(541), + [sym__concat] = ACTIONS(2662), + [anon_sym_RBRACK] = ACTIONS(2664), + [sym_comment] = ACTIONS(54), + }, + [773] = { + [aux_sym_concatenation_repeat1] = STATE(541), + [sym__concat] = ACTIONS(2666), + [anon_sym_RBRACK] = ACTIONS(2668), + [sym_comment] = ACTIONS(54), + }, + [774] = { + [sym__concat] = ACTIONS(2670), + [anon_sym_RBRACK] = ACTIONS(2668), + [sym_comment] = ACTIONS(54), + }, + [775] = { + [sym_file_descriptor] = ACTIONS(2672), + [sym__concat] = ACTIONS(2672), + [anon_sym_PIPE] = ACTIONS(2674), + [anon_sym_RPAREN] = ACTIONS(2674), + [anon_sym_SEMI_SEMI] = ACTIONS(2674), + [anon_sym_PIPE_AMP] = ACTIONS(2674), + [anon_sym_AMP_AMP] = ACTIONS(2674), + [anon_sym_PIPE_PIPE] = ACTIONS(2674), + [anon_sym_EQ_TILDE] = ACTIONS(2674), + [anon_sym_EQ_EQ] = ACTIONS(2674), + [anon_sym_LT] = ACTIONS(2674), + [anon_sym_GT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_AMP_GT] = ACTIONS(2674), + [anon_sym_AMP_GT_GT] = ACTIONS(2674), + [anon_sym_LT_AMP] = ACTIONS(2674), + [anon_sym_GT_AMP] = ACTIONS(2674), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_LT_LT_DASH] = ACTIONS(2674), + [anon_sym_LT_LT_LT] = ACTIONS(2674), + [sym__special_characters] = ACTIONS(2674), + [anon_sym_DQUOTE] = ACTIONS(2674), + [anon_sym_DOLLAR] = ACTIONS(2674), + [sym_raw_string] = ACTIONS(2674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2674), + [anon_sym_BQUOTE] = ACTIONS(2674), + [anon_sym_LT_LPAREN] = ACTIONS(2674), + [anon_sym_GT_LPAREN] = ACTIONS(2674), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_LF] = ACTIONS(2672), + [anon_sym_AMP] = ACTIONS(2674), + }, + [776] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(2678), + [sym_comment] = ACTIONS(54), + }, + [777] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(1211), + [anon_sym_DQUOTE] = ACTIONS(2680), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [778] = { + [sym_string] = STATE(1213), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(2682), + [sym_raw_string] = ACTIONS(2684), + [anon_sym_POUND] = ACTIONS(2682), + [anon_sym_DASH] = ACTIONS(2682), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2686), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_AT] = ACTIONS(2682), + [anon_sym_QMARK] = ACTIONS(2682), + [anon_sym_0] = ACTIONS(2688), + [anon_sym__] = ACTIONS(2688), + }, + [779] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(2690), + [sym_comment] = ACTIONS(54), + }, + [780] = { + [sym_subscript] = STATE(1220), + [sym_variable_name] = ACTIONS(2692), + [anon_sym_DOLLAR] = ACTIONS(2694), + [anon_sym_POUND] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2694), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2698), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_0] = ACTIONS(2700), + [anon_sym__] = ACTIONS(2700), + }, + [781] = { + [sym_for_statement] = STATE(1221), + [sym_while_statement] = STATE(1221), + [sym_if_statement] = STATE(1221), + [sym_case_statement] = STATE(1221), + [sym_function_definition] = STATE(1221), + [sym_subshell] = STATE(1221), + [sym_pipeline] = STATE(1221), + [sym_list] = STATE(1221), + [sym_command] = STATE(1221), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(1221), + [sym_variable_assignment] = STATE(1222), + [sym_declaration_command] = STATE(1221), + [sym_unset_command] = STATE(1221), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [782] = { + [sym_for_statement] = STATE(1223), + [sym_while_statement] = STATE(1223), + [sym_if_statement] = STATE(1223), + [sym_case_statement] = STATE(1223), + [sym_function_definition] = STATE(1223), + [sym_subshell] = STATE(1223), + [sym_pipeline] = STATE(1223), + [sym_list] = STATE(1223), + [sym_command] = STATE(1223), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(1223), + [sym_variable_assignment] = STATE(1224), + [sym_declaration_command] = STATE(1223), + [sym_unset_command] = STATE(1223), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), + }, + [783] = { + [sym_for_statement] = STATE(1225), + [sym_while_statement] = STATE(1225), + [sym_if_statement] = STATE(1225), + [sym_case_statement] = STATE(1225), + [sym_function_definition] = STATE(1225), + [sym_subshell] = STATE(1225), + [sym_pipeline] = STATE(1225), + [sym_list] = STATE(1225), + [sym_command] = STATE(1225), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(1225), + [sym_variable_assignment] = STATE(1226), + [sym_declaration_command] = STATE(1225), + [sym_unset_command] = STATE(1225), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [784] = { + [anon_sym_RBRACE] = ACTIONS(2690), + [sym_comment] = ACTIONS(54), + }, + [785] = { + [sym_string] = STATE(1227), + [sym_simple_expansion] = STATE(1227), + [sym_string_expansion] = STATE(1227), + [sym_expansion] = STATE(1227), + [sym_command_substitution] = STATE(1227), + [sym_process_substitution] = STATE(1227), + [sym__special_characters] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(2702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2702), + }, + [786] = { + [aux_sym_concatenation_repeat1] = STATE(1228), + [sym__concat] = ACTIONS(1728), + [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(690), + [sym__special_characters] = ACTIONS(690), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_COLON_QMARK] = ACTIONS(690), + [anon_sym_COLON_DASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(688), + [anon_sym_LT_LPAREN] = ACTIONS(688), + [anon_sym_GT_LPAREN] = ACTIONS(688), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(690), + }, + [787] = { + [sym__concat] = ACTIONS(692), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_EQ] = ACTIONS(694), + [sym__special_characters] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(694), + [sym_raw_string] = ACTIONS(692), + [anon_sym_POUND] = ACTIONS(692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(692), + [anon_sym_COLON] = ACTIONS(694), + [anon_sym_COLON_QMARK] = ACTIONS(694), + [anon_sym_COLON_DASH] = ACTIONS(694), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(692), + [anon_sym_BQUOTE] = ACTIONS(692), + [anon_sym_LT_LPAREN] = ACTIONS(692), + [anon_sym_GT_LPAREN] = ACTIONS(692), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(694), + }, + [788] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(2704), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [789] = { + [sym__concat] = ACTIONS(722), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_EQ] = ACTIONS(724), + [sym__special_characters] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(722), + [anon_sym_DOLLAR] = ACTIONS(724), + [sym_raw_string] = ACTIONS(722), + [anon_sym_POUND] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(722), + [anon_sym_COLON] = ACTIONS(724), + [anon_sym_COLON_QMARK] = ACTIONS(724), + [anon_sym_COLON_DASH] = ACTIONS(724), + [anon_sym_PERCENT] = ACTIONS(724), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(722), + [anon_sym_BQUOTE] = ACTIONS(722), + [anon_sym_LT_LPAREN] = ACTIONS(722), + [anon_sym_GT_LPAREN] = ACTIONS(722), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(724), + }, + [790] = { + [sym__concat] = ACTIONS(726), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_EQ] = ACTIONS(728), + [sym__special_characters] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(728), + [sym_raw_string] = ACTIONS(726), + [anon_sym_POUND] = ACTIONS(726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(726), + [anon_sym_COLON] = ACTIONS(728), + [anon_sym_COLON_QMARK] = ACTIONS(728), + [anon_sym_COLON_DASH] = ACTIONS(728), + [anon_sym_PERCENT] = ACTIONS(728), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(726), + [anon_sym_BQUOTE] = ACTIONS(726), + [anon_sym_LT_LPAREN] = ACTIONS(726), + [anon_sym_GT_LPAREN] = ACTIONS(726), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(728), + }, + [791] = { + [sym__concat] = ACTIONS(730), + [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(732), + [sym__special_characters] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(732), + [sym_raw_string] = ACTIONS(730), + [anon_sym_POUND] = ACTIONS(730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(730), + [anon_sym_COLON] = ACTIONS(732), + [anon_sym_COLON_QMARK] = ACTIONS(732), + [anon_sym_COLON_DASH] = ACTIONS(732), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(730), + [anon_sym_BQUOTE] = ACTIONS(730), + [anon_sym_LT_LPAREN] = ACTIONS(730), + [anon_sym_GT_LPAREN] = ACTIONS(730), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(732), + }, + [792] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(2706), + [sym_comment] = ACTIONS(54), + }, + [793] = { + [sym_concatenation] = STATE(1233), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1233), + [anon_sym_RBRACE] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2714), + [anon_sym_COLON] = ACTIONS(2710), + [anon_sym_COLON_QMARK] = ACTIONS(2710), + [anon_sym_COLON_DASH] = ACTIONS(2710), + [anon_sym_PERCENT] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [794] = { + [sym_subscript] = STATE(1237), + [sym_variable_name] = ACTIONS(2716), + [anon_sym_DOLLAR] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2720), + [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_AT] = ACTIONS(2718), + [anon_sym_QMARK] = ACTIONS(2718), + [anon_sym_0] = ACTIONS(2722), + [anon_sym__] = ACTIONS(2722), + }, + [795] = { + [sym_concatenation] = STATE(1240), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1240), + [anon_sym_RBRACE] = ACTIONS(2724), + [anon_sym_EQ] = ACTIONS(2726), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [796] = { + [sym_concatenation] = STATE(1243), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1243), + [anon_sym_RBRACE] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2738), + [anon_sym_COLON] = ACTIONS(2734), + [anon_sym_COLON_QMARK] = ACTIONS(2734), + [anon_sym_COLON_DASH] = ACTIONS(2734), + [anon_sym_PERCENT] = ACTIONS(2734), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [797] = { + [sym_concatenation] = STATE(1245), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1245), + [anon_sym_RBRACE] = ACTIONS(2740), + [anon_sym_EQ] = ACTIONS(2742), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2744), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(2742), + [anon_sym_COLON_QMARK] = ACTIONS(2742), + [anon_sym_COLON_DASH] = ACTIONS(2742), + [anon_sym_PERCENT] = ACTIONS(2742), + [anon_sym_DASH] = ACTIONS(2742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [798] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [799] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [800] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(2746), + [sym_comment] = ACTIONS(54), + }, + [801] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(2746), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [802] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(2748), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [803] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(2748), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [804] = { + [sym_file_descriptor] = ACTIONS(2750), + [sym__concat] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_RPAREN] = ACTIONS(2752), + [anon_sym_SEMI_SEMI] = ACTIONS(2752), + [anon_sym_PIPE_AMP] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_EQ_TILDE] = ACTIONS(2752), + [anon_sym_EQ_EQ] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2752), + [anon_sym_GT] = ACTIONS(2752), + [anon_sym_GT_GT] = ACTIONS(2752), + [anon_sym_AMP_GT] = ACTIONS(2752), + [anon_sym_AMP_GT_GT] = ACTIONS(2752), + [anon_sym_LT_AMP] = ACTIONS(2752), + [anon_sym_GT_AMP] = ACTIONS(2752), + [anon_sym_LT_LT] = ACTIONS(2752), + [anon_sym_LT_LT_DASH] = ACTIONS(2752), + [anon_sym_LT_LT_LT] = ACTIONS(2752), + [sym__special_characters] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2752), + [anon_sym_BQUOTE] = ACTIONS(2752), + [anon_sym_LT_LPAREN] = ACTIONS(2752), + [anon_sym_GT_LPAREN] = ACTIONS(2752), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2752), + }, + [805] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2754), + [anon_sym_EQ] = ACTIONS(2756), + [sym__special_characters] = ACTIONS(2759), + [anon_sym_DQUOTE] = ACTIONS(2762), + [anon_sym_DOLLAR] = ACTIONS(2765), + [sym_raw_string] = ACTIONS(2768), + [anon_sym_POUND] = ACTIONS(2771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2774), + [anon_sym_COLON] = ACTIONS(2756), + [anon_sym_COLON_QMARK] = ACTIONS(2756), + [anon_sym_COLON_DASH] = ACTIONS(2756), + [anon_sym_PERCENT] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2777), + [anon_sym_BQUOTE] = ACTIONS(2780), + [anon_sym_LT_LPAREN] = ACTIONS(2783), + [anon_sym_GT_LPAREN] = ACTIONS(2783), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2786), + }, + [806] = { + [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(2690), + [sym__special_characters] = ACTIONS(2789), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(2791), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2791), + }, + [807] = { + [sym_file_descriptor] = ACTIONS(2793), + [sym__concat] = ACTIONS(2793), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_RPAREN] = ACTIONS(2795), + [anon_sym_SEMI_SEMI] = ACTIONS(2795), + [anon_sym_PIPE_AMP] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_EQ_TILDE] = ACTIONS(2795), + [anon_sym_EQ_EQ] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2795), + [anon_sym_GT] = ACTIONS(2795), + [anon_sym_GT_GT] = ACTIONS(2795), + [anon_sym_AMP_GT] = ACTIONS(2795), + [anon_sym_AMP_GT_GT] = ACTIONS(2795), + [anon_sym_LT_AMP] = ACTIONS(2795), + [anon_sym_GT_AMP] = ACTIONS(2795), + [anon_sym_LT_LT] = ACTIONS(2795), + [anon_sym_LT_LT_DASH] = ACTIONS(2795), + [anon_sym_LT_LT_LT] = ACTIONS(2795), + [sym__special_characters] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [anon_sym_DOLLAR] = ACTIONS(2795), + [sym_raw_string] = ACTIONS(2795), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2795), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2795), + [anon_sym_BQUOTE] = ACTIONS(2795), + [anon_sym_LT_LPAREN] = ACTIONS(2795), + [anon_sym_GT_LPAREN] = ACTIONS(2795), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_LF] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2795), + }, + [808] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2797), + }, + [809] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2799), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [810] = { + [sym_file_descriptor] = ACTIONS(2801), + [sym__concat] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2803), + [anon_sym_RPAREN] = ACTIONS(2803), + [anon_sym_SEMI_SEMI] = ACTIONS(2803), + [anon_sym_PIPE_AMP] = ACTIONS(2803), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_PIPE_PIPE] = ACTIONS(2803), + [anon_sym_EQ_TILDE] = ACTIONS(2803), + [anon_sym_EQ_EQ] = ACTIONS(2803), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_GT] = ACTIONS(2803), + [anon_sym_GT_GT] = ACTIONS(2803), + [anon_sym_AMP_GT] = ACTIONS(2803), + [anon_sym_AMP_GT_GT] = ACTIONS(2803), + [anon_sym_LT_AMP] = ACTIONS(2803), + [anon_sym_GT_AMP] = ACTIONS(2803), + [anon_sym_LT_LT] = ACTIONS(2803), + [anon_sym_LT_LT_DASH] = ACTIONS(2803), + [anon_sym_LT_LT_LT] = ACTIONS(2803), + [sym__special_characters] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2803), + [sym_raw_string] = ACTIONS(2803), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2803), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2803), + [anon_sym_BQUOTE] = ACTIONS(2803), + [anon_sym_LT_LPAREN] = ACTIONS(2803), + [anon_sym_GT_LPAREN] = ACTIONS(2803), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_LF] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + }, + [811] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2805), + }, + [812] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2807), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [813] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(2809), + }, + [814] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [815] = { + [sym_concatenation] = STATE(1257), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1257), + [anon_sym_RBRACE] = ACTIONS(2811), + [anon_sym_EQ] = ACTIONS(2813), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(2813), + [anon_sym_COLON_QMARK] = ACTIONS(2813), + [anon_sym_COLON_DASH] = ACTIONS(2813), + [anon_sym_PERCENT] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [816] = { + [sym_file_descriptor] = ACTIONS(2817), + [sym__concat] = ACTIONS(2817), + [anon_sym_PIPE] = ACTIONS(2819), + [anon_sym_RPAREN] = ACTIONS(2819), + [anon_sym_SEMI_SEMI] = ACTIONS(2819), + [anon_sym_PIPE_AMP] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_PIPE_PIPE] = ACTIONS(2819), + [anon_sym_EQ_TILDE] = ACTIONS(2819), + [anon_sym_EQ_EQ] = ACTIONS(2819), + [anon_sym_LT] = ACTIONS(2819), + [anon_sym_GT] = ACTIONS(2819), + [anon_sym_GT_GT] = ACTIONS(2819), + [anon_sym_AMP_GT] = ACTIONS(2819), + [anon_sym_AMP_GT_GT] = ACTIONS(2819), + [anon_sym_LT_AMP] = ACTIONS(2819), + [anon_sym_GT_AMP] = ACTIONS(2819), + [anon_sym_LT_LT] = ACTIONS(2819), + [anon_sym_LT_LT_DASH] = ACTIONS(2819), + [anon_sym_LT_LT_LT] = ACTIONS(2819), + [sym__special_characters] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [anon_sym_DOLLAR] = ACTIONS(2819), + [sym_raw_string] = ACTIONS(2819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2819), + [anon_sym_BQUOTE] = ACTIONS(2819), + [anon_sym_LT_LPAREN] = ACTIONS(2819), + [anon_sym_GT_LPAREN] = ACTIONS(2819), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_LF] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2819), + }, + [817] = { + [sym_concatenation] = STATE(1259), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1259), + [anon_sym_RBRACE] = ACTIONS(2821), + [anon_sym_EQ] = ACTIONS(2823), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2825), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [818] = { + [sym_file_descriptor] = ACTIONS(1079), + [sym_variable_name] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_RPAREN] = ACTIONS(1079), + [anon_sym_PIPE_AMP] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(1079), + [anon_sym_PIPE_PIPE] = ACTIONS(1079), + [anon_sym_LT] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1079), + [anon_sym_AMP_GT] = ACTIONS(1081), + [anon_sym_AMP_GT_GT] = ACTIONS(1079), + [anon_sym_LT_AMP] = ACTIONS(1079), + [anon_sym_GT_AMP] = ACTIONS(1079), + [sym__special_characters] = ACTIONS(1079), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_DOLLAR] = ACTIONS(1081), + [sym_raw_string] = ACTIONS(1079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1079), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1079), + [anon_sym_BQUOTE] = ACTIONS(1079), + [anon_sym_LT_LPAREN] = ACTIONS(1079), + [anon_sym_GT_LPAREN] = ACTIONS(1079), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1079), + }, + [819] = { + [sym_concatenation] = STATE(1261), + [sym_string] = STATE(549), + [sym_simple_expansion] = STATE(549), + [sym_string_expansion] = STATE(549), + [sym_expansion] = STATE(549), + [sym_command_substitution] = STATE(549), + [sym_process_substitution] = STATE(549), + [aux_sym_for_statement_repeat1] = STATE(1261), + [anon_sym_RPAREN] = ACTIONS(2827), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(1089), + [sym_raw_string] = ACTIONS(1091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1095), + [anon_sym_BQUOTE] = ACTIONS(1097), + [anon_sym_LT_LPAREN] = ACTIONS(1099), + [anon_sym_GT_LPAREN] = ACTIONS(1099), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1091), + }, + [820] = { + [aux_sym_concatenation_repeat1] = STATE(1262), + [sym_file_descriptor] = ACTIONS(1101), + [sym__concat] = ACTIONS(658), + [sym_variable_name] = ACTIONS(1101), + [anon_sym_PIPE] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(1101), + [anon_sym_PIPE_AMP] = ACTIONS(1101), + [anon_sym_AMP_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1101), + [anon_sym_LT] = ACTIONS(1105), + [anon_sym_GT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1101), + [anon_sym_AMP_GT] = ACTIONS(1105), + [anon_sym_AMP_GT_GT] = ACTIONS(1101), + [anon_sym_LT_AMP] = ACTIONS(1101), + [anon_sym_GT_AMP] = ACTIONS(1101), + [sym__special_characters] = ACTIONS(1101), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_DOLLAR] = ACTIONS(1105), + [sym_raw_string] = ACTIONS(1101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1101), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1101), + [anon_sym_LT_LPAREN] = ACTIONS(1101), + [anon_sym_GT_LPAREN] = ACTIONS(1101), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1101), + }, + [821] = { + [aux_sym_concatenation_repeat1] = STATE(1262), + [sym_file_descriptor] = ACTIONS(1079), + [sym__concat] = ACTIONS(658), + [sym_variable_name] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_RPAREN] = ACTIONS(1079), + [anon_sym_PIPE_AMP] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(1079), + [anon_sym_PIPE_PIPE] = ACTIONS(1079), + [anon_sym_LT] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1079), + [anon_sym_AMP_GT] = ACTIONS(1081), + [anon_sym_AMP_GT_GT] = ACTIONS(1079), + [anon_sym_LT_AMP] = ACTIONS(1079), + [anon_sym_GT_AMP] = ACTIONS(1079), + [sym__special_characters] = ACTIONS(1079), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_DOLLAR] = ACTIONS(1081), + [sym_raw_string] = ACTIONS(1079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1079), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1079), + [anon_sym_BQUOTE] = ACTIONS(1079), + [anon_sym_LT_LPAREN] = ACTIONS(1079), + [anon_sym_GT_LPAREN] = ACTIONS(1079), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1079), + }, + [822] = { + [sym_concatenation] = STATE(1263), + [sym_string] = STATE(576), + [sym_simple_expansion] = STATE(576), + [sym_string_expansion] = STATE(576), + [sym_expansion] = STATE(576), + [sym_command_substitution] = STATE(576), + [sym_process_substitution] = STATE(576), + [aux_sym_for_statement_repeat1] = STATE(1263), + [sym__special_characters] = ACTIONS(1127), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_DOLLAR] = ACTIONS(1131), + [sym_raw_string] = ACTIONS(1133), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1135), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1137), + [anon_sym_BQUOTE] = ACTIONS(1139), + [anon_sym_LT_LPAREN] = ACTIONS(1141), + [anon_sym_GT_LPAREN] = ACTIONS(1141), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1133), + }, + [823] = { + [sym_do_group] = STATE(1265), + [anon_sym_do] = ACTIONS(2829), + [sym_comment] = ACTIONS(54), + }, + [824] = { + [sym__terminated_statement] = STATE(1267), + [sym_for_statement] = STATE(585), + [sym_while_statement] = STATE(585), + [sym_if_statement] = STATE(585), + [sym_case_statement] = STATE(585), + [sym_function_definition] = STATE(585), + [sym_subshell] = STATE(585), + [sym_pipeline] = STATE(585), + [sym_list] = STATE(585), + [sym_command] = STATE(585), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(585), + [sym_variable_assignment] = STATE(586), + [sym_declaration_command] = STATE(585), + [sym_unset_command] = STATE(585), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1267), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_done] = ACTIONS(2831), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [825] = { + [sym_file_redirect] = STATE(1268), + [sym_heredoc_redirect] = STATE(1268), + [sym_herestring_redirect] = STATE(1268), + [aux_sym_while_statement_repeat1] = STATE(1268), + [sym_file_descriptor] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(1147), + [anon_sym_RPAREN] = ACTIONS(1149), + [anon_sym_PIPE_AMP] = ACTIONS(1149), + [anon_sym_AMP_AMP] = ACTIONS(1149), + [anon_sym_PIPE_PIPE] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [sym_comment] = ACTIONS(54), + }, + [826] = { + [sym__terminated_statement] = STATE(1271), + [sym_for_statement] = STATE(592), + [sym_while_statement] = STATE(592), + [sym_if_statement] = STATE(592), + [sym_elif_clause] = STATE(1272), + [sym_else_clause] = STATE(1270), + [sym_case_statement] = STATE(592), + [sym_function_definition] = STATE(592), + [sym_subshell] = STATE(592), + [sym_pipeline] = STATE(592), + [sym_list] = STATE(592), + [sym_command] = STATE(592), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(592), + [sym_variable_assignment] = STATE(594), + [sym_declaration_command] = STATE(592), + [sym_unset_command] = STATE(592), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1271), + [aux_sym_if_statement_repeat1] = STATE(1272), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_fi] = ACTIONS(2833), + [anon_sym_elif] = ACTIONS(1153), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [827] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2835), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2835), + [anon_sym_LF] = ACTIONS(2837), + [anon_sym_AMP] = ACTIONS(2835), + }, + [828] = { + [anon_sym_in] = ACTIONS(2839), + [sym_comment] = ACTIONS(54), + }, + [829] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2841), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_LF] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2841), + }, + [830] = { + [anon_sym_in] = ACTIONS(2845), + [sym_comment] = ACTIONS(54), + }, + [831] = { + [anon_sym_RPAREN] = ACTIONS(2847), + [sym_comment] = ACTIONS(54), + }, + [832] = { + [sym__terminated_statement] = STATE(1279), + [sym_for_statement] = STATE(622), + [sym_while_statement] = STATE(622), + [sym_if_statement] = STATE(622), + [sym_case_statement] = STATE(622), + [sym_function_definition] = STATE(622), + [sym_subshell] = STATE(622), + [sym_pipeline] = STATE(622), + [sym_list] = STATE(622), + [sym_command] = STATE(622), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(622), + [sym_variable_assignment] = STATE(623), + [sym_declaration_command] = STATE(622), + [sym_unset_command] = STATE(622), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1279), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [833] = { + [sym_file_redirect] = STATE(1282), + [sym_file_descriptor] = ACTIONS(2851), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_RPAREN] = ACTIONS(1221), + [anon_sym_PIPE_AMP] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1221), + [anon_sym_PIPE_PIPE] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(2853), + [anon_sym_GT] = ACTIONS(2853), + [anon_sym_GT_GT] = ACTIONS(2855), + [anon_sym_AMP_GT] = ACTIONS(2853), + [anon_sym_AMP_GT_GT] = ACTIONS(2855), + [anon_sym_LT_AMP] = ACTIONS(2855), + [anon_sym_GT_AMP] = ACTIONS(2855), + [sym_comment] = ACTIONS(54), + }, + [834] = { + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_RPAREN] = ACTIONS(1237), + [anon_sym_PIPE_AMP] = ACTIONS(1237), + [anon_sym_AMP_AMP] = ACTIONS(1237), + [anon_sym_PIPE_PIPE] = ACTIONS(1237), + [anon_sym_BQUOTE] = ACTIONS(1237), + [sym_comment] = ACTIONS(54), + }, + [835] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(2857), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(944), + [sym_raw_string] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(944), + }, + [836] = { + [anon_sym_PIPE] = ACTIONS(460), + [anon_sym_RPAREN] = ACTIONS(2859), + [anon_sym_SEMI_SEMI] = ACTIONS(2861), + [anon_sym_PIPE_AMP] = ACTIONS(460), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2861), + [anon_sym_LF] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2861), + }, + [837] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(460), + [anon_sym_RPAREN] = ACTIONS(2859), + [anon_sym_SEMI_SEMI] = ACTIONS(2861), + [anon_sym_PIPE_AMP] = ACTIONS(460), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(2861), + [anon_sym_LF] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2861), + }, + [838] = { + [sym_file_redirect] = STATE(1285), + [sym_heredoc_redirect] = STATE(1285), + [sym_herestring_redirect] = STATE(1285), + [aux_sym_while_statement_repeat1] = STATE(1285), + [sym_file_descriptor] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_RPAREN] = ACTIONS(1315), + [anon_sym_PIPE_AMP] = ACTIONS(1315), + [anon_sym_AMP_AMP] = ACTIONS(1315), + [anon_sym_PIPE_PIPE] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [sym_comment] = ACTIONS(54), + }, + [839] = { + [sym_concatenation] = STATE(1286), + [sym_string] = STATE(1289), + [sym_array] = STATE(1286), + [sym_simple_expansion] = STATE(1289), + [sym_string_expansion] = STATE(1289), + [sym_expansion] = STATE(1289), + [sym_command_substitution] = STATE(1289), + [sym_process_substitution] = STATE(1289), + [sym__empty_value] = ACTIONS(2865), + [anon_sym_LPAREN] = ACTIONS(2867), + [sym__special_characters] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(802), + [anon_sym_DOLLAR] = ACTIONS(804), + [sym_raw_string] = ACTIONS(2871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(810), + [anon_sym_BQUOTE] = ACTIONS(812), + [anon_sym_LT_LPAREN] = ACTIONS(814), + [anon_sym_GT_LPAREN] = ACTIONS(814), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2871), + }, + [840] = { + [sym_variable_name] = ACTIONS(388), + [anon_sym_PIPE] = ACTIONS(390), + [anon_sym_RPAREN] = ACTIONS(388), + [anon_sym_PIPE_AMP] = ACTIONS(388), + [anon_sym_AMP_AMP] = ACTIONS(388), + [anon_sym_PIPE_PIPE] = ACTIONS(388), + [sym__special_characters] = ACTIONS(388), + [anon_sym_DQUOTE] = ACTIONS(388), + [anon_sym_DOLLAR] = ACTIONS(390), + [sym_raw_string] = ACTIONS(388), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(388), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(388), + [anon_sym_BQUOTE] = ACTIONS(388), + [anon_sym_LT_LPAREN] = ACTIONS(388), + [anon_sym_GT_LPAREN] = ACTIONS(388), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(390), + [sym_word] = ACTIONS(390), + }, + [841] = { + [sym_string] = STATE(1290), + [sym_simple_expansion] = STATE(1290), + [sym_string_expansion] = STATE(1290), + [sym_expansion] = STATE(1290), + [sym_command_substitution] = STATE(1290), + [sym_process_substitution] = STATE(1290), + [sym__special_characters] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(802), + [anon_sym_DOLLAR] = ACTIONS(804), + [sym_raw_string] = ACTIONS(2873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(810), + [anon_sym_BQUOTE] = ACTIONS(812), + [anon_sym_LT_LPAREN] = ACTIONS(814), + [anon_sym_GT_LPAREN] = ACTIONS(814), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2873), + }, + [842] = { + [aux_sym_concatenation_repeat1] = STATE(1291), + [sym__concat] = ACTIONS(1848), + [sym_variable_name] = ACTIONS(688), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(688), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [sym__special_characters] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(688), + [anon_sym_LT_LPAREN] = ACTIONS(688), + [anon_sym_GT_LPAREN] = ACTIONS(688), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(690), + [sym_word] = ACTIONS(690), + }, + [843] = { + [sym__concat] = ACTIONS(692), + [sym_variable_name] = ACTIONS(692), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(692), + [anon_sym_PIPE_AMP] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [sym__special_characters] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(694), + [sym_raw_string] = ACTIONS(692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(692), + [anon_sym_BQUOTE] = ACTIONS(692), + [anon_sym_LT_LPAREN] = ACTIONS(692), + [anon_sym_GT_LPAREN] = ACTIONS(692), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(694), + [sym_word] = ACTIONS(694), + }, + [844] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(2875), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [845] = { + [sym__concat] = ACTIONS(722), + [sym_variable_name] = ACTIONS(722), + [anon_sym_PIPE] = ACTIONS(724), [anon_sym_RPAREN] = ACTIONS(722), - [anon_sym_SEMI_SEMI] = ACTIONS(722), [anon_sym_PIPE_AMP] = ACTIONS(722), [anon_sym_AMP_AMP] = ACTIONS(722), [anon_sym_PIPE_PIPE] = ACTIONS(722), - [sym__special_characters] = ACTIONS(494), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DOLLAR] = ACTIONS(498), - [sym_raw_string] = ACTIONS(500), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(502), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(504), - [anon_sym_BQUOTE] = ACTIONS(506), - [anon_sym_LT_LPAREN] = ACTIONS(508), - [anon_sym_GT_LPAREN] = ACTIONS(508), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(184), - [sym_word] = ACTIONS(500), - [anon_sym_SEMI] = ACTIONS(722), - [anon_sym_LF] = ACTIONS(722), - [anon_sym_AMP] = ACTIONS(722), + [sym__special_characters] = ACTIONS(722), + [anon_sym_DQUOTE] = ACTIONS(722), + [anon_sym_DOLLAR] = ACTIONS(724), + [sym_raw_string] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(722), + [anon_sym_BQUOTE] = ACTIONS(722), + [anon_sym_LT_LPAREN] = ACTIONS(722), + [anon_sym_GT_LPAREN] = ACTIONS(722), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(724), + [sym_word] = ACTIONS(724), }, - [285] = { - [aux_sym_concatenation_repeat1] = STATE(774), - [sym__concat] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(726), + [846] = { + [sym__concat] = ACTIONS(726), + [sym_variable_name] = ACTIONS(726), + [anon_sym_PIPE] = ACTIONS(728), [anon_sym_RPAREN] = ACTIONS(726), - [anon_sym_SEMI_SEMI] = ACTIONS(726), [anon_sym_PIPE_AMP] = ACTIONS(726), [anon_sym_AMP_AMP] = ACTIONS(726), [anon_sym_PIPE_PIPE] = ACTIONS(726), [sym__special_characters] = ACTIONS(726), [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_DOLLAR] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(728), [sym_raw_string] = ACTIONS(726), [anon_sym_DOLLAR_LBRACE] = ACTIONS(726), [anon_sym_DOLLAR_LPAREN] = ACTIONS(726), [anon_sym_BQUOTE] = ACTIONS(726), [anon_sym_LT_LPAREN] = ACTIONS(726), [anon_sym_GT_LPAREN] = ACTIONS(726), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(726), - [sym_word] = ACTIONS(726), - [anon_sym_SEMI] = ACTIONS(726), - [anon_sym_LF] = ACTIONS(726), - [anon_sym_AMP] = ACTIONS(726), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(728), + [sym_word] = ACTIONS(728), }, - [286] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(776), - [anon_sym_DQUOTE] = ACTIONS(1459), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), + [847] = { + [sym__concat] = ACTIONS(730), + [sym_variable_name] = ACTIONS(730), + [anon_sym_PIPE] = ACTIONS(732), + [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_PIPE_AMP] = ACTIONS(730), + [anon_sym_AMP_AMP] = ACTIONS(730), + [anon_sym_PIPE_PIPE] = ACTIONS(730), + [sym__special_characters] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(732), + [sym_raw_string] = ACTIONS(730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(730), + [anon_sym_BQUOTE] = ACTIONS(730), + [anon_sym_LT_LPAREN] = ACTIONS(730), + [anon_sym_GT_LPAREN] = ACTIONS(730), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(732), + [sym_word] = ACTIONS(732), }, - [287] = { - [sym_string] = STATE(778), - [anon_sym_DQUOTE] = ACTIONS(1461), - [anon_sym_DOLLAR] = ACTIONS(1463), - [sym_raw_string] = ACTIONS(1465), - [anon_sym_POUND] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_AT] = ACTIONS(1463), - [anon_sym_QMARK] = ACTIONS(1463), - [anon_sym_0] = ACTIONS(1469), - [anon_sym__] = ACTIONS(1469), + [848] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(2877), + [sym_comment] = ACTIONS(54), }, - [288] = { - [aux_sym_concatenation_repeat1] = STATE(774), - [sym__concat] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(740), - [anon_sym_RPAREN] = ACTIONS(740), - [anon_sym_SEMI_SEMI] = ACTIONS(740), - [anon_sym_PIPE_AMP] = ACTIONS(740), - [anon_sym_AMP_AMP] = ACTIONS(740), - [anon_sym_PIPE_PIPE] = ACTIONS(740), - [sym__special_characters] = ACTIONS(740), - [anon_sym_DQUOTE] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(740), - [sym_raw_string] = ACTIONS(740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(740), - [anon_sym_BQUOTE] = ACTIONS(740), - [anon_sym_LT_LPAREN] = ACTIONS(740), - [anon_sym_GT_LPAREN] = ACTIONS(740), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(740), - [sym_word] = ACTIONS(740), - [anon_sym_SEMI] = ACTIONS(740), - [anon_sym_LF] = ACTIONS(740), - [anon_sym_AMP] = ACTIONS(740), + [849] = { + [sym_concatenation] = STATE(1296), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1296), + [anon_sym_RBRACE] = ACTIONS(2879), + [anon_sym_EQ] = ACTIONS(2881), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2885), + [anon_sym_COLON] = ACTIONS(2881), + [anon_sym_COLON_QMARK] = ACTIONS(2881), + [anon_sym_COLON_DASH] = ACTIONS(2881), + [anon_sym_PERCENT] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [289] = { - [sym_subscript] = STATE(784), - [sym_variable_name] = ACTIONS(1471), - [anon_sym_DOLLAR] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1473), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(1473), - [anon_sym_QMARK] = ACTIONS(1473), - [anon_sym_0] = ACTIONS(1479), - [anon_sym__] = ACTIONS(1479), + [850] = { + [sym_subscript] = STATE(1300), + [sym_variable_name] = ACTIONS(2887), + [anon_sym_DOLLAR] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_AT] = ACTIONS(2889), + [anon_sym_QMARK] = ACTIONS(2889), + [anon_sym_0] = ACTIONS(2893), + [anon_sym__] = ACTIONS(2893), }, - [290] = { - [sym_for_statement] = STATE(785), - [sym_while_statement] = STATE(785), - [sym_if_statement] = STATE(785), - [sym_case_statement] = STATE(785), - [sym_function_definition] = STATE(785), - [sym_subshell] = STATE(785), - [sym_pipeline] = STATE(785), - [sym_list] = STATE(785), - [sym_command] = STATE(785), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(785), - [sym_variable_assignment] = STATE(786), - [sym_declaration_command] = STATE(785), - [sym_unset_command] = STATE(785), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [851] = { + [sym_concatenation] = STATE(1303), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1303), + [anon_sym_RBRACE] = ACTIONS(2895), + [anon_sym_EQ] = ACTIONS(2897), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2901), + [anon_sym_COLON] = ACTIONS(2897), + [anon_sym_COLON_QMARK] = ACTIONS(2897), + [anon_sym_COLON_DASH] = ACTIONS(2897), + [anon_sym_PERCENT] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [291] = { - [sym_for_statement] = STATE(787), - [sym_while_statement] = STATE(787), - [sym_if_statement] = STATE(787), - [sym_case_statement] = STATE(787), - [sym_function_definition] = STATE(787), - [sym_subshell] = STATE(787), - [sym_pipeline] = STATE(787), - [sym_list] = STATE(787), - [sym_command] = STATE(787), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(787), - [sym_variable_assignment] = STATE(788), - [sym_declaration_command] = STATE(787), - [sym_unset_command] = STATE(787), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), + [852] = { + [sym_concatenation] = STATE(1306), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1306), + [anon_sym_RBRACE] = ACTIONS(2903), + [anon_sym_EQ] = ACTIONS(2905), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2909), + [anon_sym_COLON] = ACTIONS(2905), + [anon_sym_COLON_QMARK] = ACTIONS(2905), + [anon_sym_COLON_DASH] = ACTIONS(2905), + [anon_sym_PERCENT] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [292] = { - [sym_for_statement] = STATE(789), - [sym_while_statement] = STATE(789), - [sym_if_statement] = STATE(789), - [sym_case_statement] = STATE(789), - [sym_function_definition] = STATE(789), - [sym_subshell] = STATE(789), - [sym_pipeline] = STATE(789), - [sym_list] = STATE(789), - [sym_command] = STATE(789), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(789), - [sym_variable_assignment] = STATE(790), - [sym_declaration_command] = STATE(789), - [sym_unset_command] = STATE(789), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [853] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(2911), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), }, - [293] = { - [sym_concatenation] = STATE(119), - [sym_string] = STATE(288), - [sym_simple_expansion] = STATE(288), - [sym_string_expansion] = STATE(288), - [sym_expansion] = STATE(288), - [sym_command_substitution] = STATE(288), - [sym_process_substitution] = STATE(288), - [aux_sym_unset_command_repeat1] = STATE(791), - [anon_sym_PIPE] = ACTIONS(754), - [anon_sym_RPAREN] = ACTIONS(754), - [anon_sym_SEMI_SEMI] = ACTIONS(754), - [anon_sym_PIPE_AMP] = ACTIONS(754), - [anon_sym_AMP_AMP] = ACTIONS(754), - [anon_sym_PIPE_PIPE] = ACTIONS(754), - [sym__special_characters] = ACTIONS(510), - [anon_sym_DQUOTE] = ACTIONS(512), - [anon_sym_DOLLAR] = ACTIONS(514), - [sym_raw_string] = ACTIONS(516), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(518), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(520), - [anon_sym_BQUOTE] = ACTIONS(522), - [anon_sym_LT_LPAREN] = ACTIONS(524), - [anon_sym_GT_LPAREN] = ACTIONS(524), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(204), - [sym_word] = ACTIONS(516), - [anon_sym_SEMI] = ACTIONS(754), - [anon_sym_LF] = ACTIONS(754), - [anon_sym_AMP] = ACTIONS(754), + [854] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(2911), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), }, - [294] = { - [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(1481), - [anon_sym_DQUOTE] = ACTIONS(106), - [anon_sym_DOLLAR] = ACTIONS(108), - [sym_raw_string] = ACTIONS(1483), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(114), - [anon_sym_BQUOTE] = ACTIONS(116), - [anon_sym_LT_LPAREN] = ACTIONS(118), - [anon_sym_GT_LPAREN] = ACTIONS(118), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1481), + [855] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(2911), + [sym_comment] = ACTIONS(54), }, - [295] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym_file_descriptor] = ACTIONS(790), - [sym__concat] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(792), - [anon_sym_RPAREN] = ACTIONS(792), - [anon_sym_SEMI_SEMI] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [anon_sym_EQ_TILDE] = ACTIONS(792), - [anon_sym_EQ_EQ] = ACTIONS(792), - [anon_sym_LT] = ACTIONS(792), - [anon_sym_GT] = ACTIONS(792), - [anon_sym_GT_GT] = ACTIONS(792), - [anon_sym_AMP_GT] = ACTIONS(792), - [anon_sym_AMP_GT_GT] = ACTIONS(792), - [anon_sym_LT_AMP] = ACTIONS(792), - [anon_sym_GT_AMP] = ACTIONS(792), - [anon_sym_LT_LT] = ACTIONS(792), - [anon_sym_LT_LT_DASH] = ACTIONS(792), - [anon_sym_LT_LT_LT] = ACTIONS(792), - [sym__special_characters] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(792), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(792), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LF] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(792), + [856] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(2911), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), }, - [296] = { - [sym_file_descriptor] = ACTIONS(794), - [sym__concat] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_RPAREN] = ACTIONS(796), - [anon_sym_SEMI_SEMI] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [anon_sym_EQ_TILDE] = ACTIONS(796), - [anon_sym_EQ_EQ] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_GT] = ACTIONS(796), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_AMP_GT] = ACTIONS(796), - [anon_sym_AMP_GT_GT] = ACTIONS(796), - [anon_sym_LT_AMP] = ACTIONS(796), - [anon_sym_GT_AMP] = ACTIONS(796), - [anon_sym_LT_LT] = ACTIONS(796), - [anon_sym_LT_LT_DASH] = ACTIONS(796), - [anon_sym_LT_LT_LT] = ACTIONS(796), - [sym__special_characters] = ACTIONS(796), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(796), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(796), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_LF] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), + [857] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(2913), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), }, - [297] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(1485), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), + [858] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(2913), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), }, - [298] = { - [sym_file_descriptor] = ACTIONS(826), - [sym__concat] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_SEMI_SEMI] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [anon_sym_EQ_TILDE] = ACTIONS(828), - [anon_sym_EQ_EQ] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(828), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(828), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), - [anon_sym_LT_LT] = ACTIONS(828), - [anon_sym_LT_LT_DASH] = ACTIONS(828), - [anon_sym_LT_LT_LT] = ACTIONS(828), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [sym_raw_string] = ACTIONS(828), + [859] = { + [sym_variable_assignment] = STATE(859), + [sym_subscript] = STATE(444), + [sym_concatenation] = STATE(859), + [sym_string] = STATE(438), + [sym_simple_expansion] = STATE(438), + [sym_string_expansion] = STATE(438), + [sym_expansion] = STATE(438), + [sym_command_substitution] = STATE(438), + [sym_process_substitution] = STATE(438), + [aux_sym_declaration_command_repeat1] = STATE(859), + [sym_variable_name] = ACTIONS(2915), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_RPAREN] = ACTIONS(1509), + [anon_sym_PIPE_AMP] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1509), + [sym__special_characters] = ACTIONS(2918), + [anon_sym_DQUOTE] = ACTIONS(2921), + [anon_sym_DOLLAR] = ACTIONS(2924), + [sym_raw_string] = ACTIONS(2927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2933), + [anon_sym_BQUOTE] = ACTIONS(2936), + [anon_sym_LT_LPAREN] = ACTIONS(2939), + [anon_sym_GT_LPAREN] = ACTIONS(2939), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2942), + [sym_word] = ACTIONS(2945), + }, + [860] = { + [sym_string] = STATE(1309), + [sym_simple_expansion] = STATE(1309), + [sym_string_expansion] = STATE(1309), + [sym_expansion] = STATE(1309), + [sym_command_substitution] = STATE(1309), + [sym_process_substitution] = STATE(1309), + [sym__special_characters] = ACTIONS(2948), + [anon_sym_DQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(824), + [sym_raw_string] = ACTIONS(2948), [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(828), - }, - [299] = { - [sym_file_descriptor] = ACTIONS(830), - [sym__concat] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [anon_sym_EQ_TILDE] = ACTIONS(832), - [anon_sym_EQ_EQ] = ACTIONS(832), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_GT] = ACTIONS(832), - [anon_sym_GT_GT] = ACTIONS(832), - [anon_sym_AMP_GT] = ACTIONS(832), - [anon_sym_AMP_GT_GT] = ACTIONS(832), - [anon_sym_LT_AMP] = ACTIONS(832), - [anon_sym_GT_AMP] = ACTIONS(832), - [anon_sym_LT_LT] = ACTIONS(832), - [anon_sym_LT_LT_DASH] = ACTIONS(832), - [anon_sym_LT_LT_LT] = ACTIONS(832), - [sym__special_characters] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(832), - [anon_sym_AMP] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2948), }, - [300] = { - [sym_file_descriptor] = ACTIONS(834), - [sym__concat] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_SEMI_SEMI] = ACTIONS(836), - [anon_sym_PIPE_AMP] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [anon_sym_EQ_TILDE] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_AMP_GT] = ACTIONS(836), - [anon_sym_AMP_GT_GT] = ACTIONS(836), - [anon_sym_LT_AMP] = ACTIONS(836), - [anon_sym_GT_AMP] = ACTIONS(836), - [anon_sym_LT_LT] = ACTIONS(836), - [anon_sym_LT_LT_DASH] = ACTIONS(836), - [anon_sym_LT_LT_LT] = ACTIONS(836), - [sym__special_characters] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [sym_raw_string] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), - [anon_sym_BQUOTE] = ACTIONS(836), - [anon_sym_LT_LPAREN] = ACTIONS(836), - [anon_sym_GT_LPAREN] = ACTIONS(836), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(836), + [861] = { + [aux_sym_concatenation_repeat1] = STATE(1310), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(688), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [sym__special_characters] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(688), + [anon_sym_LT_LPAREN] = ACTIONS(688), + [anon_sym_GT_LPAREN] = ACTIONS(688), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(690), + [sym_word] = ACTIONS(690), }, - [301] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(1487), - [sym_comment] = ACTIONS(56), + [862] = { + [sym__concat] = ACTIONS(692), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(692), + [anon_sym_PIPE_AMP] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [sym__special_characters] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(694), + [sym_raw_string] = ACTIONS(692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(692), + [anon_sym_BQUOTE] = ACTIONS(692), + [anon_sym_LT_LPAREN] = ACTIONS(692), + [anon_sym_GT_LPAREN] = ACTIONS(692), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(694), + [sym_word] = ACTIONS(694), }, - [302] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(798), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1491), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [863] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), }, - [303] = { - [sym_subscript] = STATE(802), - [sym_variable_name] = ACTIONS(1493), - [anon_sym_DOLLAR] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1497), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_QMARK] = ACTIONS(1495), - [anon_sym_0] = ACTIONS(1499), - [anon_sym__] = ACTIONS(1499), + [864] = { + [sym__concat] = ACTIONS(722), + [anon_sym_PIPE] = ACTIONS(724), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_PIPE_AMP] = ACTIONS(722), + [anon_sym_AMP_AMP] = ACTIONS(722), + [anon_sym_PIPE_PIPE] = ACTIONS(722), + [sym__special_characters] = ACTIONS(722), + [anon_sym_DQUOTE] = ACTIONS(722), + [anon_sym_DOLLAR] = ACTIONS(724), + [sym_raw_string] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(722), + [anon_sym_BQUOTE] = ACTIONS(722), + [anon_sym_LT_LPAREN] = ACTIONS(722), + [anon_sym_GT_LPAREN] = ACTIONS(722), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(724), + [sym_word] = ACTIONS(724), }, - [304] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), + [865] = { + [sym__concat] = ACTIONS(726), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_PIPE_AMP] = ACTIONS(726), + [anon_sym_AMP_AMP] = ACTIONS(726), + [anon_sym_PIPE_PIPE] = ACTIONS(726), + [sym__special_characters] = ACTIONS(726), + [anon_sym_DQUOTE] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(728), + [sym_raw_string] = ACTIONS(726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(726), + [anon_sym_BQUOTE] = ACTIONS(726), + [anon_sym_LT_LPAREN] = ACTIONS(726), + [anon_sym_GT_LPAREN] = ACTIONS(726), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(728), + [sym_word] = ACTIONS(728), + }, + [866] = { + [sym__concat] = ACTIONS(730), + [anon_sym_PIPE] = ACTIONS(732), + [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_PIPE_AMP] = ACTIONS(730), + [anon_sym_AMP_AMP] = ACTIONS(730), + [anon_sym_PIPE_PIPE] = ACTIONS(730), + [sym__special_characters] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(732), + [sym_raw_string] = ACTIONS(730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(730), + [anon_sym_BQUOTE] = ACTIONS(730), + [anon_sym_LT_LPAREN] = ACTIONS(730), + [anon_sym_GT_LPAREN] = ACTIONS(730), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(732), + [sym_word] = ACTIONS(732), + }, + [867] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(2952), + [sym_comment] = ACTIONS(54), + }, + [868] = { + [sym_concatenation] = STATE(1315), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1315), + [anon_sym_RBRACE] = ACTIONS(2954), + [anon_sym_EQ] = ACTIONS(2956), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2958), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2960), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_COLON_QMARK] = ACTIONS(2956), + [anon_sym_COLON_DASH] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [869] = { + [sym_subscript] = STATE(1319), + [sym_variable_name] = ACTIONS(2962), + [anon_sym_DOLLAR] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2966), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_AT] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_0] = ACTIONS(2968), + [anon_sym__] = ACTIONS(2968), + }, + [870] = { + [sym_concatenation] = STATE(1322), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1322), + [anon_sym_RBRACE] = ACTIONS(2970), + [anon_sym_EQ] = ACTIONS(2972), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2974), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2976), + [anon_sym_COLON] = ACTIONS(2972), + [anon_sym_COLON_QMARK] = ACTIONS(2972), + [anon_sym_COLON_DASH] = ACTIONS(2972), + [anon_sym_PERCENT] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [871] = { + [sym_concatenation] = STATE(1325), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1325), + [anon_sym_RBRACE] = ACTIONS(2978), + [anon_sym_EQ] = ACTIONS(2980), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(2982), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(2984), + [anon_sym_COLON] = ACTIONS(2980), + [anon_sym_COLON_QMARK] = ACTIONS(2980), + [anon_sym_COLON_DASH] = ACTIONS(2980), + [anon_sym_PERCENT] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [872] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(2986), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [873] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(2986), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [874] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(2986), + [sym_comment] = ACTIONS(54), + }, + [875] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(2986), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [876] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(2988), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [877] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(2988), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [878] = { + [sym_concatenation] = STATE(878), + [sym_string] = STATE(449), + [sym_simple_expansion] = STATE(449), + [sym_string_expansion] = STATE(449), + [sym_expansion] = STATE(449), + [sym_command_substitution] = STATE(449), + [sym_process_substitution] = STATE(449), + [aux_sym_unset_command_repeat1] = STATE(878), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_RPAREN] = ACTIONS(1590), + [anon_sym_PIPE_AMP] = ACTIONS(1590), + [anon_sym_AMP_AMP] = ACTIONS(1590), + [anon_sym_PIPE_PIPE] = ACTIONS(1590), + [sym__special_characters] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2993), + [anon_sym_DOLLAR] = ACTIONS(2996), + [sym_raw_string] = ACTIONS(2999), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3005), + [anon_sym_BQUOTE] = ACTIONS(3008), + [anon_sym_LT_LPAREN] = ACTIONS(3011), + [anon_sym_GT_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3014), + [sym_word] = ACTIONS(3017), + }, + [879] = { + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_PIPE_AMP] = ACTIONS(1634), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE_PIPE] = ACTIONS(1634), + [anon_sym_EQ_TILDE] = ACTIONS(1636), + [anon_sym_EQ_EQ] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1634), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1634), + [anon_sym_LT_AMP] = ACTIONS(1634), + [anon_sym_GT_AMP] = ACTIONS(1634), + [anon_sym_LT_LT] = ACTIONS(1636), + [anon_sym_LT_LT_DASH] = ACTIONS(1634), + [anon_sym_LT_LT_LT] = ACTIONS(1634), + [sym__special_characters] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LT_LPAREN] = ACTIONS(1634), + [anon_sym_GT_LPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1636), + }, + [880] = { + [aux_sym_concatenation_repeat1] = STATE(880), + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_PIPE_AMP] = ACTIONS(1634), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE_PIPE] = ACTIONS(1634), + [anon_sym_EQ_TILDE] = ACTIONS(1636), + [anon_sym_EQ_EQ] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1634), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1634), + [anon_sym_LT_AMP] = ACTIONS(1634), + [anon_sym_GT_AMP] = ACTIONS(1634), + [anon_sym_LT_LT] = ACTIONS(1636), + [anon_sym_LT_LT_DASH] = ACTIONS(1634), + [anon_sym_LT_LT_LT] = ACTIONS(1634), + [sym__special_characters] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LT_LPAREN] = ACTIONS(1634), + [anon_sym_GT_LPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1636), + }, + [881] = { + [sym_file_descriptor] = ACTIONS(1683), + [sym__concat] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_PIPE_AMP] = ACTIONS(1683), + [anon_sym_AMP_AMP] = ACTIONS(1683), + [anon_sym_PIPE_PIPE] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1685), + [anon_sym_EQ_EQ] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1683), + [anon_sym_AMP_GT] = ACTIONS(1685), + [anon_sym_AMP_GT_GT] = ACTIONS(1683), + [anon_sym_LT_AMP] = ACTIONS(1683), + [anon_sym_GT_AMP] = ACTIONS(1683), + [anon_sym_LT_LT] = ACTIONS(1685), + [anon_sym_LT_LT_DASH] = ACTIONS(1683), + [anon_sym_LT_LT_LT] = ACTIONS(1683), + [sym__special_characters] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1683), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1683), + [anon_sym_BQUOTE] = ACTIONS(1683), + [anon_sym_LT_LPAREN] = ACTIONS(1683), + [anon_sym_GT_LPAREN] = ACTIONS(1683), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1685), + }, + [882] = { + [sym_concatenation] = STATE(1331), + [sym_string] = STATE(1330), + [sym_simple_expansion] = STATE(1330), + [sym_string_expansion] = STATE(1330), + [sym_expansion] = STATE(1330), + [sym_command_substitution] = STATE(1330), + [sym_process_substitution] = STATE(1330), + [anon_sym_RBRACE] = ACTIONS(3023), + [sym__special_characters] = ACTIONS(3025), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(3027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3027), + }, + [883] = { + [sym_file_descriptor] = ACTIONS(1724), + [sym__concat] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1724), + [anon_sym_PIPE_AMP] = ACTIONS(1724), + [anon_sym_AMP_AMP] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1724), + [anon_sym_EQ_TILDE] = ACTIONS(1726), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1726), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_AMP_GT] = ACTIONS(1726), + [anon_sym_AMP_GT_GT] = ACTIONS(1724), + [anon_sym_LT_AMP] = ACTIONS(1724), + [anon_sym_GT_AMP] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1726), + [anon_sym_LT_LT_DASH] = ACTIONS(1724), + [anon_sym_LT_LT_LT] = ACTIONS(1724), + [sym__special_characters] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1726), + [sym_raw_string] = ACTIONS(1724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), + [anon_sym_BQUOTE] = ACTIONS(1724), + [anon_sym_LT_LPAREN] = ACTIONS(1724), + [anon_sym_GT_LPAREN] = ACTIONS(1724), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1726), + }, + [884] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3029), + }, + [885] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), [aux_sym_expansion_repeat1] = STATE(805), - [anon_sym_RBRACE] = ACTIONS(1501), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1503), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(3031), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [305] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(808), - [anon_sym_RBRACE] = ACTIONS(1505), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1507), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [886] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(3033), + [sym_comment] = ACTIONS(54), }, - [306] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1509), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), + [887] = { + [sym_concatenation] = STATE(1337), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1337), + [anon_sym_RBRACE] = ACTIONS(3035), + [anon_sym_EQ] = ACTIONS(3037), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3041), + [anon_sym_COLON] = ACTIONS(3037), + [anon_sym_COLON_QMARK] = ACTIONS(3037), + [anon_sym_COLON_DASH] = ACTIONS(3037), + [anon_sym_PERCENT] = ACTIONS(3037), + [anon_sym_DASH] = ACTIONS(3037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [307] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1509), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [888] = { + [sym_concatenation] = STATE(1340), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1340), + [anon_sym_RBRACE] = ACTIONS(3043), + [anon_sym_EQ] = ACTIONS(3045), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3049), + [anon_sym_COLON] = ACTIONS(3045), + [anon_sym_COLON_QMARK] = ACTIONS(3045), + [anon_sym_COLON_DASH] = ACTIONS(3045), + [anon_sym_PERCENT] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [308] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(1509), - [sym_comment] = ACTIONS(56), + [889] = { + [sym_concatenation] = STATE(1342), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1342), + [anon_sym_RBRACE] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(3051), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3055), + [anon_sym_COLON] = ACTIONS(3051), + [anon_sym_COLON_QMARK] = ACTIONS(3051), + [anon_sym_COLON_DASH] = ACTIONS(3051), + [anon_sym_PERCENT] = ACTIONS(3051), + [anon_sym_DASH] = ACTIONS(3051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [309] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(1509), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [890] = { + [sym_file_descriptor] = ACTIONS(1790), + [sym__concat] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_PIPE_AMP] = ACTIONS(1790), + [anon_sym_AMP_AMP] = ACTIONS(1790), + [anon_sym_PIPE_PIPE] = ACTIONS(1790), + [anon_sym_EQ_TILDE] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1792), + [anon_sym_GT] = ACTIONS(1792), + [anon_sym_GT_GT] = ACTIONS(1790), + [anon_sym_AMP_GT] = ACTIONS(1792), + [anon_sym_AMP_GT_GT] = ACTIONS(1790), + [anon_sym_LT_AMP] = ACTIONS(1790), + [anon_sym_GT_AMP] = ACTIONS(1790), + [anon_sym_LT_LT] = ACTIONS(1792), + [anon_sym_LT_LT_DASH] = ACTIONS(1790), + [anon_sym_LT_LT_LT] = ACTIONS(1790), + [sym__special_characters] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1792), + [sym_raw_string] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_LT_LPAREN] = ACTIONS(1790), + [anon_sym_GT_LPAREN] = ACTIONS(1790), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1792), }, - [310] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1511), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), + [891] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3057), }, - [311] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1511), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [892] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [312] = { - [anon_sym_RPAREN] = ACTIONS(1513), - [sym_comment] = ACTIONS(56), + [893] = { + [sym_file_descriptor] = ACTIONS(1798), + [sym__concat] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_PIPE_AMP] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [anon_sym_EQ_TILDE] = ACTIONS(1800), + [anon_sym_EQ_EQ] = ACTIONS(1800), + [anon_sym_LT] = ACTIONS(1800), + [anon_sym_GT] = ACTIONS(1800), + [anon_sym_GT_GT] = ACTIONS(1798), + [anon_sym_AMP_GT] = ACTIONS(1800), + [anon_sym_AMP_GT_GT] = ACTIONS(1798), + [anon_sym_LT_AMP] = ACTIONS(1798), + [anon_sym_GT_AMP] = ACTIONS(1798), + [anon_sym_LT_LT] = ACTIONS(1800), + [anon_sym_LT_LT_DASH] = ACTIONS(1798), + [anon_sym_LT_LT_LT] = ACTIONS(1798), + [sym__special_characters] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1798), + [anon_sym_DOLLAR] = ACTIONS(1800), + [sym_raw_string] = ACTIONS(1798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1798), + [anon_sym_LT_LPAREN] = ACTIONS(1798), + [anon_sym_GT_LPAREN] = ACTIONS(1798), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1800), }, - [313] = { - [sym_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_command] = STATE(602), - [sym_command_name] = STATE(70), - [sym_bracket_command] = STATE(602), - [sym_variable_assignment] = STATE(603), - [sym_declaration_command] = STATE(602), - [sym_unset_command] = STATE(602), - [sym_subscript] = STATE(72), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(63), - [sym_simple_expansion] = STATE(63), - [sym_string_expansion] = STATE(63), - [sym_expansion] = STATE(63), - [sym_command_substitution] = STATE(63), - [sym_process_substitution] = STATE(63), - [aux_sym_command_repeat1] = STATE(74), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(90), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(92), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(94), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(96), - [anon_sym_LBRACK_LBRACK] = ACTIONS(98), - [anon_sym_declare] = ACTIONS(100), - [anon_sym_typeset] = ACTIONS(100), - [anon_sym_export] = ACTIONS(100), - [anon_sym_readonly] = ACTIONS(100), - [anon_sym_local] = ACTIONS(100), - [anon_sym_unset] = ACTIONS(102), - [anon_sym_unsetenv] = ACTIONS(102), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(104), - [anon_sym_DQUOTE] = ACTIONS(106), - [anon_sym_DOLLAR] = ACTIONS(108), - [sym_raw_string] = ACTIONS(110), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(114), - [anon_sym_BQUOTE] = ACTIONS(116), - [anon_sym_LT_LPAREN] = ACTIONS(118), - [anon_sym_GT_LPAREN] = ACTIONS(118), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(120), + [894] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3061), }, - [314] = { - [anon_sym_esac] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_RPAREN] = ACTIONS(1515), - [anon_sym_SEMI_SEMI] = ACTIONS(1515), - [anon_sym_PIPE_AMP] = ACTIONS(1515), - [anon_sym_AMP_AMP] = ACTIONS(1515), - [anon_sym_PIPE_PIPE] = ACTIONS(1515), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_LF] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), + [895] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [315] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_RPAREN] = ACTIONS(1517), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1104), - [sym_raw_string] = ACTIONS(1102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), - [anon_sym_BQUOTE] = ACTIONS(1102), - [anon_sym_LT_LPAREN] = ACTIONS(1102), - [anon_sym_GT_LPAREN] = ACTIONS(1102), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1106), + [896] = { + [sym_file_descriptor] = ACTIONS(1936), + [sym__concat] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_RPAREN] = ACTIONS(1936), + [anon_sym_PIPE_AMP] = ACTIONS(1936), + [anon_sym_AMP_AMP] = ACTIONS(1936), + [anon_sym_PIPE_PIPE] = ACTIONS(1936), + [anon_sym_EQ_TILDE] = ACTIONS(1938), + [anon_sym_EQ_EQ] = ACTIONS(1938), + [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__special_characters] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR] = ACTIONS(1938), + [sym_raw_string] = ACTIONS(1936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1936), + [anon_sym_BQUOTE] = ACTIONS(1936), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1938), }, - [316] = { - [sym_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_command] = STATE(813), - [sym_command_name] = STATE(70), - [sym_bracket_command] = STATE(813), - [sym_variable_assignment] = STATE(814), - [sym_declaration_command] = STATE(813), - [sym_unset_command] = STATE(813), - [sym_subscript] = STATE(72), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(63), - [sym_simple_expansion] = STATE(63), - [sym_string_expansion] = STATE(63), - [sym_expansion] = STATE(63), - [sym_command_substitution] = STATE(63), - [sym_process_substitution] = STATE(63), - [aux_sym_command_repeat1] = STATE(74), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(90), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(92), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(94), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(96), - [anon_sym_LBRACK_LBRACK] = ACTIONS(98), - [anon_sym_declare] = ACTIONS(100), - [anon_sym_typeset] = ACTIONS(100), - [anon_sym_export] = ACTIONS(100), - [anon_sym_readonly] = ACTIONS(100), - [anon_sym_local] = ACTIONS(100), - [anon_sym_unset] = ACTIONS(102), - [anon_sym_unsetenv] = ACTIONS(102), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(104), - [anon_sym_DQUOTE] = ACTIONS(106), - [anon_sym_DOLLAR] = ACTIONS(108), - [sym_raw_string] = ACTIONS(110), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(114), - [anon_sym_BQUOTE] = ACTIONS(116), - [anon_sym_LT_LPAREN] = ACTIONS(118), - [anon_sym_GT_LPAREN] = ACTIONS(118), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(120), + [897] = { + [sym_file_descriptor] = ACTIONS(2000), + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_RPAREN] = ACTIONS(2000), + [anon_sym_PIPE_AMP] = ACTIONS(2000), + [anon_sym_AMP_AMP] = ACTIONS(2000), + [anon_sym_PIPE_PIPE] = ACTIONS(2000), + [anon_sym_EQ_TILDE] = ACTIONS(2002), + [anon_sym_EQ_EQ] = ACTIONS(2002), + [anon_sym_LT] = ACTIONS(2002), + [anon_sym_GT] = ACTIONS(2002), + [anon_sym_GT_GT] = ACTIONS(2000), + [anon_sym_AMP_GT] = ACTIONS(2002), + [anon_sym_AMP_GT_GT] = ACTIONS(2000), + [anon_sym_LT_AMP] = ACTIONS(2000), + [anon_sym_GT_AMP] = ACTIONS(2000), + [anon_sym_LT_LT] = ACTIONS(2002), + [anon_sym_LT_LT_DASH] = ACTIONS(2000), + [anon_sym_LT_LT_LT] = ACTIONS(2000), + [sym__special_characters] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [anon_sym_LT_LPAREN] = ACTIONS(2000), + [anon_sym_GT_LPAREN] = ACTIONS(2000), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2002), }, - [317] = { - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_GT_GT] = ACTIONS(1521), - [anon_sym_AMP_GT] = ACTIONS(1519), - [anon_sym_AMP_GT_GT] = ACTIONS(1521), - [anon_sym_LT_AMP] = ACTIONS(1521), - [anon_sym_GT_AMP] = ACTIONS(1521), - [sym_comment] = ACTIONS(56), + [898] = { + [sym_compound_statement] = STATE(1346), + [anon_sym_LBRACE] = ACTIONS(1836), + [sym_comment] = ACTIONS(54), }, - [318] = { - [sym_concatenation] = STATE(609), - [sym_string] = STATE(817), - [sym_simple_expansion] = STATE(817), - [sym_string_expansion] = STATE(817), - [sym_expansion] = STATE(817), - [sym_command_substitution] = STATE(817), - [sym_process_substitution] = STATE(817), - [sym__special_characters] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(568), - [anon_sym_DOLLAR] = ACTIONS(570), - [sym_raw_string] = ACTIONS(1525), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), + [899] = { + [anon_sym_PIPE] = ACTIONS(2004), + [anon_sym_RPAREN] = ACTIONS(2006), + [anon_sym_PIPE_AMP] = ACTIONS(2006), + [anon_sym_AMP_AMP] = ACTIONS(2006), + [anon_sym_PIPE_PIPE] = ACTIONS(2006), + [anon_sym_BQUOTE] = ACTIONS(2006), + [sym_comment] = ACTIONS(54), + }, + [900] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(2004), + [anon_sym_RPAREN] = ACTIONS(2006), + [anon_sym_PIPE_AMP] = ACTIONS(2006), + [anon_sym_AMP_AMP] = ACTIONS(2006), + [anon_sym_PIPE_PIPE] = ACTIONS(2006), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [901] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(2010), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(2010), + [anon_sym_PIPE_PIPE] = ACTIONS(2010), + [sym_comment] = ACTIONS(54), + }, + [902] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(2010), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(2010), + [anon_sym_PIPE_PIPE] = ACTIONS(2010), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [903] = { + [sym_concatenation] = STATE(1349), + [sym_string] = STATE(1348), + [sym_simple_expansion] = STATE(1348), + [sym_string_expansion] = STATE(1348), + [sym_expansion] = STATE(1348), + [sym_command_substitution] = STATE(1348), + [sym_process_substitution] = STATE(1348), + [sym__special_characters] = ACTIONS(3063), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(3065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3065), + }, + [904] = { + [aux_sym_concatenation_repeat1] = STATE(457), + [sym_file_descriptor] = ACTIONS(1265), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_PIPE_AMP] = ACTIONS(1265), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_EQ_TILDE] = ACTIONS(1263), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_GT] = ACTIONS(1265), + [anon_sym_AMP_GT] = ACTIONS(1263), + [anon_sym_AMP_GT_GT] = ACTIONS(1265), + [anon_sym_LT_AMP] = ACTIONS(1265), + [anon_sym_GT_AMP] = ACTIONS(1265), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_LT_LT_DASH] = ACTIONS(1265), + [anon_sym_LT_LT_LT] = ACTIONS(1265), + [sym__special_characters] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1263), + [sym_raw_string] = ACTIONS(1265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1265), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1265), + [anon_sym_BQUOTE] = ACTIONS(1265), + [anon_sym_LT_LPAREN] = ACTIONS(1265), + [anon_sym_GT_LPAREN] = ACTIONS(1265), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1263), + }, + [905] = { + [aux_sym_concatenation_repeat1] = STATE(457), + [sym_file_descriptor] = ACTIONS(1269), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1269), + [anon_sym_PIPE_AMP] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_AMP_GT] = ACTIONS(1267), + [anon_sym_AMP_GT_GT] = ACTIONS(1269), + [anon_sym_LT_AMP] = ACTIONS(1269), + [anon_sym_GT_AMP] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_LT_LT_DASH] = ACTIONS(1269), + [anon_sym_LT_LT_LT] = ACTIONS(1269), + [sym__special_characters] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_DOLLAR] = ACTIONS(1267), + [sym_raw_string] = ACTIONS(1269), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1269), + [anon_sym_BQUOTE] = ACTIONS(1269), + [anon_sym_LT_LPAREN] = ACTIONS(1269), + [anon_sym_GT_LPAREN] = ACTIONS(1269), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1267), + }, + [906] = { + [sym_file_descriptor] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1269), + [anon_sym_PIPE_AMP] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_AMP_GT] = ACTIONS(1267), + [anon_sym_AMP_GT_GT] = ACTIONS(1269), + [anon_sym_LT_AMP] = ACTIONS(1269), + [anon_sym_GT_AMP] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_LT_LT_DASH] = ACTIONS(1269), + [anon_sym_LT_LT_LT] = ACTIONS(1269), + [sym__special_characters] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_DOLLAR] = ACTIONS(1267), + [sym_raw_string] = ACTIONS(1269), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1269), + [anon_sym_BQUOTE] = ACTIONS(1269), + [anon_sym_LT_LPAREN] = ACTIONS(1269), + [anon_sym_GT_LPAREN] = ACTIONS(1269), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1267), + }, + [907] = { + [aux_sym_concatenation_repeat1] = STATE(1350), + [sym_file_descriptor] = ACTIONS(656), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(660), + [anon_sym_RPAREN] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(656), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(660), + [anon_sym_GT] = ACTIONS(660), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_AMP_GT] = ACTIONS(660), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_LT_LT] = ACTIONS(660), + [anon_sym_LT_LT_DASH] = ACTIONS(656), + [anon_sym_LT_LT_LT] = ACTIONS(656), + [sym_comment] = ACTIONS(54), + }, + [908] = { + [aux_sym_concatenation_repeat1] = STATE(1350), + [sym_file_descriptor] = ACTIONS(672), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(672), + [anon_sym_PIPE_AMP] = ACTIONS(672), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(672), + [anon_sym_AMP_GT] = ACTIONS(674), + [anon_sym_AMP_GT_GT] = ACTIONS(672), + [anon_sym_LT_AMP] = ACTIONS(672), + [anon_sym_GT_AMP] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(674), + [anon_sym_LT_LT_DASH] = ACTIONS(672), + [anon_sym_LT_LT_LT] = ACTIONS(672), + [sym_comment] = ACTIONS(54), + }, + [909] = { + [sym_file_descriptor] = ACTIONS(672), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(672), + [anon_sym_PIPE_AMP] = ACTIONS(672), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(672), + [anon_sym_AMP_GT] = ACTIONS(674), + [anon_sym_AMP_GT_GT] = ACTIONS(672), + [anon_sym_LT_AMP] = ACTIONS(672), + [anon_sym_GT_AMP] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(674), + [anon_sym_LT_LT_DASH] = ACTIONS(672), + [anon_sym_LT_LT_LT] = ACTIONS(672), + [anon_sym_BQUOTE] = ACTIONS(672), + [sym_comment] = ACTIONS(54), + }, + [910] = { + [sym_file_descriptor] = ACTIONS(2016), + [anon_sym_PIPE] = ACTIONS(2018), + [anon_sym_RPAREN] = ACTIONS(2016), + [anon_sym_PIPE_AMP] = ACTIONS(2016), + [anon_sym_AMP_AMP] = ACTIONS(2016), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_LT] = ACTIONS(2018), + [anon_sym_GT] = ACTIONS(2018), + [anon_sym_GT_GT] = ACTIONS(2016), + [anon_sym_AMP_GT] = ACTIONS(2018), + [anon_sym_AMP_GT_GT] = ACTIONS(2016), + [anon_sym_LT_AMP] = ACTIONS(2016), + [anon_sym_GT_AMP] = ACTIONS(2016), + [anon_sym_LT_LT] = ACTIONS(2018), + [anon_sym_LT_LT_DASH] = ACTIONS(2016), + [anon_sym_LT_LT_LT] = ACTIONS(2016), + [anon_sym_BQUOTE] = ACTIONS(2016), + [sym_comment] = ACTIONS(54), + }, + [911] = { + [sym_simple_expansion] = STATE(952), + [sym_expansion] = STATE(952), + [aux_sym_heredoc_repeat1] = STATE(1352), + [sym__heredoc_middle] = ACTIONS(2020), + [sym__heredoc_end] = ACTIONS(3067), + [anon_sym_DOLLAR] = ACTIONS(2024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), + [sym_comment] = ACTIONS(54), + }, + [912] = { + [sym_file_descriptor] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2030), + [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_PIPE_AMP] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2028), + [anon_sym_PIPE_PIPE] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2030), + [anon_sym_GT] = ACTIONS(2030), + [anon_sym_GT_GT] = ACTIONS(2028), + [anon_sym_AMP_GT] = ACTIONS(2030), + [anon_sym_AMP_GT_GT] = ACTIONS(2028), + [anon_sym_LT_AMP] = ACTIONS(2028), + [anon_sym_GT_AMP] = ACTIONS(2028), + [anon_sym_LT_LT] = ACTIONS(2030), + [anon_sym_LT_LT_DASH] = ACTIONS(2028), + [anon_sym_LT_LT_LT] = ACTIONS(2028), + [anon_sym_BQUOTE] = ACTIONS(2028), + [sym_comment] = ACTIONS(54), + }, + [913] = { + [aux_sym_concatenation_repeat1] = STATE(1350), + [sym_file_descriptor] = ACTIONS(2032), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(2034), + [anon_sym_RPAREN] = ACTIONS(2032), + [anon_sym_PIPE_AMP] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2034), + [anon_sym_GT] = ACTIONS(2034), + [anon_sym_GT_GT] = ACTIONS(2032), + [anon_sym_AMP_GT] = ACTIONS(2034), + [anon_sym_AMP_GT_GT] = ACTIONS(2032), + [anon_sym_LT_AMP] = ACTIONS(2032), + [anon_sym_GT_AMP] = ACTIONS(2032), + [anon_sym_LT_LT] = ACTIONS(2034), + [anon_sym_LT_LT_DASH] = ACTIONS(2032), + [anon_sym_LT_LT_LT] = ACTIONS(2032), + [sym_comment] = ACTIONS(54), + }, + [914] = { + [aux_sym_concatenation_repeat1] = STATE(1350), + [sym_file_descriptor] = ACTIONS(2036), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(2038), + [anon_sym_RPAREN] = ACTIONS(2036), + [anon_sym_PIPE_AMP] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2038), + [anon_sym_GT] = ACTIONS(2038), + [anon_sym_GT_GT] = ACTIONS(2036), + [anon_sym_AMP_GT] = ACTIONS(2038), + [anon_sym_AMP_GT_GT] = ACTIONS(2036), + [anon_sym_LT_AMP] = ACTIONS(2036), + [anon_sym_GT_AMP] = ACTIONS(2036), + [anon_sym_LT_LT] = ACTIONS(2038), + [anon_sym_LT_LT_DASH] = ACTIONS(2036), + [anon_sym_LT_LT_LT] = ACTIONS(2036), + [sym_comment] = ACTIONS(54), + }, + [915] = { + [sym_file_descriptor] = ACTIONS(2036), + [anon_sym_PIPE] = ACTIONS(2038), + [anon_sym_RPAREN] = ACTIONS(2036), + [anon_sym_PIPE_AMP] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2038), + [anon_sym_GT] = ACTIONS(2038), + [anon_sym_GT_GT] = ACTIONS(2036), + [anon_sym_AMP_GT] = ACTIONS(2038), + [anon_sym_AMP_GT_GT] = ACTIONS(2036), + [anon_sym_LT_AMP] = ACTIONS(2036), + [anon_sym_GT_AMP] = ACTIONS(2036), + [anon_sym_LT_LT] = ACTIONS(2038), + [anon_sym_LT_LT_DASH] = ACTIONS(2036), + [anon_sym_LT_LT_LT] = ACTIONS(2036), + [anon_sym_BQUOTE] = ACTIONS(2036), + [sym_comment] = ACTIONS(54), + }, + [916] = { + [sym_file_redirect] = STATE(916), + [sym_heredoc_redirect] = STATE(916), + [sym_herestring_redirect] = STATE(916), + [aux_sym_while_statement_repeat1] = STATE(916), + [sym_file_descriptor] = ACTIONS(3069), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_RPAREN] = ACTIONS(2054), + [anon_sym_PIPE_AMP] = ACTIONS(2054), + [anon_sym_AMP_AMP] = ACTIONS(2054), + [anon_sym_PIPE_PIPE] = ACTIONS(2054), + [anon_sym_LT] = ACTIONS(3072), + [anon_sym_GT] = ACTIONS(3072), + [anon_sym_GT_GT] = ACTIONS(3075), + [anon_sym_AMP_GT] = ACTIONS(3072), + [anon_sym_AMP_GT_GT] = ACTIONS(3075), + [anon_sym_LT_AMP] = ACTIONS(3075), + [anon_sym_GT_AMP] = ACTIONS(3075), + [anon_sym_LT_LT] = ACTIONS(3078), + [anon_sym_LT_LT_DASH] = ACTIONS(3081), + [anon_sym_LT_LT_LT] = ACTIONS(3084), + [sym_comment] = ACTIONS(54), + }, + [917] = { + [sym_file_redirect] = STATE(916), + [sym_heredoc_redirect] = STATE(916), + [sym_herestring_redirect] = STATE(916), + [aux_sym_while_statement_repeat1] = STATE(916), + [sym_file_descriptor] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(2056), + [anon_sym_RPAREN] = ACTIONS(2058), + [anon_sym_PIPE_AMP] = ACTIONS(2058), + [anon_sym_AMP_AMP] = ACTIONS(2058), + [anon_sym_PIPE_PIPE] = ACTIONS(2058), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [sym_comment] = ACTIONS(54), + }, + [918] = { + [sym_concatenation] = STATE(485), + [sym_string] = STATE(484), + [sym_simple_expansion] = STATE(484), + [sym_string_expansion] = STATE(484), + [sym_expansion] = STATE(484), + [sym_command_substitution] = STATE(484), + [sym_process_substitution] = STATE(484), + [aux_sym_command_repeat2] = STATE(918), + [sym_file_descriptor] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1269), + [anon_sym_PIPE_AMP] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(3087), + [anon_sym_EQ_EQ] = ACTIONS(3087), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_AMP_GT] = ACTIONS(1267), + [anon_sym_AMP_GT_GT] = ACTIONS(1269), + [anon_sym_LT_AMP] = ACTIONS(1269), + [anon_sym_GT_AMP] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_LT_LT_DASH] = ACTIONS(1269), + [anon_sym_LT_LT_LT] = ACTIONS(1269), + [sym__special_characters] = ACTIONS(3090), + [anon_sym_DQUOTE] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3096), + [sym_raw_string] = ACTIONS(3099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3105), + [anon_sym_BQUOTE] = ACTIONS(3108), + [anon_sym_LT_LPAREN] = ACTIONS(3111), + [anon_sym_GT_LPAREN] = ACTIONS(3111), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3114), + }, + [919] = { + [sym_file_redirect] = STATE(1353), + [sym_heredoc_redirect] = STATE(1353), + [sym_herestring_redirect] = STATE(1353), + [sym_concatenation] = STATE(485), + [sym_string] = STATE(484), + [sym_simple_expansion] = STATE(484), + [sym_string_expansion] = STATE(484), + [sym_expansion] = STATE(484), + [sym_command_substitution] = STATE(484), + [sym_process_substitution] = STATE(484), + [aux_sym_while_statement_repeat1] = STATE(1353), + [aux_sym_command_repeat2] = STATE(918), + [sym_file_descriptor] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(2056), + [anon_sym_RPAREN] = ACTIONS(2058), + [anon_sym_PIPE_AMP] = ACTIONS(2058), + [anon_sym_AMP_AMP] = ACTIONS(2058), + [anon_sym_PIPE_PIPE] = ACTIONS(2058), + [anon_sym_EQ_TILDE] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [sym__special_characters] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(890), + }, + [920] = { + [aux_sym_concatenation_repeat1] = STATE(1354), + [sym_file_descriptor] = ACTIONS(1101), + [sym__concat] = ACTIONS(658), + [sym_variable_name] = ACTIONS(1101), + [anon_sym_PIPE] = ACTIONS(1105), + [anon_sym_PIPE_AMP] = ACTIONS(1101), + [anon_sym_AMP_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1101), + [anon_sym_LT] = ACTIONS(1105), + [anon_sym_GT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1101), + [anon_sym_AMP_GT] = ACTIONS(1105), + [anon_sym_AMP_GT_GT] = ACTIONS(1101), + [anon_sym_LT_AMP] = ACTIONS(1101), + [anon_sym_GT_AMP] = ACTIONS(1101), + [sym__special_characters] = ACTIONS(1101), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_DOLLAR] = ACTIONS(1105), + [sym_raw_string] = ACTIONS(1101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1101), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1101), + [anon_sym_LT_LPAREN] = ACTIONS(1101), + [anon_sym_GT_LPAREN] = ACTIONS(1101), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1101), + }, + [921] = { + [aux_sym_concatenation_repeat1] = STATE(1354), + [sym_file_descriptor] = ACTIONS(1079), + [sym__concat] = ACTIONS(658), + [sym_variable_name] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(1079), + [anon_sym_PIPE_PIPE] = ACTIONS(1079), + [anon_sym_LT] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1079), + [anon_sym_AMP_GT] = ACTIONS(1081), + [anon_sym_AMP_GT_GT] = ACTIONS(1079), + [anon_sym_LT_AMP] = ACTIONS(1079), + [anon_sym_GT_AMP] = ACTIONS(1079), + [sym__special_characters] = ACTIONS(1079), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_DOLLAR] = ACTIONS(1081), + [sym_raw_string] = ACTIONS(1079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1079), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1079), + [anon_sym_BQUOTE] = ACTIONS(1079), + [anon_sym_LT_LPAREN] = ACTIONS(1079), + [anon_sym_GT_LPAREN] = ACTIONS(1079), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1079), + }, + [922] = { + [sym_file_redirect] = STATE(1355), + [sym_heredoc_redirect] = STATE(1355), + [sym_herestring_redirect] = STATE(1355), + [aux_sym_while_statement_repeat1] = STATE(1355), + [sym_file_descriptor] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(1147), + [anon_sym_PIPE_AMP] = ACTIONS(1149), + [anon_sym_AMP_AMP] = ACTIONS(1149), + [anon_sym_PIPE_PIPE] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(924), + [anon_sym_GT_GT] = ACTIONS(926), + [anon_sym_AMP_GT] = ACTIONS(924), + [anon_sym_AMP_GT_GT] = ACTIONS(926), + [anon_sym_LT_AMP] = ACTIONS(926), + [anon_sym_GT_AMP] = ACTIONS(926), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(928), + [anon_sym_BQUOTE] = ACTIONS(1149), + [sym_comment] = ACTIONS(54), + }, + [923] = { + [anon_sym_RPAREN] = ACTIONS(3117), + [sym_comment] = ACTIONS(54), + }, + [924] = { + [sym_file_redirect] = STATE(1282), + [sym_file_descriptor] = ACTIONS(3119), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_PIPE_AMP] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1221), + [anon_sym_PIPE_PIPE] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(3121), + [anon_sym_GT] = ACTIONS(3121), + [anon_sym_GT_GT] = ACTIONS(3123), + [anon_sym_AMP_GT] = ACTIONS(3121), + [anon_sym_AMP_GT_GT] = ACTIONS(3123), + [anon_sym_LT_AMP] = ACTIONS(3123), + [anon_sym_GT_AMP] = ACTIONS(3123), + [anon_sym_BQUOTE] = ACTIONS(1221), + [sym_comment] = ACTIONS(54), + }, + [925] = { + [sym_file_redirect] = STATE(1359), + [sym_heredoc_redirect] = STATE(1359), + [sym_herestring_redirect] = STATE(1359), + [aux_sym_while_statement_repeat1] = STATE(1359), + [sym_file_descriptor] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_PIPE_AMP] = ACTIONS(1315), + [anon_sym_AMP_AMP] = ACTIONS(1315), + [anon_sym_PIPE_PIPE] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(924), + [anon_sym_GT_GT] = ACTIONS(926), + [anon_sym_AMP_GT] = ACTIONS(924), + [anon_sym_AMP_GT_GT] = ACTIONS(926), + [anon_sym_LT_AMP] = ACTIONS(926), + [anon_sym_GT_AMP] = ACTIONS(926), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(928), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_comment] = ACTIONS(54), + }, + [926] = { + [sym_concatenation] = STATE(1286), + [sym_string] = STATE(1361), + [sym_array] = STATE(1286), + [sym_simple_expansion] = STATE(1361), + [sym_string_expansion] = STATE(1361), + [sym_expansion] = STATE(1361), + [sym_command_substitution] = STATE(1361), + [sym_process_substitution] = STATE(1361), + [sym__empty_value] = ACTIONS(2865), + [anon_sym_LPAREN] = ACTIONS(2867), + [sym__special_characters] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(802), + [anon_sym_DOLLAR] = ACTIONS(804), + [sym_raw_string] = ACTIONS(3127), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(810), + [anon_sym_BQUOTE] = ACTIONS(812), + [anon_sym_LT_LPAREN] = ACTIONS(814), + [anon_sym_GT_LPAREN] = ACTIONS(814), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3127), + }, + [927] = { + [aux_sym_concatenation_repeat1] = STATE(1362), + [sym__concat] = ACTIONS(1848), + [sym_variable_name] = ACTIONS(688), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [sym__special_characters] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(688), + [anon_sym_LT_LPAREN] = ACTIONS(688), + [anon_sym_GT_LPAREN] = ACTIONS(688), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(690), + [sym_word] = ACTIONS(690), + }, + [928] = { + [sym_variable_assignment] = STATE(928), + [sym_subscript] = STATE(497), + [sym_concatenation] = STATE(928), + [sym_string] = STATE(496), + [sym_simple_expansion] = STATE(496), + [sym_string_expansion] = STATE(496), + [sym_expansion] = STATE(496), + [sym_command_substitution] = STATE(496), + [sym_process_substitution] = STATE(496), + [aux_sym_declaration_command_repeat1] = STATE(928), + [sym_variable_name] = ACTIONS(3129), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_PIPE_AMP] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1509), + [sym__special_characters] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(2921), + [anon_sym_DOLLAR] = ACTIONS(2924), + [sym_raw_string] = ACTIONS(3135), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2933), + [anon_sym_BQUOTE] = ACTIONS(2936), + [anon_sym_LT_LPAREN] = ACTIONS(2939), + [anon_sym_GT_LPAREN] = ACTIONS(2939), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2942), + [sym_word] = ACTIONS(3138), + }, + [929] = { + [aux_sym_concatenation_repeat1] = STATE(1363), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [sym__special_characters] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(688), + [anon_sym_LT_LPAREN] = ACTIONS(688), + [anon_sym_GT_LPAREN] = ACTIONS(688), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(690), + [sym_word] = ACTIONS(690), + }, + [930] = { + [sym_concatenation] = STATE(930), + [sym_string] = STATE(500), + [sym_simple_expansion] = STATE(500), + [sym_string_expansion] = STATE(500), + [sym_expansion] = STATE(500), + [sym_command_substitution] = STATE(500), + [sym_process_substitution] = STATE(500), + [aux_sym_unset_command_repeat1] = STATE(930), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_PIPE_AMP] = ACTIONS(1590), + [anon_sym_AMP_AMP] = ACTIONS(1590), + [anon_sym_PIPE_PIPE] = ACTIONS(1590), + [sym__special_characters] = ACTIONS(3141), + [anon_sym_DQUOTE] = ACTIONS(2993), + [anon_sym_DOLLAR] = ACTIONS(2996), + [sym_raw_string] = ACTIONS(3144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3005), + [anon_sym_BQUOTE] = ACTIONS(3008), + [anon_sym_LT_LPAREN] = ACTIONS(3011), + [anon_sym_GT_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3014), + [sym_word] = ACTIONS(3147), + }, + [931] = { + [aux_sym_concatenation_repeat1] = STATE(931), + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1634), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE_PIPE] = ACTIONS(1634), + [anon_sym_EQ_TILDE] = ACTIONS(1636), + [anon_sym_EQ_EQ] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1634), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1634), + [anon_sym_LT_AMP] = ACTIONS(1634), + [anon_sym_GT_AMP] = ACTIONS(1634), + [anon_sym_LT_LT] = ACTIONS(1636), + [anon_sym_LT_LT_DASH] = ACTIONS(1634), + [anon_sym_LT_LT_LT] = ACTIONS(1634), + [sym__special_characters] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LT_LPAREN] = ACTIONS(1634), + [anon_sym_GT_LPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1636), + }, + [932] = { + [sym_compound_statement] = STATE(1364), + [anon_sym_LBRACE] = ACTIONS(1836), + [sym_comment] = ACTIONS(54), + }, + [933] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(2004), + [anon_sym_PIPE_AMP] = ACTIONS(2006), + [anon_sym_AMP_AMP] = ACTIONS(2006), + [anon_sym_PIPE_PIPE] = ACTIONS(2006), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(2006), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [934] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(2010), + [anon_sym_PIPE_PIPE] = ACTIONS(2010), + [anon_sym_BQUOTE] = ACTIONS(2010), + [sym_comment] = ACTIONS(54), + }, + [935] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(2010), + [anon_sym_PIPE_PIPE] = ACTIONS(2010), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [936] = { + [sym_concatenation] = STATE(1349), + [sym_string] = STATE(1366), + [sym_simple_expansion] = STATE(1366), + [sym_string_expansion] = STATE(1366), + [sym_expansion] = STATE(1366), + [sym_command_substitution] = STATE(1366), + [sym_process_substitution] = STATE(1366), + [sym__special_characters] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(3152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3152), + }, + [937] = { + [aux_sym_concatenation_repeat1] = STATE(502), + [sym_file_descriptor] = ACTIONS(1265), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_PIPE_AMP] = ACTIONS(1265), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_EQ_TILDE] = ACTIONS(1263), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_GT] = ACTIONS(1265), + [anon_sym_AMP_GT] = ACTIONS(1263), + [anon_sym_AMP_GT_GT] = ACTIONS(1265), + [anon_sym_LT_AMP] = ACTIONS(1265), + [anon_sym_GT_AMP] = ACTIONS(1265), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_LT_LT_DASH] = ACTIONS(1265), + [anon_sym_LT_LT_LT] = ACTIONS(1265), + [sym__special_characters] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1263), + [sym_raw_string] = ACTIONS(1265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1265), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1265), + [anon_sym_BQUOTE] = ACTIONS(1265), + [anon_sym_LT_LPAREN] = ACTIONS(1265), + [anon_sym_GT_LPAREN] = ACTIONS(1265), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1263), + }, + [938] = { + [aux_sym_concatenation_repeat1] = STATE(502), + [sym_file_descriptor] = ACTIONS(1269), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_PIPE_AMP] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_AMP_GT] = ACTIONS(1267), + [anon_sym_AMP_GT_GT] = ACTIONS(1269), + [anon_sym_LT_AMP] = ACTIONS(1269), + [anon_sym_GT_AMP] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_LT_LT_DASH] = ACTIONS(1269), + [anon_sym_LT_LT_LT] = ACTIONS(1269), + [sym__special_characters] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_DOLLAR] = ACTIONS(1267), + [sym_raw_string] = ACTIONS(1269), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1269), + [anon_sym_BQUOTE] = ACTIONS(1269), + [anon_sym_LT_LPAREN] = ACTIONS(1269), + [anon_sym_GT_LPAREN] = ACTIONS(1269), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1267), + }, + [939] = { + [aux_sym_concatenation_repeat1] = STATE(1367), + [sym_file_descriptor] = ACTIONS(656), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(660), + [anon_sym_PIPE_AMP] = ACTIONS(656), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(660), + [anon_sym_GT] = ACTIONS(660), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_AMP_GT] = ACTIONS(660), + [anon_sym_AMP_GT_GT] = ACTIONS(656), + [anon_sym_LT_AMP] = ACTIONS(656), + [anon_sym_GT_AMP] = ACTIONS(656), + [anon_sym_LT_LT] = ACTIONS(660), + [anon_sym_LT_LT_DASH] = ACTIONS(656), + [anon_sym_LT_LT_LT] = ACTIONS(656), + [anon_sym_BQUOTE] = ACTIONS(656), + [sym_comment] = ACTIONS(54), + }, + [940] = { + [aux_sym_concatenation_repeat1] = STATE(1367), + [sym_file_descriptor] = ACTIONS(672), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_PIPE_AMP] = ACTIONS(672), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(672), + [anon_sym_AMP_GT] = ACTIONS(674), + [anon_sym_AMP_GT_GT] = ACTIONS(672), + [anon_sym_LT_AMP] = ACTIONS(672), + [anon_sym_GT_AMP] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(674), + [anon_sym_LT_LT_DASH] = ACTIONS(672), + [anon_sym_LT_LT_LT] = ACTIONS(672), + [anon_sym_BQUOTE] = ACTIONS(672), + [sym_comment] = ACTIONS(54), + }, + [941] = { + [aux_sym_concatenation_repeat1] = STATE(1367), + [sym_file_descriptor] = ACTIONS(2032), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(2034), + [anon_sym_PIPE_AMP] = ACTIONS(2032), + [anon_sym_AMP_AMP] = ACTIONS(2032), + [anon_sym_PIPE_PIPE] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2034), + [anon_sym_GT] = ACTIONS(2034), + [anon_sym_GT_GT] = ACTIONS(2032), + [anon_sym_AMP_GT] = ACTIONS(2034), + [anon_sym_AMP_GT_GT] = ACTIONS(2032), + [anon_sym_LT_AMP] = ACTIONS(2032), + [anon_sym_GT_AMP] = ACTIONS(2032), + [anon_sym_LT_LT] = ACTIONS(2034), + [anon_sym_LT_LT_DASH] = ACTIONS(2032), + [anon_sym_LT_LT_LT] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(2032), + [sym_comment] = ACTIONS(54), + }, + [942] = { + [aux_sym_concatenation_repeat1] = STATE(1367), + [sym_file_descriptor] = ACTIONS(2036), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(2038), + [anon_sym_PIPE_AMP] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2038), + [anon_sym_GT] = ACTIONS(2038), + [anon_sym_GT_GT] = ACTIONS(2036), + [anon_sym_AMP_GT] = ACTIONS(2038), + [anon_sym_AMP_GT_GT] = ACTIONS(2036), + [anon_sym_LT_AMP] = ACTIONS(2036), + [anon_sym_GT_AMP] = ACTIONS(2036), + [anon_sym_LT_LT] = ACTIONS(2038), + [anon_sym_LT_LT_DASH] = ACTIONS(2036), + [anon_sym_LT_LT_LT] = ACTIONS(2036), + [anon_sym_BQUOTE] = ACTIONS(2036), + [sym_comment] = ACTIONS(54), + }, + [943] = { + [sym_file_redirect] = STATE(943), + [sym_heredoc_redirect] = STATE(943), + [sym_herestring_redirect] = STATE(943), + [aux_sym_while_statement_repeat1] = STATE(943), + [sym_file_descriptor] = ACTIONS(3154), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_PIPE_AMP] = ACTIONS(2054), + [anon_sym_AMP_AMP] = ACTIONS(2054), + [anon_sym_PIPE_PIPE] = ACTIONS(2054), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_GT] = ACTIONS(3157), + [anon_sym_GT_GT] = ACTIONS(3160), + [anon_sym_AMP_GT] = ACTIONS(3157), + [anon_sym_AMP_GT_GT] = ACTIONS(3160), + [anon_sym_LT_AMP] = ACTIONS(3160), + [anon_sym_GT_AMP] = ACTIONS(3160), + [anon_sym_LT_LT] = ACTIONS(3078), + [anon_sym_LT_LT_DASH] = ACTIONS(3081), + [anon_sym_LT_LT_LT] = ACTIONS(3163), + [anon_sym_BQUOTE] = ACTIONS(2054), + [sym_comment] = ACTIONS(54), + }, + [944] = { + [sym_file_redirect] = STATE(943), + [sym_heredoc_redirect] = STATE(943), + [sym_herestring_redirect] = STATE(943), + [aux_sym_while_statement_repeat1] = STATE(943), + [sym_file_descriptor] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(2056), + [anon_sym_PIPE_AMP] = ACTIONS(2058), + [anon_sym_AMP_AMP] = ACTIONS(2058), + [anon_sym_PIPE_PIPE] = ACTIONS(2058), + [anon_sym_LT] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(924), + [anon_sym_GT_GT] = ACTIONS(926), + [anon_sym_AMP_GT] = ACTIONS(924), + [anon_sym_AMP_GT_GT] = ACTIONS(926), + [anon_sym_LT_AMP] = ACTIONS(926), + [anon_sym_GT_AMP] = ACTIONS(926), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(928), + [anon_sym_BQUOTE] = ACTIONS(2058), + [sym_comment] = ACTIONS(54), + }, + [945] = { + [sym_concatenation] = STATE(485), + [sym_string] = STATE(511), + [sym_simple_expansion] = STATE(511), + [sym_string_expansion] = STATE(511), + [sym_expansion] = STATE(511), + [sym_command_substitution] = STATE(511), + [sym_process_substitution] = STATE(511), + [aux_sym_command_repeat2] = STATE(945), + [sym_file_descriptor] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_PIPE_AMP] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_AMP_GT] = ACTIONS(1267), + [anon_sym_AMP_GT_GT] = ACTIONS(1269), + [anon_sym_LT_AMP] = ACTIONS(1269), + [anon_sym_GT_AMP] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_LT_LT_DASH] = ACTIONS(1269), + [anon_sym_LT_LT_LT] = ACTIONS(1269), + [sym__special_characters] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3096), + [sym_raw_string] = ACTIONS(3172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3105), + [anon_sym_BQUOTE] = ACTIONS(3108), + [anon_sym_LT_LPAREN] = ACTIONS(3111), + [anon_sym_GT_LPAREN] = ACTIONS(3111), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3175), + }, + [946] = { + [sym_file_redirect] = STATE(1368), + [sym_heredoc_redirect] = STATE(1368), + [sym_herestring_redirect] = STATE(1368), + [sym_concatenation] = STATE(485), + [sym_string] = STATE(511), + [sym_simple_expansion] = STATE(511), + [sym_string_expansion] = STATE(511), + [sym_expansion] = STATE(511), + [sym_command_substitution] = STATE(511), + [sym_process_substitution] = STATE(511), + [aux_sym_while_statement_repeat1] = STATE(1368), + [aux_sym_command_repeat2] = STATE(945), + [sym_file_descriptor] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(2056), + [anon_sym_PIPE_AMP] = ACTIONS(2058), + [anon_sym_AMP_AMP] = ACTIONS(2058), + [anon_sym_PIPE_PIPE] = ACTIONS(2058), + [anon_sym_EQ_TILDE] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_LT] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(924), + [anon_sym_GT_GT] = ACTIONS(926), + [anon_sym_AMP_GT] = ACTIONS(924), + [anon_sym_AMP_GT_GT] = ACTIONS(926), + [anon_sym_LT_AMP] = ACTIONS(926), + [anon_sym_GT_AMP] = ACTIONS(926), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(928), + [sym__special_characters] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(932), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(2058), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(934), + }, + [947] = { + [sym_file_redirect] = STATE(1369), + [sym_file_descriptor] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_SEMI_SEMI] = ACTIONS(2340), + [anon_sym_PIPE_AMP] = ACTIONS(2340), + [anon_sym_AMP_AMP] = ACTIONS(2340), + [anon_sym_PIPE_PIPE] = ACTIONS(2340), + [anon_sym_LT] = ACTIONS(1219), + [anon_sym_GT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1219), + [anon_sym_AMP_GT] = ACTIONS(1219), + [anon_sym_AMP_GT_GT] = ACTIONS(1219), + [anon_sym_LT_AMP] = ACTIONS(1219), + [anon_sym_GT_AMP] = ACTIONS(1219), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_LF] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2340), + }, + [948] = { + [aux_sym_concatenation_repeat1] = STATE(951), + [sym_file_descriptor] = ACTIONS(1061), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1063), + [anon_sym_LT_AMP] = ACTIONS(1063), + [anon_sym_GT_AMP] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [anon_sym_LT_LT_LT] = ACTIONS(1063), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1063), + [anon_sym_LF] = ACTIONS(1061), + [anon_sym_AMP] = ACTIONS(1063), + }, + [949] = { + [aux_sym_concatenation_repeat1] = STATE(951), + [sym_file_descriptor] = ACTIONS(1065), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(1067), + [anon_sym_SEMI_SEMI] = ACTIONS(1067), + [anon_sym_PIPE_AMP] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1067), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1067), + [anon_sym_GT_GT] = ACTIONS(1067), + [anon_sym_AMP_GT] = ACTIONS(1067), + [anon_sym_AMP_GT_GT] = ACTIONS(1067), + [anon_sym_LT_AMP] = ACTIONS(1067), + [anon_sym_GT_AMP] = ACTIONS(1067), + [anon_sym_LT_LT] = ACTIONS(1067), + [anon_sym_LT_LT_DASH] = ACTIONS(1067), + [anon_sym_LT_LT_LT] = ACTIONS(1067), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1067), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + }, + [950] = { + [sym_file_descriptor] = ACTIONS(1065), + [anon_sym_esac] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1067), + [anon_sym_SEMI_SEMI] = ACTIONS(1067), + [anon_sym_PIPE_AMP] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1067), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1067), + [anon_sym_GT_GT] = ACTIONS(1067), + [anon_sym_AMP_GT] = ACTIONS(1067), + [anon_sym_AMP_GT_GT] = ACTIONS(1067), + [anon_sym_LT_AMP] = ACTIONS(1067), + [anon_sym_GT_AMP] = ACTIONS(1067), + [anon_sym_LT_LT] = ACTIONS(1067), + [anon_sym_LT_LT_DASH] = ACTIONS(1067), + [anon_sym_LT_LT_LT] = ACTIONS(1067), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1067), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + }, + [951] = { + [aux_sym_concatenation_repeat1] = STATE(1370), + [sym_file_descriptor] = ACTIONS(688), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(690), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_LT_LT_DASH] = ACTIONS(690), + [anon_sym_LT_LT_LT] = ACTIONS(690), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), + }, + [952] = { + [sym__heredoc_middle] = ACTIONS(3178), + [sym__heredoc_end] = ACTIONS(3178), + [anon_sym_DOLLAR] = ACTIONS(3180), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3178), + [sym_comment] = ACTIONS(54), + }, + [953] = { + [sym_file_descriptor] = ACTIONS(3182), + [anon_sym_esac] = ACTIONS(3184), + [anon_sym_PIPE] = ACTIONS(3184), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_SEMI_SEMI] = ACTIONS(3184), + [anon_sym_PIPE_AMP] = ACTIONS(3184), + [anon_sym_AMP_AMP] = ACTIONS(3184), + [anon_sym_PIPE_PIPE] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_GT] = ACTIONS(3184), + [anon_sym_GT_GT] = ACTIONS(3184), + [anon_sym_AMP_GT] = ACTIONS(3184), + [anon_sym_AMP_GT_GT] = ACTIONS(3184), + [anon_sym_LT_AMP] = ACTIONS(3184), + [anon_sym_GT_AMP] = ACTIONS(3184), + [anon_sym_LT_LT] = ACTIONS(3184), + [anon_sym_LT_LT_DASH] = ACTIONS(3184), + [anon_sym_LT_LT_LT] = ACTIONS(3184), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_LF] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3184), + }, + [954] = { + [anon_sym_DOLLAR] = ACTIONS(3186), + [anon_sym_POUND] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3188), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3186), + [anon_sym_QMARK] = ACTIONS(3186), + [anon_sym_0] = ACTIONS(3190), + [anon_sym__] = ACTIONS(3190), + }, + [955] = { + [sym_subscript] = STATE(1377), + [sym_variable_name] = ACTIONS(3192), + [anon_sym_DOLLAR] = ACTIONS(3194), + [anon_sym_POUND] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3194), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_QMARK] = ACTIONS(3194), + [anon_sym_0] = ACTIONS(3200), + [anon_sym__] = ACTIONS(3200), + }, + [956] = { + [sym_simple_expansion] = STATE(952), + [sym_expansion] = STATE(952), + [aux_sym_heredoc_repeat1] = STATE(1379), + [sym__heredoc_middle] = ACTIONS(2020), + [sym__heredoc_end] = ACTIONS(3202), + [anon_sym_DOLLAR] = ACTIONS(2024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), + [sym_comment] = ACTIONS(54), + }, + [957] = { + [aux_sym_concatenation_repeat1] = STATE(363), + [sym_file_descriptor] = ACTIONS(1101), + [sym__concat] = ACTIONS(658), + [sym_variable_name] = ACTIONS(1101), + [anon_sym_LT] = ACTIONS(1105), + [anon_sym_GT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1101), + [anon_sym_AMP_GT] = ACTIONS(1105), + [anon_sym_AMP_GT_GT] = ACTIONS(1101), + [anon_sym_LT_AMP] = ACTIONS(1101), + [anon_sym_GT_AMP] = ACTIONS(1101), + [sym__special_characters] = ACTIONS(1101), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_DOLLAR] = ACTIONS(1105), + [sym_raw_string] = ACTIONS(1101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1101), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1101), + [anon_sym_LT_LPAREN] = ACTIONS(1101), + [anon_sym_GT_LPAREN] = ACTIONS(1101), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1101), + }, + [958] = { + [aux_sym_concatenation_repeat1] = STATE(363), + [sym_file_descriptor] = ACTIONS(1079), + [sym__concat] = ACTIONS(658), + [sym_variable_name] = ACTIONS(1079), + [anon_sym_LT] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1079), + [anon_sym_AMP_GT] = ACTIONS(1081), + [anon_sym_AMP_GT_GT] = ACTIONS(1079), + [anon_sym_LT_AMP] = ACTIONS(1079), + [anon_sym_GT_AMP] = ACTIONS(1079), + [sym__special_characters] = ACTIONS(1079), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_DOLLAR] = ACTIONS(1081), + [sym_raw_string] = ACTIONS(1079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1079), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1079), + [anon_sym_BQUOTE] = ACTIONS(1079), + [anon_sym_LT_LPAREN] = ACTIONS(1079), + [anon_sym_GT_LPAREN] = ACTIONS(1079), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1079), + }, + [959] = { + [sym_file_redirect] = STATE(534), + [sym_heredoc_redirect] = STATE(534), + [sym_herestring_redirect] = STATE(534), + [aux_sym_while_statement_repeat1] = STATE(534), + [sym_file_descriptor] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(3204), + [anon_sym_SEMI_SEMI] = ACTIONS(3204), + [anon_sym_PIPE_AMP] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_PIPE_PIPE] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(328), + [anon_sym_GT_GT] = ACTIONS(328), + [anon_sym_AMP_GT] = ACTIONS(328), + [anon_sym_AMP_GT_GT] = ACTIONS(328), + [anon_sym_LT_AMP] = ACTIONS(328), + [anon_sym_GT_AMP] = ACTIONS(328), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(332), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3204), + [anon_sym_LF] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3204), + }, + [960] = { + [sym__concat] = ACTIONS(3208), + [anon_sym_EQ] = ACTIONS(3210), + [anon_sym_PLUS_EQ] = ACTIONS(3210), + [sym_comment] = ACTIONS(54), + }, + [961] = { + [anon_sym_EQ] = ACTIONS(3210), + [anon_sym_PLUS_EQ] = ACTIONS(3210), + [sym_comment] = ACTIONS(54), + }, + [962] = { + [aux_sym_concatenation_repeat1] = STATE(962), + [sym__concat] = ACTIONS(2397), + [anon_sym_RBRACK] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + }, + [963] = { + [sym__concat] = ACTIONS(3212), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_PLUS_EQ] = ACTIONS(3214), + [sym_comment] = ACTIONS(54), + }, + [964] = { + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_PLUS_EQ] = ACTIONS(3214), + [sym_comment] = ACTIONS(54), + }, + [965] = { + [sym_string] = STATE(1382), + [sym_simple_expansion] = STATE(1382), + [sym_string_expansion] = STATE(1382), + [sym_expansion] = STATE(1382), + [sym_command_substitution] = STATE(1382), + [sym_process_substitution] = STATE(1382), + [sym__special_characters] = ACTIONS(3216), + [anon_sym_DQUOTE] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(1089), + [sym_raw_string] = ACTIONS(3216), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1095), + [anon_sym_BQUOTE] = ACTIONS(1097), + [anon_sym_LT_LPAREN] = ACTIONS(1099), + [anon_sym_GT_LPAREN] = ACTIONS(1099), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3216), + }, + [966] = { + [aux_sym_concatenation_repeat1] = STATE(1383), + [sym__concat] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(688), + [sym__special_characters] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(688), + [anon_sym_LT_LPAREN] = ACTIONS(688), + [anon_sym_GT_LPAREN] = ACTIONS(688), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(688), + }, + [967] = { + [sym__concat] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(692), + [sym__special_characters] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(694), + [sym_raw_string] = ACTIONS(692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(692), + [anon_sym_BQUOTE] = ACTIONS(692), + [anon_sym_LT_LPAREN] = ACTIONS(692), + [anon_sym_GT_LPAREN] = ACTIONS(692), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(692), + }, + [968] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(3218), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [969] = { + [sym__concat] = ACTIONS(722), + [anon_sym_RPAREN] = ACTIONS(722), + [sym__special_characters] = ACTIONS(722), + [anon_sym_DQUOTE] = ACTIONS(722), + [anon_sym_DOLLAR] = ACTIONS(724), + [sym_raw_string] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(722), + [anon_sym_BQUOTE] = ACTIONS(722), + [anon_sym_LT_LPAREN] = ACTIONS(722), + [anon_sym_GT_LPAREN] = ACTIONS(722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(722), + }, + [970] = { + [sym__concat] = ACTIONS(726), + [anon_sym_RPAREN] = ACTIONS(726), + [sym__special_characters] = ACTIONS(726), + [anon_sym_DQUOTE] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(728), + [sym_raw_string] = ACTIONS(726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(726), + [anon_sym_BQUOTE] = ACTIONS(726), + [anon_sym_LT_LPAREN] = ACTIONS(726), + [anon_sym_GT_LPAREN] = ACTIONS(726), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(726), + }, + [971] = { + [sym__concat] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(730), + [sym__special_characters] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(732), + [sym_raw_string] = ACTIONS(730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(730), + [anon_sym_BQUOTE] = ACTIONS(730), + [anon_sym_LT_LPAREN] = ACTIONS(730), + [anon_sym_GT_LPAREN] = ACTIONS(730), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(730), + }, + [972] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(3220), + [sym_comment] = ACTIONS(54), + }, + [973] = { + [sym_concatenation] = STATE(1388), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1388), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_EQ] = ACTIONS(3224), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3226), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3228), + [anon_sym_COLON] = ACTIONS(3224), + [anon_sym_COLON_QMARK] = ACTIONS(3224), + [anon_sym_COLON_DASH] = ACTIONS(3224), + [anon_sym_PERCENT] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [974] = { + [sym_subscript] = STATE(1392), + [sym_variable_name] = ACTIONS(3230), + [anon_sym_DOLLAR] = ACTIONS(3232), + [anon_sym_DASH] = ACTIONS(3232), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_QMARK] = ACTIONS(3232), + [anon_sym_0] = ACTIONS(3236), + [anon_sym__] = ACTIONS(3236), + }, + [975] = { + [sym_concatenation] = STATE(1395), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1395), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_EQ] = ACTIONS(3240), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3240), + [anon_sym_COLON_QMARK] = ACTIONS(3240), + [anon_sym_COLON_DASH] = ACTIONS(3240), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [976] = { + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1398), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym_EQ] = ACTIONS(3248), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3252), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_COLON_QMARK] = ACTIONS(3248), + [anon_sym_COLON_DASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [977] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [978] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [979] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(3254), + [sym_comment] = ACTIONS(54), + }, + [980] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(3254), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [981] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(3256), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [982] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(3256), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [983] = { + [sym_file_descriptor] = ACTIONS(3258), + [sym_variable_name] = ACTIONS(3258), + [anon_sym_PIPE] = ACTIONS(3260), + [anon_sym_RPAREN] = ACTIONS(3260), + [anon_sym_SEMI_SEMI] = ACTIONS(3260), + [anon_sym_PIPE_AMP] = ACTIONS(3260), + [anon_sym_AMP_AMP] = ACTIONS(3260), + [anon_sym_PIPE_PIPE] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_GT] = ACTIONS(3260), + [anon_sym_GT_GT] = ACTIONS(3260), + [anon_sym_AMP_GT] = ACTIONS(3260), + [anon_sym_AMP_GT_GT] = ACTIONS(3260), + [anon_sym_LT_AMP] = ACTIONS(3260), + [anon_sym_GT_AMP] = ACTIONS(3260), + [sym__special_characters] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [anon_sym_DOLLAR] = ACTIONS(3260), + [sym_raw_string] = ACTIONS(3260), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3260), + [anon_sym_BQUOTE] = ACTIONS(3260), + [anon_sym_LT_LPAREN] = ACTIONS(3260), + [anon_sym_GT_LPAREN] = ACTIONS(3260), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3260), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_LF] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3260), + }, + [984] = { + [sym_concatenation] = STATE(984), + [sym_string] = STATE(549), + [sym_simple_expansion] = STATE(549), + [sym_string_expansion] = STATE(549), + [sym_expansion] = STATE(549), + [sym_command_substitution] = STATE(549), + [sym_process_substitution] = STATE(549), + [aux_sym_for_statement_repeat1] = STATE(984), + [anon_sym_RPAREN] = ACTIONS(3262), + [sym__special_characters] = ACTIONS(3264), + [anon_sym_DQUOTE] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(3270), + [sym_raw_string] = ACTIONS(3273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3276), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3279), + [anon_sym_BQUOTE] = ACTIONS(3282), + [anon_sym_LT_LPAREN] = ACTIONS(3285), + [anon_sym_GT_LPAREN] = ACTIONS(3285), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3273), + }, + [985] = { + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(1634), + [sym_variable_name] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1636), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1636), + [anon_sym_LT_AMP] = ACTIONS(1636), + [anon_sym_GT_AMP] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [986] = { + [aux_sym_concatenation_repeat1] = STATE(986), + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(3288), + [sym_variable_name] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1636), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1636), + [anon_sym_LT_AMP] = ACTIONS(1636), + [anon_sym_GT_AMP] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [987] = { + [sym_file_descriptor] = ACTIONS(1683), + [sym__concat] = ACTIONS(1683), + [sym_variable_name] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1685), + [anon_sym_AMP_GT] = ACTIONS(1685), + [anon_sym_AMP_GT_GT] = ACTIONS(1685), + [anon_sym_LT_AMP] = ACTIONS(1685), + [anon_sym_GT_AMP] = ACTIONS(1685), + [sym__special_characters] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_BQUOTE] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + }, + [988] = { + [sym_concatenation] = STATE(1404), + [sym_string] = STATE(1403), + [sym_simple_expansion] = STATE(1403), + [sym_string_expansion] = STATE(1403), + [sym_expansion] = STATE(1403), + [sym_command_substitution] = STATE(1403), + [sym_process_substitution] = STATE(1403), + [anon_sym_RBRACE] = ACTIONS(3291), + [sym__special_characters] = ACTIONS(3293), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(3295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3295), + }, + [989] = { + [sym_file_descriptor] = ACTIONS(1724), + [sym__concat] = ACTIONS(1724), + [sym_variable_name] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1726), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1726), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1726), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LF] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1726), + }, + [990] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3297), + }, + [991] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [992] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(3301), + [sym_comment] = ACTIONS(54), + }, + [993] = { + [sym_concatenation] = STATE(1410), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1410), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_EQ] = ACTIONS(3305), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3307), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3309), + [anon_sym_COLON] = ACTIONS(3305), + [anon_sym_COLON_QMARK] = ACTIONS(3305), + [anon_sym_COLON_DASH] = ACTIONS(3305), + [anon_sym_PERCENT] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [994] = { + [sym_concatenation] = STATE(1413), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1413), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_EQ] = ACTIONS(3313), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3315), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3317), + [anon_sym_COLON] = ACTIONS(3313), + [anon_sym_COLON_QMARK] = ACTIONS(3313), + [anon_sym_COLON_DASH] = ACTIONS(3313), + [anon_sym_PERCENT] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(3313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [995] = { + [sym_concatenation] = STATE(1415), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1415), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_EQ] = ACTIONS(3319), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3321), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3323), + [anon_sym_COLON] = ACTIONS(3319), + [anon_sym_COLON_QMARK] = ACTIONS(3319), + [anon_sym_COLON_DASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [996] = { + [sym_file_descriptor] = ACTIONS(1790), + [sym__concat] = ACTIONS(1790), + [sym_variable_name] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_SEMI_SEMI] = ACTIONS(1792), + [anon_sym_PIPE_AMP] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1792), + [anon_sym_GT] = ACTIONS(1792), + [anon_sym_GT_GT] = ACTIONS(1792), + [anon_sym_AMP_GT] = ACTIONS(1792), + [anon_sym_AMP_GT_GT] = ACTIONS(1792), + [anon_sym_LT_AMP] = ACTIONS(1792), + [anon_sym_GT_AMP] = ACTIONS(1792), + [sym__special_characters] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1792), + [anon_sym_DOLLAR] = ACTIONS(1792), + [sym_raw_string] = ACTIONS(1792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1792), + [anon_sym_LT_LPAREN] = ACTIONS(1792), + [anon_sym_GT_LPAREN] = ACTIONS(1792), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1792), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_LF] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1792), + }, + [997] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3325), + }, + [998] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3327), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [999] = { + [sym_file_descriptor] = ACTIONS(1798), + [sym__concat] = ACTIONS(1798), + [sym_variable_name] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_RPAREN] = ACTIONS(1800), + [anon_sym_SEMI_SEMI] = ACTIONS(1800), + [anon_sym_PIPE_AMP] = ACTIONS(1800), + [anon_sym_AMP_AMP] = ACTIONS(1800), + [anon_sym_PIPE_PIPE] = ACTIONS(1800), + [anon_sym_LT] = ACTIONS(1800), + [anon_sym_GT] = ACTIONS(1800), + [anon_sym_GT_GT] = ACTIONS(1800), + [anon_sym_AMP_GT] = ACTIONS(1800), + [anon_sym_AMP_GT_GT] = ACTIONS(1800), + [anon_sym_LT_AMP] = ACTIONS(1800), + [anon_sym_GT_AMP] = ACTIONS(1800), + [sym__special_characters] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1800), + [sym_raw_string] = ACTIONS(1800), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1800), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1800), + [anon_sym_BQUOTE] = ACTIONS(1800), + [anon_sym_LT_LPAREN] = ACTIONS(1800), + [anon_sym_GT_LPAREN] = ACTIONS(1800), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_LF] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1800), + }, + [1000] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3329), + }, + [1001] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1002] = { + [sym_file_descriptor] = ACTIONS(1936), + [sym__concat] = ACTIONS(1936), + [sym_variable_name] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_RPAREN] = ACTIONS(1938), + [anon_sym_SEMI_SEMI] = ACTIONS(1938), + [anon_sym_PIPE_AMP] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_PIPE_PIPE] = ACTIONS(1938), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1938), + [anon_sym_GT_GT] = ACTIONS(1938), + [anon_sym_AMP_GT] = ACTIONS(1938), + [anon_sym_AMP_GT_GT] = ACTIONS(1938), + [anon_sym_LT_AMP] = ACTIONS(1938), + [anon_sym_GT_AMP] = ACTIONS(1938), + [sym__special_characters] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_DOLLAR] = ACTIONS(1938), + [sym_raw_string] = ACTIONS(1938), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1938), + [anon_sym_BQUOTE] = ACTIONS(1938), + [anon_sym_LT_LPAREN] = ACTIONS(1938), + [anon_sym_GT_LPAREN] = ACTIONS(1938), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1938), + }, + [1003] = { + [sym_file_descriptor] = ACTIONS(2000), + [sym__concat] = ACTIONS(2000), + [sym_variable_name] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_RPAREN] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [anon_sym_LT] = ACTIONS(2002), + [anon_sym_GT] = ACTIONS(2002), + [anon_sym_GT_GT] = ACTIONS(2002), + [anon_sym_AMP_GT] = ACTIONS(2002), + [anon_sym_AMP_GT_GT] = ACTIONS(2002), + [anon_sym_LT_AMP] = ACTIONS(2002), + [anon_sym_GT_AMP] = ACTIONS(2002), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2002), + [anon_sym_BQUOTE] = ACTIONS(2002), + [anon_sym_LT_LPAREN] = ACTIONS(2002), + [anon_sym_GT_LPAREN] = ACTIONS(2002), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2002), + }, + [1004] = { + [sym_string] = STATE(1419), + [sym_simple_expansion] = STATE(1419), + [sym_string_expansion] = STATE(1419), + [sym_expansion] = STATE(1419), + [sym_command_substitution] = STATE(1419), + [sym_process_substitution] = STATE(1419), + [sym__special_characters] = ACTIONS(3331), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_DOLLAR] = ACTIONS(1131), + [sym_raw_string] = ACTIONS(3331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1135), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1137), + [anon_sym_BQUOTE] = ACTIONS(1139), + [anon_sym_LT_LPAREN] = ACTIONS(1141), + [anon_sym_GT_LPAREN] = ACTIONS(1141), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3331), + }, + [1005] = { + [aux_sym_concatenation_repeat1] = STATE(1420), + [sym__concat] = ACTIONS(2183), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [sym__special_characters] = ACTIONS(690), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(690), + [anon_sym_BQUOTE] = ACTIONS(690), + [anon_sym_LT_LPAREN] = ACTIONS(690), + [anon_sym_GT_LPAREN] = ACTIONS(690), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(690), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), + }, + [1006] = { + [sym__concat] = ACTIONS(692), + [anon_sym_SEMI_SEMI] = ACTIONS(694), + [sym__special_characters] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(694), + [sym_raw_string] = ACTIONS(694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(694), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LT_LPAREN] = ACTIONS(694), + [anon_sym_GT_LPAREN] = ACTIONS(694), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), + }, + [1007] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [1008] = { + [sym__concat] = ACTIONS(722), + [anon_sym_SEMI_SEMI] = ACTIONS(724), + [sym__special_characters] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(724), + [sym_raw_string] = ACTIONS(724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(724), + [anon_sym_BQUOTE] = ACTIONS(724), + [anon_sym_LT_LPAREN] = ACTIONS(724), + [anon_sym_GT_LPAREN] = ACTIONS(724), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(724), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LF] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(724), + }, + [1009] = { + [sym__concat] = ACTIONS(726), + [anon_sym_SEMI_SEMI] = ACTIONS(728), + [sym__special_characters] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(728), + [anon_sym_DOLLAR] = ACTIONS(728), + [sym_raw_string] = ACTIONS(728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(728), + [anon_sym_BQUOTE] = ACTIONS(728), + [anon_sym_LT_LPAREN] = ACTIONS(728), + [anon_sym_GT_LPAREN] = ACTIONS(728), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(728), + [anon_sym_SEMI] = ACTIONS(728), + [anon_sym_LF] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(728), + }, + [1010] = { + [sym__concat] = ACTIONS(730), + [anon_sym_SEMI_SEMI] = ACTIONS(732), + [sym__special_characters] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_DOLLAR] = ACTIONS(732), + [sym_raw_string] = ACTIONS(732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(732), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(732), + [anon_sym_BQUOTE] = ACTIONS(732), + [anon_sym_LT_LPAREN] = ACTIONS(732), + [anon_sym_GT_LPAREN] = ACTIONS(732), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(732), + [anon_sym_SEMI] = ACTIONS(732), + [anon_sym_LF] = ACTIONS(730), + [anon_sym_AMP] = ACTIONS(732), + }, + [1011] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(3335), + [sym_comment] = ACTIONS(54), + }, + [1012] = { + [sym_concatenation] = STATE(1425), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1425), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_EQ] = ACTIONS(3339), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3341), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3343), + [anon_sym_COLON] = ACTIONS(3339), + [anon_sym_COLON_QMARK] = ACTIONS(3339), + [anon_sym_COLON_DASH] = ACTIONS(3339), + [anon_sym_PERCENT] = ACTIONS(3339), + [anon_sym_DASH] = ACTIONS(3339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1013] = { + [sym_subscript] = STATE(1429), + [sym_variable_name] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(3347), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3349), + [anon_sym_STAR] = ACTIONS(3347), + [anon_sym_AT] = ACTIONS(3347), + [anon_sym_QMARK] = ACTIONS(3347), + [anon_sym_0] = ACTIONS(3351), + [anon_sym__] = ACTIONS(3351), + }, + [1014] = { + [sym_concatenation] = STATE(1432), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1432), + [anon_sym_RBRACE] = ACTIONS(3353), + [anon_sym_EQ] = ACTIONS(3355), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1015] = { + [sym_concatenation] = STATE(1435), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1435), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(3363), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3365), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3367), + [anon_sym_COLON] = ACTIONS(3363), + [anon_sym_COLON_QMARK] = ACTIONS(3363), + [anon_sym_COLON_DASH] = ACTIONS(3363), + [anon_sym_PERCENT] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1016] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(3369), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [1017] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(3369), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [1018] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(3369), + [sym_comment] = ACTIONS(54), + }, + [1019] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(3369), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [1020] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(3371), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [1021] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(3371), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [1022] = { + [sym_do_group] = STATE(1438), + [anon_sym_do] = ACTIONS(1143), + [sym_comment] = ACTIONS(54), + }, + [1023] = { + [sym_concatenation] = STATE(1023), + [sym_string] = STATE(576), + [sym_simple_expansion] = STATE(576), + [sym_string_expansion] = STATE(576), + [sym_expansion] = STATE(576), + [sym_command_substitution] = STATE(576), + [sym_process_substitution] = STATE(576), + [aux_sym_for_statement_repeat1] = STATE(1023), + [anon_sym_SEMI_SEMI] = ACTIONS(3373), + [sym__special_characters] = ACTIONS(3375), + [anon_sym_DQUOTE] = ACTIONS(3378), + [anon_sym_DOLLAR] = ACTIONS(3381), + [sym_raw_string] = ACTIONS(3384), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3387), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3390), + [anon_sym_BQUOTE] = ACTIONS(3393), + [anon_sym_LT_LPAREN] = ACTIONS(3396), + [anon_sym_GT_LPAREN] = ACTIONS(3396), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3384), + [anon_sym_SEMI] = ACTIONS(3373), + [anon_sym_LF] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3373), + }, + [1024] = { + [anon_sym_esac] = ACTIONS(2231), + [anon_sym_PIPE] = ACTIONS(2231), + [anon_sym_RPAREN] = ACTIONS(2231), + [anon_sym_SEMI_SEMI] = ACTIONS(2231), + [anon_sym_PIPE_AMP] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_LF] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + }, + [1025] = { + [sym__terminated_statement] = STATE(1028), + [sym_for_statement] = STATE(585), + [sym_while_statement] = STATE(585), + [sym_if_statement] = STATE(585), + [sym_case_statement] = STATE(585), + [sym_function_definition] = STATE(585), + [sym_subshell] = STATE(585), + [sym_pipeline] = STATE(585), + [sym_list] = STATE(585), + [sym_command] = STATE(585), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(585), + [sym_variable_assignment] = STATE(586), + [sym_declaration_command] = STATE(585), + [sym_unset_command] = STATE(585), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1028), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_done] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [1026] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_done] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(944), + [sym_raw_string] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(944), + }, + [1027] = { + [sym_file_descriptor] = ACTIONS(3401), + [anon_sym_esac] = ACTIONS(3403), + [anon_sym_PIPE] = ACTIONS(3403), + [anon_sym_RPAREN] = ACTIONS(3403), + [anon_sym_SEMI_SEMI] = ACTIONS(3403), + [anon_sym_PIPE_AMP] = ACTIONS(3403), + [anon_sym_AMP_AMP] = ACTIONS(3403), + [anon_sym_PIPE_PIPE] = ACTIONS(3403), + [anon_sym_LT] = ACTIONS(3403), + [anon_sym_GT] = ACTIONS(3403), + [anon_sym_GT_GT] = ACTIONS(3403), + [anon_sym_AMP_GT] = ACTIONS(3403), + [anon_sym_AMP_GT_GT] = ACTIONS(3403), + [anon_sym_LT_AMP] = ACTIONS(3403), + [anon_sym_GT_AMP] = ACTIONS(3403), + [anon_sym_LT_LT] = ACTIONS(3403), + [anon_sym_LT_LT_DASH] = ACTIONS(3403), + [anon_sym_LT_LT_LT] = ACTIONS(3403), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_LF] = ACTIONS(3401), + [anon_sym_AMP] = ACTIONS(3403), + }, + [1028] = { + [sym__terminated_statement] = STATE(1028), + [sym_for_statement] = STATE(585), + [sym_while_statement] = STATE(585), + [sym_if_statement] = STATE(585), + [sym_case_statement] = STATE(585), + [sym_function_definition] = STATE(585), + [sym_subshell] = STATE(585), + [sym_pipeline] = STATE(585), + [sym_list] = STATE(585), + [sym_command] = STATE(585), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(585), + [sym_variable_assignment] = STATE(586), + [sym_declaration_command] = STATE(585), + [sym_unset_command] = STATE(585), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1028), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(972), + [sym_variable_name] = ACTIONS(975), + [anon_sym_for] = ACTIONS(980), + [anon_sym_while] = ACTIONS(983), + [anon_sym_done] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(986), + [anon_sym_case] = ACTIONS(989), + [anon_sym_function] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1001), + [anon_sym_declare] = ACTIONS(1004), + [anon_sym_typeset] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1004), + [anon_sym_readonly] = ACTIONS(1004), + [anon_sym_local] = ACTIONS(1004), + [anon_sym_unset] = ACTIONS(1007), + [anon_sym_unsetenv] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_GT_GT] = ACTIONS(1013), + [anon_sym_AMP_GT] = ACTIONS(1010), + [anon_sym_AMP_GT_GT] = ACTIONS(1013), + [anon_sym_LT_AMP] = ACTIONS(1013), + [anon_sym_GT_AMP] = ACTIONS(1013), + [sym__special_characters] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1022), + [sym_raw_string] = ACTIONS(1025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1034), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1040), + }, + [1029] = { + [anon_sym_then] = ACTIONS(3407), + [sym_comment] = ACTIONS(54), + }, + [1030] = { + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(3409), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_LF] = ACTIONS(3411), + [anon_sym_AMP] = ACTIONS(3409), + }, + [1031] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(3409), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_LF] = ACTIONS(3411), + [anon_sym_AMP] = ACTIONS(3409), + }, + [1032] = { + [sym__terminated_statement] = STATE(1442), + [sym_for_statement] = STATE(1030), + [sym_while_statement] = STATE(1030), + [sym_if_statement] = STATE(1030), + [sym_case_statement] = STATE(1030), + [sym_function_definition] = STATE(1030), + [sym_subshell] = STATE(1030), + [sym_pipeline] = STATE(1030), + [sym_list] = STATE(1030), + [sym_command] = STATE(1030), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(1030), + [sym_variable_assignment] = STATE(1031), + [sym_declaration_command] = STATE(1030), + [sym_unset_command] = STATE(1030), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1442), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_fi] = ACTIONS(3413), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [1033] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_fi] = ACTIONS(944), + [anon_sym_elif] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(944), + [sym_raw_string] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(944), + }, + [1034] = { + [anon_sym_esac] = ACTIONS(3415), + [anon_sym_PIPE] = ACTIONS(3415), + [anon_sym_RPAREN] = ACTIONS(3415), + [anon_sym_SEMI_SEMI] = ACTIONS(3415), + [anon_sym_PIPE_AMP] = ACTIONS(3415), + [anon_sym_AMP_AMP] = ACTIONS(3415), + [anon_sym_PIPE_PIPE] = ACTIONS(3415), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_LF] = ACTIONS(3417), + [anon_sym_AMP] = ACTIONS(3415), + }, + [1035] = { + [anon_sym_fi] = ACTIONS(3419), + [sym_comment] = ACTIONS(54), + }, + [1036] = { + [sym__terminated_statement] = STATE(1036), + [sym_for_statement] = STATE(592), + [sym_while_statement] = STATE(592), + [sym_if_statement] = STATE(592), + [sym_case_statement] = STATE(592), + [sym_function_definition] = STATE(592), + [sym_subshell] = STATE(592), + [sym_pipeline] = STATE(592), + [sym_list] = STATE(592), + [sym_command] = STATE(592), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(592), + [sym_variable_assignment] = STATE(594), + [sym_declaration_command] = STATE(592), + [sym_unset_command] = STATE(592), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1036), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(972), + [sym_variable_name] = ACTIONS(975), + [anon_sym_for] = ACTIONS(980), + [anon_sym_while] = ACTIONS(983), + [anon_sym_if] = ACTIONS(986), + [anon_sym_fi] = ACTIONS(3405), + [anon_sym_elif] = ACTIONS(3405), + [anon_sym_else] = ACTIONS(3405), + [anon_sym_case] = ACTIONS(989), + [anon_sym_function] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1001), + [anon_sym_declare] = ACTIONS(1004), + [anon_sym_typeset] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1004), + [anon_sym_readonly] = ACTIONS(1004), + [anon_sym_local] = ACTIONS(1004), + [anon_sym_unset] = ACTIONS(1007), + [anon_sym_unsetenv] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_GT_GT] = ACTIONS(1013), + [anon_sym_AMP_GT] = ACTIONS(1010), + [anon_sym_AMP_GT_GT] = ACTIONS(1013), + [anon_sym_LT_AMP] = ACTIONS(1013), + [anon_sym_GT_AMP] = ACTIONS(1013), + [sym__special_characters] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1022), + [sym_raw_string] = ACTIONS(1025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1034), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1040), + }, + [1037] = { + [sym_elif_clause] = STATE(1038), + [sym_else_clause] = STATE(1444), + [aux_sym_if_statement_repeat1] = STATE(1038), + [anon_sym_fi] = ACTIONS(3419), + [anon_sym_elif] = ACTIONS(2257), + [anon_sym_else] = ACTIONS(2259), + [sym_comment] = ACTIONS(54), + }, + [1038] = { + [sym_elif_clause] = STATE(1038), + [aux_sym_if_statement_repeat1] = STATE(1038), + [anon_sym_fi] = ACTIONS(3421), + [anon_sym_elif] = ACTIONS(3423), + [anon_sym_else] = ACTIONS(3421), + [sym_comment] = ACTIONS(54), + }, + [1039] = { + [anon_sym_esac] = ACTIONS(3426), + [anon_sym_PIPE] = ACTIONS(3426), + [anon_sym_RPAREN] = ACTIONS(3426), + [anon_sym_SEMI_SEMI] = ACTIONS(3426), + [anon_sym_PIPE_AMP] = ACTIONS(3426), + [anon_sym_AMP_AMP] = ACTIONS(3426), + [anon_sym_PIPE_PIPE] = ACTIONS(3426), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3426), + [anon_sym_LF] = ACTIONS(3428), + [anon_sym_AMP] = ACTIONS(3426), + }, + [1040] = { + [aux_sym_case_item_repeat1] = STATE(1447), + [aux_sym_concatenation_repeat1] = STATE(1448), + [sym__concat] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_RPAREN] = ACTIONS(3432), + [sym_comment] = ACTIONS(54), + }, + [1041] = { + [aux_sym_case_item_repeat1] = STATE(1450), + [aux_sym_concatenation_repeat1] = STATE(1448), + [sym__concat] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_RPAREN] = ACTIONS(3434), + [sym_comment] = ACTIONS(54), + }, + [1042] = { + [anon_sym_esac] = ACTIONS(3436), + [sym_comment] = ACTIONS(54), + }, + [1043] = { + [aux_sym_case_item_repeat1] = STATE(1450), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_RPAREN] = ACTIONS(3434), + [sym_comment] = ACTIONS(54), + }, + [1044] = { + [sym_case_item] = STATE(1453), + [sym_last_case_item] = STATE(1452), + [sym_concatenation] = STATE(1043), + [sym_string] = STATE(1041), + [sym_simple_expansion] = STATE(1041), + [sym_string_expansion] = STATE(1041), + [sym_expansion] = STATE(1041), + [sym_command_substitution] = STATE(1041), + [sym_process_substitution] = STATE(1041), + [aux_sym_case_statement_repeat1] = STATE(1453), + [sym__special_characters] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(2265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2265), + }, + [1045] = { + [sym_case_item] = STATE(1455), + [sym_last_case_item] = STATE(1452), + [sym_concatenation] = STATE(1043), + [sym_string] = STATE(1041), + [sym_simple_expansion] = STATE(1041), + [sym_string_expansion] = STATE(1041), + [sym_expansion] = STATE(1041), + [sym_command_substitution] = STATE(1041), + [sym_process_substitution] = STATE(1041), + [aux_sym_case_statement_repeat1] = STATE(1455), + [anon_sym_esac] = ACTIONS(3438), + [sym__special_characters] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(2265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2267), + }, + [1046] = { + [anon_sym_esac] = ACTIONS(3440), + [anon_sym_PIPE] = ACTIONS(3440), + [anon_sym_RPAREN] = ACTIONS(3440), + [anon_sym_SEMI_SEMI] = ACTIONS(3440), + [anon_sym_PIPE_AMP] = ACTIONS(3440), + [anon_sym_AMP_AMP] = ACTIONS(3440), + [anon_sym_PIPE_PIPE] = ACTIONS(3440), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3440), + [anon_sym_LF] = ACTIONS(3442), + [anon_sym_AMP] = ACTIONS(3440), + }, + [1047] = { + [anon_sym_esac] = ACTIONS(3444), + [sym_comment] = ACTIONS(54), + }, + [1048] = { + [sym_case_item] = STATE(1453), + [sym_last_case_item] = STATE(1457), + [sym_concatenation] = STATE(1043), + [sym_string] = STATE(1041), + [sym_simple_expansion] = STATE(1041), + [sym_string_expansion] = STATE(1041), + [sym_expansion] = STATE(1041), + [sym_command_substitution] = STATE(1041), + [sym_process_substitution] = STATE(1041), + [aux_sym_case_statement_repeat1] = STATE(1453), + [sym__special_characters] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(2265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2265), + }, + [1049] = { + [sym_case_item] = STATE(1459), + [sym_last_case_item] = STATE(1457), + [sym_concatenation] = STATE(1043), + [sym_string] = STATE(1041), + [sym_simple_expansion] = STATE(1041), + [sym_string_expansion] = STATE(1041), + [sym_expansion] = STATE(1041), + [sym_command_substitution] = STATE(1041), + [sym_process_substitution] = STATE(1041), + [aux_sym_case_statement_repeat1] = STATE(1459), + [anon_sym_esac] = ACTIONS(3446), + [sym__special_characters] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(2265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2267), + }, + [1050] = { + [sym__concat] = ACTIONS(2672), + [anon_sym_in] = ACTIONS(2674), + [anon_sym_SEMI_SEMI] = ACTIONS(2674), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_LF] = ACTIONS(2672), + [anon_sym_AMP] = ACTIONS(2674), + }, + [1051] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(3448), + [sym_comment] = ACTIONS(54), + }, + [1052] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(3450), + [sym_comment] = ACTIONS(54), + }, + [1053] = { + [anon_sym_RBRACE] = ACTIONS(3450), + [sym_comment] = ACTIONS(54), + }, + [1054] = { + [sym_concatenation] = STATE(1463), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1463), + [anon_sym_RBRACE] = ACTIONS(3452), + [anon_sym_EQ] = ACTIONS(3454), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3456), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(3454), + [anon_sym_COLON_QMARK] = ACTIONS(3454), + [anon_sym_COLON_DASH] = ACTIONS(3454), + [anon_sym_PERCENT] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1055] = { + [sym__concat] = ACTIONS(2750), + [anon_sym_in] = ACTIONS(2752), + [anon_sym_SEMI_SEMI] = ACTIONS(2752), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2752), + }, + [1056] = { + [sym_concatenation] = STATE(1466), + [sym_string] = STATE(1465), + [sym_simple_expansion] = STATE(1465), + [sym_string_expansion] = STATE(1465), + [sym_expansion] = STATE(1465), + [sym_command_substitution] = STATE(1465), + [sym_process_substitution] = STATE(1465), + [anon_sym_RBRACE] = ACTIONS(3450), + [sym__special_characters] = ACTIONS(3458), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(3460), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3460), + }, + [1057] = { + [sym__concat] = ACTIONS(2793), + [anon_sym_in] = ACTIONS(2795), + [anon_sym_SEMI_SEMI] = ACTIONS(2795), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_LF] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2795), + }, + [1058] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3462), + }, + [1059] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3464), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1060] = { + [sym__concat] = ACTIONS(2801), + [anon_sym_in] = ACTIONS(2803), + [anon_sym_SEMI_SEMI] = ACTIONS(2803), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_LF] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + }, + [1061] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3466), + }, + [1062] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3468), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1063] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3470), + }, + [1064] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3450), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1065] = { + [sym_concatenation] = STATE(1473), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1473), + [anon_sym_RBRACE] = ACTIONS(3472), + [anon_sym_EQ] = ACTIONS(3474), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(3474), + [anon_sym_COLON_QMARK] = ACTIONS(3474), + [anon_sym_COLON_DASH] = ACTIONS(3474), + [anon_sym_PERCENT] = ACTIONS(3474), + [anon_sym_DASH] = ACTIONS(3474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1066] = { + [sym__concat] = ACTIONS(2817), + [anon_sym_in] = ACTIONS(2819), + [anon_sym_SEMI_SEMI] = ACTIONS(2819), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_LF] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2819), + }, + [1067] = { + [sym_concatenation] = STATE(1475), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1475), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_EQ] = ACTIONS(3480), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3482), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(3480), + [anon_sym_COLON_QMARK] = ACTIONS(3480), + [anon_sym_COLON_DASH] = ACTIONS(3480), + [anon_sym_PERCENT] = ACTIONS(3480), + [anon_sym_DASH] = ACTIONS(3480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1068] = { + [sym_file_redirect] = STATE(1476), + [sym_file_descriptor] = ACTIONS(1215), + [anon_sym_PIPE] = 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_LT] = ACTIONS(1219), + [anon_sym_GT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1219), + [anon_sym_AMP_GT] = ACTIONS(1219), + [anon_sym_AMP_GT_GT] = ACTIONS(1219), + [anon_sym_LT_AMP] = ACTIONS(1219), + [anon_sym_GT_AMP] = ACTIONS(1219), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_LF] = ACTIONS(3486), + [anon_sym_AMP] = ACTIONS(3484), + }, + [1069] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(944), + [sym_raw_string] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(944), + }, + [1070] = { + [sym_file_descriptor] = ACTIONS(3488), + [anon_sym_esac] = ACTIONS(3490), + [anon_sym_PIPE] = ACTIONS(3490), + [anon_sym_RPAREN] = ACTIONS(3490), + [anon_sym_SEMI_SEMI] = ACTIONS(3490), + [anon_sym_PIPE_AMP] = ACTIONS(3490), + [anon_sym_AMP_AMP] = ACTIONS(3490), + [anon_sym_PIPE_PIPE] = ACTIONS(3490), + [anon_sym_LT] = ACTIONS(3490), + [anon_sym_GT] = ACTIONS(3490), + [anon_sym_GT_GT] = ACTIONS(3490), + [anon_sym_AMP_GT] = ACTIONS(3490), + [anon_sym_AMP_GT_GT] = ACTIONS(3490), + [anon_sym_LT_AMP] = ACTIONS(3490), + [anon_sym_GT_AMP] = ACTIONS(3490), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3490), + [anon_sym_LF] = ACTIONS(3488), + [anon_sym_AMP] = ACTIONS(3490), + }, + [1071] = { + [sym__terminated_statement] = STATE(1071), + [sym_for_statement] = STATE(622), + [sym_while_statement] = STATE(622), + [sym_if_statement] = STATE(622), + [sym_case_statement] = STATE(622), + [sym_function_definition] = STATE(622), + [sym_subshell] = STATE(622), + [sym_pipeline] = STATE(622), + [sym_list] = STATE(622), + [sym_command] = STATE(622), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(622), + [sym_variable_assignment] = STATE(623), + [sym_declaration_command] = STATE(622), + [sym_unset_command] = STATE(622), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1071), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(972), + [sym_variable_name] = ACTIONS(975), + [anon_sym_for] = ACTIONS(980), + [anon_sym_while] = ACTIONS(983), + [anon_sym_if] = ACTIONS(986), + [anon_sym_case] = ACTIONS(989), + [anon_sym_function] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1001), + [anon_sym_declare] = ACTIONS(1004), + [anon_sym_typeset] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1004), + [anon_sym_readonly] = ACTIONS(1004), + [anon_sym_local] = ACTIONS(1004), + [anon_sym_unset] = ACTIONS(1007), + [anon_sym_unsetenv] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_GT_GT] = ACTIONS(1013), + [anon_sym_AMP_GT] = ACTIONS(1010), + [anon_sym_AMP_GT_GT] = ACTIONS(1013), + [anon_sym_LT_AMP] = ACTIONS(1013), + [anon_sym_GT_AMP] = ACTIONS(1013), + [sym__special_characters] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1022), + [sym_raw_string] = ACTIONS(1025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1034), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1040), + }, + [1072] = { + [sym_concatenation] = STATE(1479), + [sym_string] = STATE(1478), + [sym_simple_expansion] = STATE(1478), + [sym_string_expansion] = STATE(1478), + [sym_expansion] = STATE(1478), + [sym_command_substitution] = STATE(1478), + [sym_process_substitution] = STATE(1478), + [sym__special_characters] = ACTIONS(3492), + [anon_sym_DQUOTE] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(178), + [sym_raw_string] = ACTIONS(3494), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1517), + [anon_sym_LT_LPAREN] = ACTIONS(1519), + [anon_sym_GT_LPAREN] = ACTIONS(1519), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3494), + }, + [1073] = { + [aux_sym_concatenation_repeat1] = STATE(1480), + [sym__concat] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(660), + [anon_sym_SEMI_SEMI] = ACTIONS(660), + [anon_sym_PIPE_AMP] = ACTIONS(660), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(660), + [anon_sym_LF] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(660), + }, + [1074] = { + [aux_sym_concatenation_repeat1] = STATE(1480), + [sym__concat] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_SEMI_SEMI] = ACTIONS(674), + [anon_sym_PIPE_AMP] = ACTIONS(674), + [anon_sym_AMP_AMP] = ACTIONS(674), + [anon_sym_PIPE_PIPE] = ACTIONS(674), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(674), + [anon_sym_LF] = ACTIONS(672), + [anon_sym_AMP] = ACTIONS(674), + }, + [1075] = { + [anon_sym_esac] = ACTIONS(674), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(674), + [anon_sym_SEMI_SEMI] = ACTIONS(674), + [anon_sym_PIPE_AMP] = ACTIONS(674), + [anon_sym_AMP_AMP] = ACTIONS(674), + [anon_sym_PIPE_PIPE] = ACTIONS(674), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(674), + [anon_sym_LF] = ACTIONS(672), + [anon_sym_AMP] = ACTIONS(674), + }, + [1076] = { + [aux_sym_concatenation_repeat1] = STATE(1481), + [sym_file_descriptor] = ACTIONS(688), + [sym__concat] = ACTIONS(1103), + [sym_variable_name] = ACTIONS(688), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(690), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(690), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [sym__special_characters] = ACTIONS(690), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(690), + [anon_sym_BQUOTE] = ACTIONS(690), + [anon_sym_LT_LPAREN] = ACTIONS(690), + [anon_sym_GT_LPAREN] = ACTIONS(690), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(690), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), + }, + [1077] = { + [sym_file_redirect] = STATE(651), + [sym_heredoc_redirect] = STATE(651), + [sym_herestring_redirect] = STATE(651), + [aux_sym_while_statement_repeat1] = STATE(651), + [sym_file_descriptor] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(2239), + [anon_sym_RPAREN] = ACTIONS(2239), + [anon_sym_SEMI_SEMI] = ACTIONS(2239), + [anon_sym_PIPE_AMP] = ACTIONS(2239), + [anon_sym_AMP_AMP] = ACTIONS(2239), + [anon_sym_PIPE_PIPE] = ACTIONS(2239), + [anon_sym_LT] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(474), + [anon_sym_GT_GT] = ACTIONS(474), + [anon_sym_AMP_GT] = ACTIONS(474), + [anon_sym_AMP_GT_GT] = ACTIONS(474), + [anon_sym_LT_AMP] = ACTIONS(474), + [anon_sym_GT_AMP] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(476), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_LF] = ACTIONS(2241), + [anon_sym_AMP] = ACTIONS(2239), + }, + [1078] = { + [sym_compound_statement] = STATE(1482), + [anon_sym_LBRACE] = ACTIONS(442), + [sym_comment] = ACTIONS(54), + }, + [1079] = { + [anon_sym_LT] = ACTIONS(3496), + [anon_sym_GT] = ACTIONS(3496), + [anon_sym_GT_GT] = ACTIONS(3498), + [anon_sym_AMP_GT] = ACTIONS(3496), + [anon_sym_AMP_GT_GT] = ACTIONS(3498), + [anon_sym_LT_AMP] = ACTIONS(3498), + [anon_sym_GT_AMP] = ACTIONS(3498), + [sym_comment] = ACTIONS(54), + }, + [1080] = { + [sym_concatenation] = STATE(1075), + [sym_string] = STATE(1485), + [sym_simple_expansion] = STATE(1485), + [sym_string_expansion] = STATE(1485), + [sym_expansion] = STATE(1485), + [sym_command_substitution] = STATE(1485), + [sym_process_substitution] = STATE(1485), + [sym__special_characters] = ACTIONS(3500), + [anon_sym_DQUOTE] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(178), + [sym_raw_string] = ACTIONS(3502), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1517), + [anon_sym_LT_LPAREN] = ACTIONS(1519), + [anon_sym_GT_LPAREN] = ACTIONS(1519), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3502), + }, + [1081] = { + [sym_file_redirect] = STATE(651), + [sym_heredoc_redirect] = STATE(651), + [sym_herestring_redirect] = STATE(651), + [aux_sym_while_statement_repeat1] = STATE(651), + [sym_file_descriptor] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(474), + [anon_sym_GT_GT] = ACTIONS(474), + [anon_sym_AMP_GT] = ACTIONS(474), + [anon_sym_AMP_GT_GT] = ACTIONS(474), + [anon_sym_LT_AMP] = ACTIONS(474), + [anon_sym_GT_AMP] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(476), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_LF] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2440), + }, + [1082] = { + [aux_sym_concatenation_repeat1] = STATE(635), + [sym__concat] = ACTIONS(576), + [sym_variable_name] = ACTIONS(1101), + [anon_sym_PIPE] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(1105), + [anon_sym_SEMI_SEMI] = ACTIONS(1105), + [anon_sym_PIPE_AMP] = ACTIONS(1105), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE_PIPE] = ACTIONS(1105), + [sym__special_characters] = ACTIONS(1105), + [anon_sym_DQUOTE] = ACTIONS(1105), + [anon_sym_DOLLAR] = ACTIONS(1105), + [sym_raw_string] = ACTIONS(1105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1105), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), + [anon_sym_BQUOTE] = ACTIONS(1105), + [anon_sym_LT_LPAREN] = ACTIONS(1105), + [anon_sym_GT_LPAREN] = ACTIONS(1105), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1105), + [sym_word] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(1105), + [anon_sym_LF] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1105), + }, + [1083] = { + [aux_sym_concatenation_repeat1] = STATE(635), + [sym__concat] = ACTIONS(576), + [sym_variable_name] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_RPAREN] = ACTIONS(1081), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1081), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1081), + [sym_word] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1081), + [anon_sym_LF] = ACTIONS(1079), + [anon_sym_AMP] = ACTIONS(1081), + }, + [1084] = { + [aux_sym_concatenation_repeat1] = STATE(1084), + [sym__concat] = ACTIONS(2489), + [sym_variable_name] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1636), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [1085] = { + [aux_sym_concatenation_repeat1] = STATE(1085), + [sym__concat] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1636), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [1086] = { + [sym_file_redirect] = STATE(1369), + [sym_file_descriptor] = ACTIONS(2346), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_SEMI_SEMI] = ACTIONS(2340), + [anon_sym_PIPE_AMP] = ACTIONS(2340), + [anon_sym_AMP_AMP] = ACTIONS(2340), + [anon_sym_PIPE_PIPE] = ACTIONS(2340), + [anon_sym_LT] = ACTIONS(2348), + [anon_sym_GT] = ACTIONS(2348), + [anon_sym_GT_GT] = ACTIONS(2348), + [anon_sym_AMP_GT] = ACTIONS(2348), + [anon_sym_AMP_GT_GT] = ACTIONS(2348), + [anon_sym_LT_AMP] = ACTIONS(2348), + [anon_sym_GT_AMP] = ACTIONS(2348), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_LF] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2340), + }, + [1087] = { + [aux_sym_concatenation_repeat1] = STATE(1089), + [sym_file_descriptor] = ACTIONS(1061), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1063), + [anon_sym_LT_AMP] = ACTIONS(1063), + [anon_sym_GT_AMP] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [anon_sym_LT_LT_LT] = ACTIONS(1063), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1063), + [anon_sym_LF] = ACTIONS(1061), + [anon_sym_AMP] = ACTIONS(1063), + }, + [1088] = { + [aux_sym_concatenation_repeat1] = STATE(1089), + [sym_file_descriptor] = ACTIONS(1065), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1067), + [anon_sym_SEMI_SEMI] = ACTIONS(1067), + [anon_sym_PIPE_AMP] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1067), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1067), + [anon_sym_GT_GT] = ACTIONS(1067), + [anon_sym_AMP_GT] = ACTIONS(1067), + [anon_sym_AMP_GT_GT] = ACTIONS(1067), + [anon_sym_LT_AMP] = ACTIONS(1067), + [anon_sym_GT_AMP] = ACTIONS(1067), + [anon_sym_LT_LT] = ACTIONS(1067), + [anon_sym_LT_LT_DASH] = ACTIONS(1067), + [anon_sym_LT_LT_LT] = ACTIONS(1067), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1067), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + }, + [1089] = { + [aux_sym_concatenation_repeat1] = STATE(1486), + [sym_file_descriptor] = ACTIONS(688), + [sym__concat] = ACTIONS(212), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(690), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(690), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_LT_LT_DASH] = ACTIONS(690), + [anon_sym_LT_LT_LT] = ACTIONS(690), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), + }, + [1090] = { + [anon_sym_esac] = ACTIONS(3504), + [anon_sym_PIPE] = ACTIONS(3504), + [anon_sym_RPAREN] = ACTIONS(3504), + [anon_sym_SEMI_SEMI] = ACTIONS(3504), + [anon_sym_PIPE_AMP] = ACTIONS(3504), + [anon_sym_AMP_AMP] = ACTIONS(3504), + [anon_sym_PIPE_PIPE] = ACTIONS(3504), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3504), + [anon_sym_LF] = ACTIONS(3506), + [anon_sym_AMP] = ACTIONS(3504), + }, + [1091] = { + [sym_file_redirect] = STATE(651), + [sym_heredoc_redirect] = STATE(651), + [sym_herestring_redirect] = STATE(651), + [aux_sym_while_statement_repeat1] = STATE(651), + [sym_file_descriptor] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(3204), + [anon_sym_RPAREN] = ACTIONS(3204), + [anon_sym_SEMI_SEMI] = ACTIONS(3204), + [anon_sym_PIPE_AMP] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_PIPE_PIPE] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(474), + [anon_sym_GT_GT] = ACTIONS(474), + [anon_sym_AMP_GT] = ACTIONS(474), + [anon_sym_AMP_GT_GT] = ACTIONS(474), + [anon_sym_LT_AMP] = ACTIONS(474), + [anon_sym_GT_AMP] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(476), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3204), + [anon_sym_LF] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3204), + }, + [1092] = { + [sym__concat] = ACTIONS(2672), + [anon_sym_EQ_TILDE] = ACTIONS(2674), + [anon_sym_EQ_EQ] = ACTIONS(2674), + [anon_sym_RBRACK] = ACTIONS(2672), + [sym__special_characters] = ACTIONS(2674), + [anon_sym_DQUOTE] = ACTIONS(2672), + [anon_sym_DOLLAR] = ACTIONS(2674), + [sym_raw_string] = ACTIONS(2672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2672), + [anon_sym_BQUOTE] = ACTIONS(2672), + [anon_sym_LT_LPAREN] = ACTIONS(2672), + [anon_sym_GT_LPAREN] = ACTIONS(2672), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2674), + }, + [1093] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(3508), + [sym_comment] = ACTIONS(54), + }, + [1094] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(3510), + [sym_comment] = ACTIONS(54), + }, + [1095] = { + [anon_sym_RBRACE] = ACTIONS(3510), + [sym_comment] = ACTIONS(54), + }, + [1096] = { + [sym_concatenation] = STATE(1490), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1490), + [anon_sym_RBRACE] = ACTIONS(3512), + [anon_sym_EQ] = ACTIONS(3514), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(3514), + [anon_sym_COLON_QMARK] = ACTIONS(3514), + [anon_sym_COLON_DASH] = ACTIONS(3514), + [anon_sym_PERCENT] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1097] = { + [sym__concat] = ACTIONS(2750), + [anon_sym_EQ_TILDE] = ACTIONS(2752), + [anon_sym_EQ_EQ] = ACTIONS(2752), + [anon_sym_RBRACK] = ACTIONS(2750), + [sym__special_characters] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2750), + [anon_sym_DOLLAR] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2750), + [anon_sym_BQUOTE] = ACTIONS(2750), + [anon_sym_LT_LPAREN] = ACTIONS(2750), + [anon_sym_GT_LPAREN] = ACTIONS(2750), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2752), + }, + [1098] = { + [sym_concatenation] = STATE(1493), + [sym_string] = STATE(1492), + [sym_simple_expansion] = STATE(1492), + [sym_string_expansion] = STATE(1492), + [sym_expansion] = STATE(1492), + [sym_command_substitution] = STATE(1492), + [sym_process_substitution] = STATE(1492), + [anon_sym_RBRACE] = ACTIONS(3510), + [sym__special_characters] = ACTIONS(3518), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(3520), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3520), + }, + [1099] = { + [sym__concat] = ACTIONS(2793), + [anon_sym_EQ_TILDE] = ACTIONS(2795), + [anon_sym_EQ_EQ] = ACTIONS(2795), + [anon_sym_RBRACK] = ACTIONS(2793), + [sym__special_characters] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2793), + [anon_sym_DOLLAR] = ACTIONS(2795), + [sym_raw_string] = ACTIONS(2793), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2793), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2793), + [anon_sym_BQUOTE] = ACTIONS(2793), + [anon_sym_LT_LPAREN] = ACTIONS(2793), + [anon_sym_GT_LPAREN] = ACTIONS(2793), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2795), + }, + [1100] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3522), + }, + [1101] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1102] = { + [sym__concat] = ACTIONS(2801), + [anon_sym_EQ_TILDE] = ACTIONS(2803), + [anon_sym_EQ_EQ] = ACTIONS(2803), + [anon_sym_RBRACK] = ACTIONS(2801), + [sym__special_characters] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_DOLLAR] = ACTIONS(2803), + [sym_raw_string] = ACTIONS(2801), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2801), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2801), + [anon_sym_BQUOTE] = ACTIONS(2801), + [anon_sym_LT_LPAREN] = ACTIONS(2801), + [anon_sym_GT_LPAREN] = ACTIONS(2801), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2803), + }, + [1103] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3526), + }, + [1104] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3528), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1105] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3530), + }, + [1106] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3510), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1107] = { + [sym_concatenation] = STATE(1500), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1500), + [anon_sym_RBRACE] = ACTIONS(3532), + [anon_sym_EQ] = ACTIONS(3534), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3536), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1108] = { + [sym__concat] = ACTIONS(2817), + [anon_sym_EQ_TILDE] = ACTIONS(2819), + [anon_sym_EQ_EQ] = ACTIONS(2819), + [anon_sym_RBRACK] = ACTIONS(2817), + [sym__special_characters] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2817), + [anon_sym_DOLLAR] = ACTIONS(2819), + [sym_raw_string] = ACTIONS(2817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), + [anon_sym_BQUOTE] = ACTIONS(2817), + [anon_sym_LT_LPAREN] = ACTIONS(2817), + [anon_sym_GT_LPAREN] = ACTIONS(2817), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2819), + }, + [1109] = { + [sym_concatenation] = STATE(1502), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1502), + [anon_sym_RBRACE] = ACTIONS(3538), + [anon_sym_EQ] = ACTIONS(3540), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3542), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1110] = { + [sym__concat] = ACTIONS(2672), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_RPAREN] = ACTIONS(2672), + [anon_sym_EQ_TILDE] = ACTIONS(2674), + [anon_sym_EQ_EQ] = ACTIONS(2674), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2672), + [sym__special_characters] = ACTIONS(2674), + [anon_sym_DQUOTE] = ACTIONS(2672), + [anon_sym_DOLLAR] = ACTIONS(2674), + [sym_raw_string] = ACTIONS(2672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2672), + [anon_sym_BQUOTE] = ACTIONS(2672), + [anon_sym_LT_LPAREN] = ACTIONS(2672), + [anon_sym_GT_LPAREN] = ACTIONS(2672), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2674), + }, + [1111] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(3544), + [sym_comment] = ACTIONS(54), + }, + [1112] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(3546), + [sym_comment] = ACTIONS(54), + }, + [1113] = { + [anon_sym_RBRACE] = ACTIONS(3546), + [sym_comment] = ACTIONS(54), + }, + [1114] = { + [sym_concatenation] = STATE(1506), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1506), + [anon_sym_RBRACE] = ACTIONS(3548), + [anon_sym_EQ] = ACTIONS(3550), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3552), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(3550), + [anon_sym_COLON_QMARK] = ACTIONS(3550), + [anon_sym_COLON_DASH] = ACTIONS(3550), + [anon_sym_PERCENT] = ACTIONS(3550), + [anon_sym_DASH] = ACTIONS(3550), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1115] = { + [sym__concat] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_EQ_TILDE] = ACTIONS(2752), + [anon_sym_EQ_EQ] = ACTIONS(2752), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2750), + [sym__special_characters] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2750), + [anon_sym_DOLLAR] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2750), + [anon_sym_BQUOTE] = ACTIONS(2750), + [anon_sym_LT_LPAREN] = ACTIONS(2750), + [anon_sym_GT_LPAREN] = ACTIONS(2750), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2752), + }, + [1116] = { + [sym_concatenation] = STATE(1509), + [sym_string] = STATE(1508), + [sym_simple_expansion] = STATE(1508), + [sym_string_expansion] = STATE(1508), + [sym_expansion] = STATE(1508), + [sym_command_substitution] = STATE(1508), + [sym_process_substitution] = STATE(1508), + [anon_sym_RBRACE] = ACTIONS(3546), + [sym__special_characters] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(3556), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3556), + }, + [1117] = { + [sym__concat] = ACTIONS(2793), + [anon_sym_PIPE] = ACTIONS(2793), + [anon_sym_RPAREN] = ACTIONS(2793), + [anon_sym_EQ_TILDE] = ACTIONS(2795), + [anon_sym_EQ_EQ] = ACTIONS(2795), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2793), + [sym__special_characters] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2793), + [anon_sym_DOLLAR] = ACTIONS(2795), + [sym_raw_string] = ACTIONS(2793), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2793), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2793), + [anon_sym_BQUOTE] = ACTIONS(2793), + [anon_sym_LT_LPAREN] = ACTIONS(2793), + [anon_sym_GT_LPAREN] = ACTIONS(2793), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2795), + }, + [1118] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3558), + }, + [1119] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3560), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1120] = { + [sym__concat] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2801), + [anon_sym_RPAREN] = ACTIONS(2801), + [anon_sym_EQ_TILDE] = ACTIONS(2803), + [anon_sym_EQ_EQ] = ACTIONS(2803), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2801), + [sym__special_characters] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_DOLLAR] = ACTIONS(2803), + [sym_raw_string] = ACTIONS(2801), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2801), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2801), + [anon_sym_BQUOTE] = ACTIONS(2801), + [anon_sym_LT_LPAREN] = ACTIONS(2801), + [anon_sym_GT_LPAREN] = ACTIONS(2801), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2803), + }, + [1121] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3562), + }, + [1122] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3564), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1123] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3566), + }, + [1124] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3546), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1125] = { + [sym_concatenation] = STATE(1516), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1516), + [anon_sym_RBRACE] = ACTIONS(3568), + [anon_sym_EQ] = ACTIONS(3570), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(3570), + [anon_sym_COLON_QMARK] = ACTIONS(3570), + [anon_sym_COLON_DASH] = ACTIONS(3570), + [anon_sym_PERCENT] = ACTIONS(3570), + [anon_sym_DASH] = ACTIONS(3570), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1126] = { + [sym__concat] = ACTIONS(2817), + [anon_sym_PIPE] = ACTIONS(2817), + [anon_sym_RPAREN] = ACTIONS(2817), + [anon_sym_EQ_TILDE] = ACTIONS(2819), + [anon_sym_EQ_EQ] = ACTIONS(2819), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2817), + [sym__special_characters] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2817), + [anon_sym_DOLLAR] = ACTIONS(2819), + [sym_raw_string] = ACTIONS(2817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), + [anon_sym_BQUOTE] = ACTIONS(2817), + [anon_sym_LT_LPAREN] = ACTIONS(2817), + [anon_sym_GT_LPAREN] = ACTIONS(2817), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2819), + }, + [1127] = { + [sym_concatenation] = STATE(1518), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1518), + [anon_sym_RBRACE] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3576), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3578), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(3576), + [anon_sym_COLON_QMARK] = ACTIONS(3576), + [anon_sym_COLON_DASH] = ACTIONS(3576), + [anon_sym_PERCENT] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1128] = { + [sym_variable_name] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2107), + [anon_sym_RPAREN] = ACTIONS(2107), + [anon_sym_SEMI_SEMI] = ACTIONS(2107), + [anon_sym_PIPE_AMP] = ACTIONS(2107), + [anon_sym_AMP_AMP] = ACTIONS(2107), + [anon_sym_PIPE_PIPE] = ACTIONS(2107), + [sym__special_characters] = ACTIONS(2107), + [anon_sym_DQUOTE] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(2107), + [sym_raw_string] = ACTIONS(2107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2107), + [anon_sym_LT_LPAREN] = ACTIONS(2107), + [anon_sym_GT_LPAREN] = ACTIONS(2107), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2107), + [sym_word] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_LF] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2107), + }, + [1129] = { + [sym_concatenation] = STATE(984), + [sym_string] = STATE(549), + [sym_simple_expansion] = STATE(549), + [sym_string_expansion] = STATE(549), + [sym_expansion] = STATE(549), + [sym_command_substitution] = STATE(549), + [sym_process_substitution] = STATE(549), + [aux_sym_for_statement_repeat1] = STATE(984), + [anon_sym_RPAREN] = ACTIONS(3580), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(1089), + [sym_raw_string] = ACTIONS(1091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1095), + [anon_sym_BQUOTE] = ACTIONS(1097), + [anon_sym_LT_LPAREN] = ACTIONS(1099), + [anon_sym_GT_LPAREN] = ACTIONS(1099), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1091), + }, + [1130] = { + [sym__concat] = ACTIONS(2672), + [sym_variable_name] = ACTIONS(2672), + [anon_sym_PIPE] = ACTIONS(2674), + [anon_sym_RPAREN] = ACTIONS(2674), + [anon_sym_SEMI_SEMI] = ACTIONS(2674), + [anon_sym_PIPE_AMP] = ACTIONS(2674), + [anon_sym_AMP_AMP] = ACTIONS(2674), + [anon_sym_PIPE_PIPE] = ACTIONS(2674), + [sym__special_characters] = ACTIONS(2674), + [anon_sym_DQUOTE] = ACTIONS(2674), + [anon_sym_DOLLAR] = ACTIONS(2674), + [sym_raw_string] = ACTIONS(2674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2674), + [anon_sym_BQUOTE] = ACTIONS(2674), + [anon_sym_LT_LPAREN] = ACTIONS(2674), + [anon_sym_GT_LPAREN] = ACTIONS(2674), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2674), + [sym_word] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_LF] = ACTIONS(2672), + [anon_sym_AMP] = ACTIONS(2674), + }, + [1131] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(3582), + [sym_comment] = ACTIONS(54), + }, + [1132] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(3584), + [sym_comment] = ACTIONS(54), + }, + [1133] = { + [anon_sym_RBRACE] = ACTIONS(3584), + [sym_comment] = ACTIONS(54), + }, + [1134] = { + [sym_concatenation] = STATE(1523), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1523), + [anon_sym_RBRACE] = ACTIONS(3586), + [anon_sym_EQ] = ACTIONS(3588), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3590), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(3588), + [anon_sym_COLON_QMARK] = ACTIONS(3588), + [anon_sym_COLON_DASH] = ACTIONS(3588), + [anon_sym_PERCENT] = ACTIONS(3588), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1135] = { + [sym__concat] = ACTIONS(2750), + [sym_variable_name] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_RPAREN] = ACTIONS(2752), + [anon_sym_SEMI_SEMI] = ACTIONS(2752), + [anon_sym_PIPE_AMP] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [sym__special_characters] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2752), + [anon_sym_BQUOTE] = ACTIONS(2752), + [anon_sym_LT_LPAREN] = ACTIONS(2752), + [anon_sym_GT_LPAREN] = ACTIONS(2752), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2752), + [sym_word] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2752), + }, + [1136] = { + [sym_concatenation] = STATE(1526), + [sym_string] = STATE(1525), + [sym_simple_expansion] = STATE(1525), + [sym_string_expansion] = STATE(1525), + [sym_expansion] = STATE(1525), + [sym_command_substitution] = STATE(1525), + [sym_process_substitution] = STATE(1525), + [anon_sym_RBRACE] = ACTIONS(3584), + [sym__special_characters] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(3594), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3594), + }, + [1137] = { + [sym__concat] = ACTIONS(2793), + [sym_variable_name] = ACTIONS(2793), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_RPAREN] = ACTIONS(2795), + [anon_sym_SEMI_SEMI] = ACTIONS(2795), + [anon_sym_PIPE_AMP] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [sym__special_characters] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [anon_sym_DOLLAR] = ACTIONS(2795), + [sym_raw_string] = ACTIONS(2795), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2795), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2795), + [anon_sym_BQUOTE] = ACTIONS(2795), + [anon_sym_LT_LPAREN] = ACTIONS(2795), + [anon_sym_GT_LPAREN] = ACTIONS(2795), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2795), + [sym_word] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_LF] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2795), + }, + [1138] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3596), + }, + [1139] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1140] = { + [sym__concat] = ACTIONS(2801), + [sym_variable_name] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2803), + [anon_sym_RPAREN] = ACTIONS(2803), + [anon_sym_SEMI_SEMI] = ACTIONS(2803), + [anon_sym_PIPE_AMP] = ACTIONS(2803), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_PIPE_PIPE] = ACTIONS(2803), + [sym__special_characters] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2803), + [sym_raw_string] = ACTIONS(2803), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2803), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2803), + [anon_sym_BQUOTE] = ACTIONS(2803), + [anon_sym_LT_LPAREN] = ACTIONS(2803), + [anon_sym_GT_LPAREN] = ACTIONS(2803), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2803), + [sym_word] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_LF] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + }, + [1141] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3600), + }, + [1142] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3602), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1143] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3604), + }, + [1144] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3584), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1145] = { + [sym_concatenation] = STATE(1533), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1533), + [anon_sym_RBRACE] = ACTIONS(3606), + [anon_sym_EQ] = ACTIONS(3608), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1146] = { + [sym__concat] = ACTIONS(2817), + [sym_variable_name] = ACTIONS(2817), + [anon_sym_PIPE] = ACTIONS(2819), + [anon_sym_RPAREN] = ACTIONS(2819), + [anon_sym_SEMI_SEMI] = ACTIONS(2819), + [anon_sym_PIPE_AMP] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_PIPE_PIPE] = ACTIONS(2819), + [sym__special_characters] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [anon_sym_DOLLAR] = ACTIONS(2819), + [sym_raw_string] = ACTIONS(2819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2819), + [anon_sym_BQUOTE] = ACTIONS(2819), + [anon_sym_LT_LPAREN] = ACTIONS(2819), + [anon_sym_GT_LPAREN] = ACTIONS(2819), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2819), + [sym_word] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_LF] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2819), + }, + [1147] = { + [sym_concatenation] = STATE(1535), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1535), + [anon_sym_RBRACE] = ACTIONS(3612), + [anon_sym_EQ] = ACTIONS(3614), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3616), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1148] = { + [sym__concat] = ACTIONS(2672), + [anon_sym_PIPE] = ACTIONS(2674), + [anon_sym_RPAREN] = ACTIONS(2674), + [anon_sym_SEMI_SEMI] = ACTIONS(2674), + [anon_sym_PIPE_AMP] = ACTIONS(2674), + [anon_sym_AMP_AMP] = ACTIONS(2674), + [anon_sym_PIPE_PIPE] = ACTIONS(2674), + [sym__special_characters] = ACTIONS(2674), + [anon_sym_DQUOTE] = ACTIONS(2674), + [anon_sym_DOLLAR] = ACTIONS(2674), + [sym_raw_string] = ACTIONS(2674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2674), + [anon_sym_BQUOTE] = ACTIONS(2674), + [anon_sym_LT_LPAREN] = ACTIONS(2674), + [anon_sym_GT_LPAREN] = ACTIONS(2674), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2674), + [sym_word] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_LF] = ACTIONS(2672), + [anon_sym_AMP] = ACTIONS(2674), + }, + [1149] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(3618), + [sym_comment] = ACTIONS(54), + }, + [1150] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(3620), + [sym_comment] = ACTIONS(54), + }, + [1151] = { + [anon_sym_RBRACE] = ACTIONS(3620), + [sym_comment] = ACTIONS(54), + }, + [1152] = { + [sym_concatenation] = STATE(1539), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1539), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_EQ] = ACTIONS(3624), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3626), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(3624), + [anon_sym_COLON_QMARK] = ACTIONS(3624), + [anon_sym_COLON_DASH] = ACTIONS(3624), + [anon_sym_PERCENT] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1153] = { + [sym__concat] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_RPAREN] = ACTIONS(2752), + [anon_sym_SEMI_SEMI] = ACTIONS(2752), + [anon_sym_PIPE_AMP] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [sym__special_characters] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2752), + [anon_sym_BQUOTE] = ACTIONS(2752), + [anon_sym_LT_LPAREN] = ACTIONS(2752), + [anon_sym_GT_LPAREN] = ACTIONS(2752), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2752), + [sym_word] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2752), + }, + [1154] = { + [sym_concatenation] = STATE(1542), + [sym_string] = STATE(1541), + [sym_simple_expansion] = STATE(1541), + [sym_string_expansion] = STATE(1541), + [sym_expansion] = STATE(1541), + [sym_command_substitution] = STATE(1541), + [sym_process_substitution] = STATE(1541), + [anon_sym_RBRACE] = ACTIONS(3620), + [sym__special_characters] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(3630), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3630), + }, + [1155] = { + [sym__concat] = ACTIONS(2793), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_RPAREN] = ACTIONS(2795), + [anon_sym_SEMI_SEMI] = ACTIONS(2795), + [anon_sym_PIPE_AMP] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [sym__special_characters] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [anon_sym_DOLLAR] = ACTIONS(2795), + [sym_raw_string] = ACTIONS(2795), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2795), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2795), + [anon_sym_BQUOTE] = ACTIONS(2795), + [anon_sym_LT_LPAREN] = ACTIONS(2795), + [anon_sym_GT_LPAREN] = ACTIONS(2795), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2795), + [sym_word] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_LF] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2795), + }, + [1156] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3632), + }, + [1157] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3634), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1158] = { + [sym__concat] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2803), + [anon_sym_RPAREN] = ACTIONS(2803), + [anon_sym_SEMI_SEMI] = ACTIONS(2803), + [anon_sym_PIPE_AMP] = ACTIONS(2803), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_PIPE_PIPE] = ACTIONS(2803), + [sym__special_characters] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2803), + [sym_raw_string] = ACTIONS(2803), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2803), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2803), + [anon_sym_BQUOTE] = ACTIONS(2803), + [anon_sym_LT_LPAREN] = ACTIONS(2803), + [anon_sym_GT_LPAREN] = ACTIONS(2803), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2803), + [sym_word] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_LF] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + }, + [1159] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3636), + }, + [1160] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1161] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3640), + }, + [1162] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3620), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1163] = { + [sym_concatenation] = STATE(1549), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1549), + [anon_sym_RBRACE] = ACTIONS(3642), + [anon_sym_EQ] = ACTIONS(3644), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(3644), + [anon_sym_COLON_QMARK] = ACTIONS(3644), + [anon_sym_COLON_DASH] = ACTIONS(3644), + [anon_sym_PERCENT] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1164] = { + [sym__concat] = ACTIONS(2817), + [anon_sym_PIPE] = ACTIONS(2819), + [anon_sym_RPAREN] = ACTIONS(2819), + [anon_sym_SEMI_SEMI] = ACTIONS(2819), + [anon_sym_PIPE_AMP] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_PIPE_PIPE] = ACTIONS(2819), + [sym__special_characters] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [anon_sym_DOLLAR] = ACTIONS(2819), + [sym_raw_string] = ACTIONS(2819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2819), + [anon_sym_BQUOTE] = ACTIONS(2819), + [anon_sym_LT_LPAREN] = ACTIONS(2819), + [anon_sym_GT_LPAREN] = ACTIONS(2819), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2819), + [sym_word] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_LF] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2819), + }, + [1165] = { + [sym_concatenation] = STATE(1551), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1551), + [anon_sym_RBRACE] = ACTIONS(3648), + [anon_sym_EQ] = ACTIONS(3650), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1166] = { + [sym_file_descriptor] = ACTIONS(2672), + [sym__concat] = ACTIONS(2672), + [sym_variable_name] = ACTIONS(2672), + [anon_sym_PIPE] = ACTIONS(2674), + [anon_sym_RPAREN] = ACTIONS(2672), + [anon_sym_PIPE_AMP] = ACTIONS(2672), + [anon_sym_AMP_AMP] = ACTIONS(2672), + [anon_sym_PIPE_PIPE] = ACTIONS(2672), + [anon_sym_LT] = ACTIONS(2674), + [anon_sym_GT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2672), + [anon_sym_AMP_GT] = ACTIONS(2674), + [anon_sym_AMP_GT_GT] = ACTIONS(2672), + [anon_sym_LT_AMP] = ACTIONS(2672), + [anon_sym_GT_AMP] = ACTIONS(2672), + [sym__special_characters] = ACTIONS(2672), + [anon_sym_DQUOTE] = ACTIONS(2672), + [anon_sym_DOLLAR] = ACTIONS(2674), + [sym_raw_string] = ACTIONS(2672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2672), + [anon_sym_BQUOTE] = ACTIONS(2672), + [anon_sym_LT_LPAREN] = ACTIONS(2672), + [anon_sym_GT_LPAREN] = ACTIONS(2672), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2672), + }, + [1167] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(3654), + [sym_comment] = ACTIONS(54), + }, + [1168] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(3656), + [sym_comment] = ACTIONS(54), + }, + [1169] = { + [anon_sym_RBRACE] = ACTIONS(3656), + [sym_comment] = ACTIONS(54), + }, + [1170] = { + [sym_concatenation] = STATE(1555), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1555), + [anon_sym_RBRACE] = ACTIONS(3658), + [anon_sym_EQ] = ACTIONS(3660), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3662), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(3660), + [anon_sym_COLON_QMARK] = ACTIONS(3660), + [anon_sym_COLON_DASH] = ACTIONS(3660), + [anon_sym_PERCENT] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1171] = { + [sym_file_descriptor] = ACTIONS(2750), + [sym__concat] = ACTIONS(2750), + [sym_variable_name] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_PIPE_AMP] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(2752), + [anon_sym_GT] = ACTIONS(2752), + [anon_sym_GT_GT] = ACTIONS(2750), + [anon_sym_AMP_GT] = ACTIONS(2752), + [anon_sym_AMP_GT_GT] = ACTIONS(2750), + [anon_sym_LT_AMP] = ACTIONS(2750), + [anon_sym_GT_AMP] = ACTIONS(2750), + [sym__special_characters] = ACTIONS(2750), + [anon_sym_DQUOTE] = ACTIONS(2750), + [anon_sym_DOLLAR] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2750), + [anon_sym_BQUOTE] = ACTIONS(2750), + [anon_sym_LT_LPAREN] = ACTIONS(2750), + [anon_sym_GT_LPAREN] = ACTIONS(2750), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2750), + }, + [1172] = { + [sym_concatenation] = STATE(1558), + [sym_string] = STATE(1557), + [sym_simple_expansion] = STATE(1557), + [sym_string_expansion] = STATE(1557), + [sym_expansion] = STATE(1557), + [sym_command_substitution] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [anon_sym_RBRACE] = ACTIONS(3656), + [sym__special_characters] = ACTIONS(3664), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(3666), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3666), + }, + [1173] = { + [sym_file_descriptor] = ACTIONS(2793), + [sym__concat] = ACTIONS(2793), + [sym_variable_name] = ACTIONS(2793), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_RPAREN] = ACTIONS(2793), + [anon_sym_PIPE_AMP] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_PIPE_PIPE] = ACTIONS(2793), + [anon_sym_LT] = ACTIONS(2795), + [anon_sym_GT] = ACTIONS(2795), + [anon_sym_GT_GT] = ACTIONS(2793), + [anon_sym_AMP_GT] = ACTIONS(2795), + [anon_sym_AMP_GT_GT] = ACTIONS(2793), + [anon_sym_LT_AMP] = ACTIONS(2793), + [anon_sym_GT_AMP] = ACTIONS(2793), + [sym__special_characters] = ACTIONS(2793), + [anon_sym_DQUOTE] = ACTIONS(2793), + [anon_sym_DOLLAR] = ACTIONS(2795), + [sym_raw_string] = ACTIONS(2793), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2793), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2793), + [anon_sym_BQUOTE] = ACTIONS(2793), + [anon_sym_LT_LPAREN] = ACTIONS(2793), + [anon_sym_GT_LPAREN] = ACTIONS(2793), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2793), + }, + [1174] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3668), + }, + [1175] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3670), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1176] = { + [sym_file_descriptor] = ACTIONS(2801), + [sym__concat] = ACTIONS(2801), + [sym_variable_name] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2803), + [anon_sym_RPAREN] = ACTIONS(2801), + [anon_sym_PIPE_AMP] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_GT] = ACTIONS(2803), + [anon_sym_GT_GT] = ACTIONS(2801), + [anon_sym_AMP_GT] = ACTIONS(2803), + [anon_sym_AMP_GT_GT] = ACTIONS(2801), + [anon_sym_LT_AMP] = ACTIONS(2801), + [anon_sym_GT_AMP] = ACTIONS(2801), + [sym__special_characters] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_DOLLAR] = ACTIONS(2803), + [sym_raw_string] = ACTIONS(2801), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2801), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2801), + [anon_sym_BQUOTE] = ACTIONS(2801), + [anon_sym_LT_LPAREN] = ACTIONS(2801), + [anon_sym_GT_LPAREN] = ACTIONS(2801), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2801), + }, + [1177] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3672), + }, + [1178] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3674), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1179] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3676), + }, + [1180] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1181] = { + [sym_concatenation] = STATE(1565), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1565), + [anon_sym_RBRACE] = ACTIONS(3678), + [anon_sym_EQ] = ACTIONS(3680), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3682), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(3680), + [anon_sym_COLON_QMARK] = ACTIONS(3680), + [anon_sym_COLON_DASH] = ACTIONS(3680), + [anon_sym_PERCENT] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1182] = { + [sym_file_descriptor] = ACTIONS(2817), + [sym__concat] = ACTIONS(2817), + [sym_variable_name] = ACTIONS(2817), + [anon_sym_PIPE] = ACTIONS(2819), + [anon_sym_RPAREN] = ACTIONS(2817), + [anon_sym_PIPE_AMP] = ACTIONS(2817), + [anon_sym_AMP_AMP] = ACTIONS(2817), + [anon_sym_PIPE_PIPE] = ACTIONS(2817), + [anon_sym_LT] = ACTIONS(2819), + [anon_sym_GT] = ACTIONS(2819), + [anon_sym_GT_GT] = ACTIONS(2817), + [anon_sym_AMP_GT] = ACTIONS(2819), + [anon_sym_AMP_GT_GT] = ACTIONS(2817), + [anon_sym_LT_AMP] = ACTIONS(2817), + [anon_sym_GT_AMP] = ACTIONS(2817), + [sym__special_characters] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2817), + [anon_sym_DOLLAR] = ACTIONS(2819), + [sym_raw_string] = ACTIONS(2817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), + [anon_sym_BQUOTE] = ACTIONS(2817), + [anon_sym_LT_LPAREN] = ACTIONS(2817), + [anon_sym_GT_LPAREN] = ACTIONS(2817), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2817), + }, + [1183] = { + [sym_concatenation] = STATE(1567), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1567), + [anon_sym_RBRACE] = ACTIONS(3684), + [anon_sym_EQ] = ACTIONS(3686), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(3686), + [anon_sym_COLON_QMARK] = ACTIONS(3686), + [anon_sym_COLON_DASH] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1184] = { + [sym__concat] = ACTIONS(2672), + [anon_sym_DQUOTE] = ACTIONS(2674), + [anon_sym_DOLLAR] = ACTIONS(2674), + [sym__string_content] = ACTIONS(2672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2674), + [anon_sym_BQUOTE] = ACTIONS(2674), + [sym_comment] = ACTIONS(166), + }, + [1185] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(3690), + [sym_comment] = ACTIONS(54), + }, + [1186] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(3692), + [sym_comment] = ACTIONS(54), + }, + [1187] = { + [anon_sym_RBRACE] = ACTIONS(3692), + [sym_comment] = ACTIONS(54), + }, + [1188] = { + [sym_concatenation] = STATE(1571), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1571), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_EQ] = ACTIONS(3696), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1189] = { + [sym__concat] = ACTIONS(2750), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2752), + [sym__string_content] = ACTIONS(2750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2752), + [anon_sym_BQUOTE] = ACTIONS(2752), + [sym_comment] = ACTIONS(166), + }, + [1190] = { + [sym_concatenation] = STATE(1574), + [sym_string] = STATE(1573), + [sym_simple_expansion] = STATE(1573), + [sym_string_expansion] = STATE(1573), + [sym_expansion] = STATE(1573), + [sym_command_substitution] = STATE(1573), + [sym_process_substitution] = STATE(1573), + [anon_sym_RBRACE] = ACTIONS(3692), + [sym__special_characters] = ACTIONS(3700), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(3702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3702), + }, + [1191] = { + [sym__concat] = ACTIONS(2793), + [anon_sym_DQUOTE] = ACTIONS(2795), + [anon_sym_DOLLAR] = ACTIONS(2795), + [sym__string_content] = ACTIONS(2793), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2795), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2795), + [anon_sym_BQUOTE] = ACTIONS(2795), + [sym_comment] = ACTIONS(166), + }, + [1192] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3704), + }, + [1193] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3706), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1194] = { + [sym__concat] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2803), + [sym__string_content] = ACTIONS(2801), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2803), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2803), + [anon_sym_BQUOTE] = ACTIONS(2803), + [sym_comment] = ACTIONS(166), + }, + [1195] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3708), + }, + [1196] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3710), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1197] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3712), + }, + [1198] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3692), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1199] = { + [sym_concatenation] = STATE(1581), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1581), + [anon_sym_RBRACE] = ACTIONS(3714), + [anon_sym_EQ] = ACTIONS(3716), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3718), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(3716), + [anon_sym_COLON_QMARK] = ACTIONS(3716), + [anon_sym_COLON_DASH] = ACTIONS(3716), + [anon_sym_PERCENT] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1200] = { + [sym__concat] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2819), + [anon_sym_DOLLAR] = ACTIONS(2819), + [sym__string_content] = ACTIONS(2817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2819), + [anon_sym_BQUOTE] = ACTIONS(2819), + [sym_comment] = ACTIONS(166), + }, + [1201] = { + [sym_concatenation] = STATE(1583), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1583), + [anon_sym_RBRACE] = ACTIONS(3720), + [anon_sym_EQ] = ACTIONS(3722), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_COLON_QMARK] = ACTIONS(3722), + [anon_sym_COLON_DASH] = ACTIONS(3722), + [anon_sym_PERCENT] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1202] = { + [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(3726), + [sym__special_characters] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(110), + [anon_sym_DOLLAR] = ACTIONS(112), + [sym_raw_string] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(118), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_LT_LPAREN] = ACTIONS(122), + [anon_sym_GT_LPAREN] = ACTIONS(122), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1271), + }, + [1203] = { + [sym__concat] = ACTIONS(3728), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_EQ] = ACTIONS(3730), + [sym__special_characters] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(2097), + [anon_sym_DOLLAR] = ACTIONS(3730), + [sym_raw_string] = ACTIONS(2097), + [anon_sym_POUND] = ACTIONS(2097), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2097), + [aux_sym_SLASH] = ACTIONS(2097), + [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(2097), + [anon_sym_BQUOTE] = ACTIONS(2097), + [anon_sym_LT_LPAREN] = ACTIONS(2097), + [anon_sym_GT_LPAREN] = ACTIONS(2097), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3730), + }, + [1204] = { + [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(3732), + [sym__special_characters] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(110), + [anon_sym_DOLLAR] = ACTIONS(112), + [sym_raw_string] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(118), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_LT_LPAREN] = ACTIONS(122), + [anon_sym_GT_LPAREN] = ACTIONS(122), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1271), + }, + [1205] = { + [sym__concat] = ACTIONS(3734), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_EQ] = ACTIONS(3736), + [sym__special_characters] = ACTIONS(3736), + [anon_sym_DQUOTE] = ACTIONS(2103), + [anon_sym_DOLLAR] = ACTIONS(3736), + [sym_raw_string] = ACTIONS(2103), + [anon_sym_POUND] = ACTIONS(2103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2103), + [aux_sym_SLASH] = ACTIONS(2103), + [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(2103), + [anon_sym_BQUOTE] = ACTIONS(2103), + [anon_sym_LT_LPAREN] = ACTIONS(2103), + [anon_sym_GT_LPAREN] = ACTIONS(2103), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3736), + }, + [1206] = { + [anon_sym_RBRACK] = ACTIONS(3732), + [sym_comment] = ACTIONS(54), + }, + [1207] = { + [sym_string] = STATE(1588), + [sym_simple_expansion] = STATE(1588), + [sym_string_expansion] = STATE(1588), + [sym_expansion] = STATE(1588), + [sym_command_substitution] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [sym__special_characters] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(3738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3738), + }, + [1208] = { + [sym_file_descriptor] = ACTIONS(3740), + [sym__concat] = ACTIONS(3740), + [anon_sym_PIPE] = ACTIONS(3742), + [anon_sym_RPAREN] = ACTIONS(3742), + [anon_sym_SEMI_SEMI] = ACTIONS(3742), + [anon_sym_PIPE_AMP] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_EQ_TILDE] = ACTIONS(3742), + [anon_sym_EQ_EQ] = ACTIONS(3742), + [anon_sym_LT] = ACTIONS(3742), + [anon_sym_GT] = ACTIONS(3742), + [anon_sym_GT_GT] = ACTIONS(3742), + [anon_sym_AMP_GT] = ACTIONS(3742), + [anon_sym_AMP_GT_GT] = ACTIONS(3742), + [anon_sym_LT_AMP] = ACTIONS(3742), + [anon_sym_GT_AMP] = ACTIONS(3742), + [anon_sym_LT_LT] = ACTIONS(3742), + [anon_sym_LT_LT_DASH] = ACTIONS(3742), + [anon_sym_LT_LT_LT] = ACTIONS(3742), + [sym__special_characters] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_DOLLAR] = ACTIONS(3742), + [sym_raw_string] = ACTIONS(3742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3742), + [anon_sym_BQUOTE] = ACTIONS(3742), + [anon_sym_LT_LPAREN] = ACTIONS(3742), + [anon_sym_GT_LPAREN] = ACTIONS(3742), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_LF] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3742), + }, + [1209] = { + [aux_sym_concatenation_repeat1] = STATE(1589), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(688), + [sym_comment] = ACTIONS(54), + }, + [1210] = { + [sym__concat] = ACTIONS(692), + [anon_sym_RBRACE] = ACTIONS(692), + [sym_comment] = ACTIONS(54), + }, + [1211] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(3744), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [1212] = { + [sym__concat] = ACTIONS(722), + [anon_sym_RBRACE] = ACTIONS(722), + [sym_comment] = ACTIONS(54), + }, + [1213] = { + [sym__concat] = ACTIONS(726), + [anon_sym_RBRACE] = ACTIONS(726), + [sym_comment] = ACTIONS(54), + }, + [1214] = { + [sym__concat] = ACTIONS(730), + [anon_sym_RBRACE] = ACTIONS(730), + [sym_comment] = ACTIONS(54), + }, + [1215] = { + [sym_file_descriptor] = ACTIONS(3746), + [sym__concat] = ACTIONS(3746), + [anon_sym_PIPE] = ACTIONS(3748), + [anon_sym_RPAREN] = ACTIONS(3748), + [anon_sym_SEMI_SEMI] = ACTIONS(3748), + [anon_sym_PIPE_AMP] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_PIPE_PIPE] = ACTIONS(3748), + [anon_sym_EQ_TILDE] = ACTIONS(3748), + [anon_sym_EQ_EQ] = ACTIONS(3748), + [anon_sym_LT] = ACTIONS(3748), + [anon_sym_GT] = ACTIONS(3748), + [anon_sym_GT_GT] = ACTIONS(3748), + [anon_sym_AMP_GT] = ACTIONS(3748), + [anon_sym_AMP_GT_GT] = ACTIONS(3748), + [anon_sym_LT_AMP] = ACTIONS(3748), + [anon_sym_GT_AMP] = ACTIONS(3748), + [anon_sym_LT_LT] = ACTIONS(3748), + [anon_sym_LT_LT_DASH] = ACTIONS(3748), + [anon_sym_LT_LT_LT] = ACTIONS(3748), + [sym__special_characters] = ACTIONS(3748), + [anon_sym_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3748), + [sym_raw_string] = ACTIONS(3748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3748), + [anon_sym_BQUOTE] = ACTIONS(3748), + [anon_sym_LT_LPAREN] = ACTIONS(3748), + [anon_sym_GT_LPAREN] = ACTIONS(3748), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3748), + [anon_sym_SEMI] = ACTIONS(3748), + [anon_sym_LF] = ACTIONS(3746), + [anon_sym_AMP] = ACTIONS(3748), + }, + [1216] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(3750), + [sym_comment] = ACTIONS(54), + }, + [1217] = { + [sym_concatenation] = STATE(1594), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1594), + [anon_sym_RBRACE] = ACTIONS(3752), + [anon_sym_EQ] = ACTIONS(3754), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3758), + [anon_sym_COLON] = ACTIONS(3754), + [anon_sym_COLON_QMARK] = ACTIONS(3754), + [anon_sym_COLON_DASH] = ACTIONS(3754), + [anon_sym_PERCENT] = ACTIONS(3754), + [anon_sym_DASH] = ACTIONS(3754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1218] = { + [sym_subscript] = STATE(1598), + [sym_variable_name] = ACTIONS(3760), + [anon_sym_DOLLAR] = ACTIONS(3762), + [anon_sym_DASH] = ACTIONS(3762), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3764), + [anon_sym_STAR] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(3762), + [anon_sym_QMARK] = ACTIONS(3762), + [anon_sym_0] = ACTIONS(3766), + [anon_sym__] = ACTIONS(3766), + }, + [1219] = { + [sym_concatenation] = STATE(1601), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1601), + [anon_sym_RBRACE] = ACTIONS(3768), + [anon_sym_EQ] = ACTIONS(3770), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3774), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1220] = { + [sym_concatenation] = STATE(1604), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1604), + [anon_sym_RBRACE] = ACTIONS(3776), + [anon_sym_EQ] = ACTIONS(3778), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3782), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_COLON_QMARK] = ACTIONS(3778), + [anon_sym_COLON_DASH] = ACTIONS(3778), + [anon_sym_PERCENT] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1221] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(3784), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [1222] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(3784), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [1223] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(3784), + [sym_comment] = ACTIONS(54), + }, + [1224] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(3784), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [1225] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(3786), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [1226] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(3786), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [1227] = { + [sym__concat] = ACTIONS(1634), + [anon_sym_RBRACE] = ACTIONS(1634), + [anon_sym_EQ] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(1634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1634), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_COLON_QMARK] = ACTIONS(1636), + [anon_sym_COLON_DASH] = ACTIONS(1636), + [anon_sym_PERCENT] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LT_LPAREN] = ACTIONS(1634), + [anon_sym_GT_LPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1636), + }, + [1228] = { + [aux_sym_concatenation_repeat1] = STATE(1228), + [sym__concat] = ACTIONS(3788), + [anon_sym_RBRACE] = ACTIONS(1634), + [anon_sym_EQ] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(1634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1634), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_COLON_QMARK] = ACTIONS(1636), + [anon_sym_COLON_DASH] = ACTIONS(1636), + [anon_sym_PERCENT] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LT_LPAREN] = ACTIONS(1634), + [anon_sym_GT_LPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1636), + }, + [1229] = { + [sym__concat] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_EQ] = ACTIONS(1685), + [sym__special_characters] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1683), + [anon_sym_POUND] = ACTIONS(1683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1683), + [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(1683), + [anon_sym_BQUOTE] = ACTIONS(1683), + [anon_sym_LT_LPAREN] = ACTIONS(1683), + [anon_sym_GT_LPAREN] = ACTIONS(1683), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1685), + }, + [1230] = { + [sym_concatenation] = STATE(1610), + [sym_string] = STATE(1609), + [sym_simple_expansion] = STATE(1609), + [sym_string_expansion] = STATE(1609), + [sym_expansion] = STATE(1609), + [sym_command_substitution] = STATE(1609), + [sym_process_substitution] = STATE(1609), + [anon_sym_RBRACE] = ACTIONS(3791), + [sym__special_characters] = ACTIONS(3793), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(3795), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3795), + }, + [1231] = { + [sym__concat] = ACTIONS(1724), + [anon_sym_RBRACE] = ACTIONS(1724), + [anon_sym_EQ] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1726), + [sym_raw_string] = ACTIONS(1724), + [anon_sym_POUND] = ACTIONS(1724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_COLON] = ACTIONS(1726), + [anon_sym_COLON_QMARK] = ACTIONS(1726), + [anon_sym_COLON_DASH] = ACTIONS(1726), + [anon_sym_PERCENT] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), + [anon_sym_BQUOTE] = ACTIONS(1724), + [anon_sym_LT_LPAREN] = ACTIONS(1724), + [anon_sym_GT_LPAREN] = ACTIONS(1724), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1726), + }, + [1232] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3797), + }, + [1233] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3799), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1234] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(3801), + [sym_comment] = ACTIONS(54), + }, + [1235] = { + [sym_concatenation] = STATE(1616), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1616), + [anon_sym_RBRACE] = ACTIONS(3803), + [anon_sym_EQ] = ACTIONS(3805), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3807), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3809), + [anon_sym_COLON] = ACTIONS(3805), + [anon_sym_COLON_QMARK] = ACTIONS(3805), + [anon_sym_COLON_DASH] = ACTIONS(3805), + [anon_sym_PERCENT] = ACTIONS(3805), + [anon_sym_DASH] = ACTIONS(3805), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1236] = { + [sym_concatenation] = STATE(1619), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1619), + [anon_sym_RBRACE] = ACTIONS(3811), + [anon_sym_EQ] = ACTIONS(3813), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3817), + [anon_sym_COLON] = ACTIONS(3813), + [anon_sym_COLON_QMARK] = ACTIONS(3813), + [anon_sym_COLON_DASH] = ACTIONS(3813), + [anon_sym_PERCENT] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1237] = { + [sym_concatenation] = STATE(1621), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1621), + [anon_sym_RBRACE] = ACTIONS(3791), + [anon_sym_EQ] = ACTIONS(3819), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3823), + [anon_sym_COLON] = ACTIONS(3819), + [anon_sym_COLON_QMARK] = ACTIONS(3819), + [anon_sym_COLON_DASH] = ACTIONS(3819), + [anon_sym_PERCENT] = ACTIONS(3819), + [anon_sym_DASH] = ACTIONS(3819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1238] = { + [sym__concat] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1792), + [sym__special_characters] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1792), + [sym_raw_string] = ACTIONS(1790), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), + [anon_sym_COLON] = ACTIONS(1792), + [anon_sym_COLON_QMARK] = ACTIONS(1792), + [anon_sym_COLON_DASH] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_LT_LPAREN] = ACTIONS(1790), + [anon_sym_GT_LPAREN] = ACTIONS(1790), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1792), + }, + [1239] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3825), + }, + [1240] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3827), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1241] = { + [sym__concat] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_EQ] = ACTIONS(1800), + [sym__special_characters] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1798), + [anon_sym_DOLLAR] = ACTIONS(1800), + [sym_raw_string] = ACTIONS(1798), + [anon_sym_POUND] = ACTIONS(1798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1798), + [anon_sym_COLON] = ACTIONS(1800), + [anon_sym_COLON_QMARK] = ACTIONS(1800), + [anon_sym_COLON_DASH] = ACTIONS(1800), + [anon_sym_PERCENT] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1798), + [anon_sym_LT_LPAREN] = ACTIONS(1798), + [anon_sym_GT_LPAREN] = ACTIONS(1798), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1800), + }, + [1242] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3829), + }, + [1243] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3791), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1244] = { + [sym_file_descriptor] = ACTIONS(3831), + [sym__concat] = ACTIONS(3831), + [anon_sym_PIPE] = ACTIONS(3833), + [anon_sym_RPAREN] = ACTIONS(3833), + [anon_sym_SEMI_SEMI] = ACTIONS(3833), + [anon_sym_PIPE_AMP] = ACTIONS(3833), + [anon_sym_AMP_AMP] = ACTIONS(3833), + [anon_sym_PIPE_PIPE] = ACTIONS(3833), + [anon_sym_EQ_TILDE] = ACTIONS(3833), + [anon_sym_EQ_EQ] = ACTIONS(3833), + [anon_sym_LT] = ACTIONS(3833), + [anon_sym_GT] = ACTIONS(3833), + [anon_sym_GT_GT] = ACTIONS(3833), + [anon_sym_AMP_GT] = ACTIONS(3833), + [anon_sym_AMP_GT_GT] = ACTIONS(3833), + [anon_sym_LT_AMP] = ACTIONS(3833), + [anon_sym_GT_AMP] = ACTIONS(3833), + [anon_sym_LT_LT] = ACTIONS(3833), + [anon_sym_LT_LT_DASH] = ACTIONS(3833), + [anon_sym_LT_LT_LT] = ACTIONS(3833), + [sym__special_characters] = ACTIONS(3833), + [anon_sym_DQUOTE] = ACTIONS(3833), + [anon_sym_DOLLAR] = ACTIONS(3833), + [sym_raw_string] = ACTIONS(3833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3833), + [anon_sym_BQUOTE] = ACTIONS(3833), + [anon_sym_LT_LPAREN] = ACTIONS(3833), + [anon_sym_GT_LPAREN] = ACTIONS(3833), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3833), + [anon_sym_SEMI] = ACTIONS(3833), + [anon_sym_LF] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3833), + }, + [1245] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3835), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1246] = { + [sym__concat] = ACTIONS(1936), + [anon_sym_RBRACE] = ACTIONS(1936), + [anon_sym_EQ] = ACTIONS(1938), + [sym__special_characters] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR] = ACTIONS(1938), + [sym_raw_string] = ACTIONS(1936), + [anon_sym_POUND] = ACTIONS(1936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1936), + [anon_sym_COLON] = ACTIONS(1938), + [anon_sym_COLON_QMARK] = ACTIONS(1938), + [anon_sym_COLON_DASH] = ACTIONS(1938), + [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1936), + [anon_sym_BQUOTE] = ACTIONS(1936), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1938), + }, + [1247] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_EQ] = ACTIONS(2002), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_POUND] = ACTIONS(2000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [anon_sym_COLON] = ACTIONS(2002), + [anon_sym_COLON_QMARK] = ACTIONS(2002), + [anon_sym_COLON_DASH] = ACTIONS(2002), + [anon_sym_PERCENT] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [anon_sym_LT_LPAREN] = ACTIONS(2000), + [anon_sym_GT_LPAREN] = ACTIONS(2000), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2002), + }, + [1248] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(3837), + [sym_comment] = ACTIONS(54), + }, + [1249] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(3839), + [sym_comment] = ACTIONS(54), + }, + [1250] = { + [anon_sym_RBRACE] = ACTIONS(3839), + [sym_comment] = ACTIONS(54), + }, + [1251] = { + [sym_concatenation] = STATE(1629), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1629), + [anon_sym_RBRACE] = ACTIONS(3841), + [anon_sym_EQ] = ACTIONS(3843), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1252] = { + [sym_file_descriptor] = ACTIONS(3847), + [sym__concat] = ACTIONS(3847), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_RPAREN] = ACTIONS(3849), + [anon_sym_SEMI_SEMI] = ACTIONS(3849), + [anon_sym_PIPE_AMP] = ACTIONS(3849), + [anon_sym_AMP_AMP] = ACTIONS(3849), + [anon_sym_PIPE_PIPE] = ACTIONS(3849), + [anon_sym_EQ_TILDE] = ACTIONS(3849), + [anon_sym_EQ_EQ] = ACTIONS(3849), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_GT] = ACTIONS(3849), + [anon_sym_GT_GT] = ACTIONS(3849), + [anon_sym_AMP_GT] = ACTIONS(3849), + [anon_sym_AMP_GT_GT] = ACTIONS(3849), + [anon_sym_LT_AMP] = ACTIONS(3849), + [anon_sym_GT_AMP] = ACTIONS(3849), + [anon_sym_LT_LT] = ACTIONS(3849), + [anon_sym_LT_LT_DASH] = ACTIONS(3849), + [anon_sym_LT_LT_LT] = ACTIONS(3849), + [sym__special_characters] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3849), + [sym_raw_string] = ACTIONS(3849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3849), + [anon_sym_BQUOTE] = ACTIONS(3849), + [anon_sym_LT_LPAREN] = ACTIONS(3849), + [anon_sym_GT_LPAREN] = ACTIONS(3849), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3849), + [anon_sym_SEMI] = ACTIONS(3849), + [anon_sym_LF] = ACTIONS(3847), + [anon_sym_AMP] = ACTIONS(3849), + }, + [1253] = { + [sym_concatenation] = STATE(1631), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1631), + [anon_sym_RBRACE] = ACTIONS(3851), + [anon_sym_EQ] = ACTIONS(3853), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(3853), + [anon_sym_COLON_QMARK] = ACTIONS(3853), + [anon_sym_COLON_DASH] = ACTIONS(3853), + [anon_sym_PERCENT] = ACTIONS(3853), + [anon_sym_DASH] = ACTIONS(3853), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1254] = { + [sym_file_descriptor] = ACTIONS(3857), + [sym__concat] = ACTIONS(3857), + [anon_sym_PIPE] = ACTIONS(3859), + [anon_sym_RPAREN] = ACTIONS(3859), + [anon_sym_SEMI_SEMI] = ACTIONS(3859), + [anon_sym_PIPE_AMP] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_EQ_TILDE] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_GT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3859), + [anon_sym_AMP_GT] = ACTIONS(3859), + [anon_sym_AMP_GT_GT] = ACTIONS(3859), + [anon_sym_LT_AMP] = ACTIONS(3859), + [anon_sym_GT_AMP] = ACTIONS(3859), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_LT_LT_DASH] = ACTIONS(3859), + [anon_sym_LT_LT_LT] = ACTIONS(3859), + [sym__special_characters] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_DOLLAR] = ACTIONS(3859), + [sym_raw_string] = ACTIONS(3859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3859), + [anon_sym_BQUOTE] = ACTIONS(3859), + [anon_sym_LT_LPAREN] = ACTIONS(3859), + [anon_sym_GT_LPAREN] = ACTIONS(3859), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3859), + [anon_sym_SEMI] = ACTIONS(3859), + [anon_sym_LF] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(3859), + }, + [1255] = { + [sym_concatenation] = STATE(1633), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1633), + [anon_sym_RBRACE] = ACTIONS(3861), + [anon_sym_EQ] = ACTIONS(3863), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3865), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_COLON_QMARK] = ACTIONS(3863), + [anon_sym_COLON_DASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1256] = { + [sym_file_descriptor] = ACTIONS(3867), + [sym__concat] = ACTIONS(3867), + [anon_sym_PIPE] = ACTIONS(3869), + [anon_sym_RPAREN] = ACTIONS(3869), + [anon_sym_SEMI_SEMI] = ACTIONS(3869), + [anon_sym_PIPE_AMP] = ACTIONS(3869), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_EQ_TILDE] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_LT] = ACTIONS(3869), + [anon_sym_GT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3869), + [anon_sym_AMP_GT] = ACTIONS(3869), + [anon_sym_AMP_GT_GT] = ACTIONS(3869), + [anon_sym_LT_AMP] = ACTIONS(3869), + [anon_sym_GT_AMP] = ACTIONS(3869), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_LT_LT_DASH] = ACTIONS(3869), + [anon_sym_LT_LT_LT] = ACTIONS(3869), + [sym__special_characters] = ACTIONS(3869), + [anon_sym_DQUOTE] = ACTIONS(3869), + [anon_sym_DOLLAR] = ACTIONS(3869), + [sym_raw_string] = ACTIONS(3869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3869), + [anon_sym_BQUOTE] = ACTIONS(3869), + [anon_sym_LT_LPAREN] = ACTIONS(3869), + [anon_sym_GT_LPAREN] = ACTIONS(3869), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3869), + [anon_sym_SEMI] = ACTIONS(3869), + [anon_sym_LF] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3869), + }, + [1257] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1258] = { + [sym_file_descriptor] = ACTIONS(3873), + [sym__concat] = ACTIONS(3873), + [anon_sym_PIPE] = ACTIONS(3875), + [anon_sym_RPAREN] = ACTIONS(3875), + [anon_sym_SEMI_SEMI] = ACTIONS(3875), + [anon_sym_PIPE_AMP] = ACTIONS(3875), + [anon_sym_AMP_AMP] = ACTIONS(3875), + [anon_sym_PIPE_PIPE] = ACTIONS(3875), + [anon_sym_EQ_TILDE] = ACTIONS(3875), + [anon_sym_EQ_EQ] = ACTIONS(3875), + [anon_sym_LT] = ACTIONS(3875), + [anon_sym_GT] = ACTIONS(3875), + [anon_sym_GT_GT] = ACTIONS(3875), + [anon_sym_AMP_GT] = ACTIONS(3875), + [anon_sym_AMP_GT_GT] = ACTIONS(3875), + [anon_sym_LT_AMP] = ACTIONS(3875), + [anon_sym_GT_AMP] = ACTIONS(3875), + [anon_sym_LT_LT] = ACTIONS(3875), + [anon_sym_LT_LT_DASH] = ACTIONS(3875), + [anon_sym_LT_LT_LT] = ACTIONS(3875), + [sym__special_characters] = ACTIONS(3875), + [anon_sym_DQUOTE] = ACTIONS(3875), + [anon_sym_DOLLAR] = ACTIONS(3875), + [sym_raw_string] = ACTIONS(3875), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3875), + [anon_sym_BQUOTE] = ACTIONS(3875), + [anon_sym_LT_LPAREN] = ACTIONS(3875), + [anon_sym_GT_LPAREN] = ACTIONS(3875), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3875), + [anon_sym_SEMI] = ACTIONS(3875), + [anon_sym_LF] = ACTIONS(3873), + [anon_sym_AMP] = ACTIONS(3875), + }, + [1259] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3877), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1260] = { + [sym_file_descriptor] = ACTIONS(2105), + [sym_variable_name] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2107), + [anon_sym_RPAREN] = ACTIONS(2105), + [anon_sym_PIPE_AMP] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2107), + [anon_sym_GT] = ACTIONS(2107), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_AMP_GT] = ACTIONS(2107), + [anon_sym_AMP_GT_GT] = ACTIONS(2105), + [anon_sym_LT_AMP] = ACTIONS(2105), + [anon_sym_GT_AMP] = ACTIONS(2105), + [sym__special_characters] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_DOLLAR] = ACTIONS(2107), + [sym_raw_string] = ACTIONS(2105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2105), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2105), + [anon_sym_BQUOTE] = ACTIONS(2105), + [anon_sym_LT_LPAREN] = ACTIONS(2105), + [anon_sym_GT_LPAREN] = ACTIONS(2105), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2105), + }, + [1261] = { + [sym_concatenation] = STATE(984), + [sym_string] = STATE(549), + [sym_simple_expansion] = STATE(549), + [sym_string_expansion] = STATE(549), + [sym_expansion] = STATE(549), + [sym_command_substitution] = STATE(549), + [sym_process_substitution] = STATE(549), + [aux_sym_for_statement_repeat1] = STATE(984), + [anon_sym_RPAREN] = ACTIONS(3879), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(1089), + [sym_raw_string] = ACTIONS(1091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1095), + [anon_sym_BQUOTE] = ACTIONS(1097), + [anon_sym_LT_LPAREN] = ACTIONS(1099), + [anon_sym_GT_LPAREN] = ACTIONS(1099), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1091), + }, + [1262] = { + [aux_sym_concatenation_repeat1] = STATE(1637), + [sym_file_descriptor] = ACTIONS(688), + [sym__concat] = ACTIONS(658), + [sym_variable_name] = ACTIONS(688), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(688), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(688), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(688), + [anon_sym_LT_AMP] = ACTIONS(688), + [anon_sym_GT_AMP] = ACTIONS(688), + [sym__special_characters] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(688), + [anon_sym_LT_LPAREN] = ACTIONS(688), + [anon_sym_GT_LPAREN] = ACTIONS(688), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(688), + }, + [1263] = { + [sym_concatenation] = STATE(1023), + [sym_string] = STATE(576), + [sym_simple_expansion] = STATE(576), + [sym_string_expansion] = STATE(576), + [sym_expansion] = STATE(576), + [sym_command_substitution] = STATE(576), + [sym_process_substitution] = STATE(576), + [aux_sym_for_statement_repeat1] = STATE(1023), + [anon_sym_SEMI_SEMI] = ACTIONS(3881), + [sym__special_characters] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(1131), + [sym_raw_string] = ACTIONS(2211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2215), + [anon_sym_BQUOTE] = ACTIONS(2217), + [anon_sym_LT_LPAREN] = ACTIONS(2219), + [anon_sym_GT_LPAREN] = ACTIONS(2219), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2211), + [anon_sym_SEMI] = ACTIONS(3881), + [anon_sym_LF] = ACTIONS(3883), + [anon_sym_AMP] = ACTIONS(3881), + }, + [1264] = { + [sym__terminated_statement] = STATE(1640), + [sym_for_statement] = STATE(585), + [sym_while_statement] = STATE(585), + [sym_if_statement] = STATE(585), + [sym_case_statement] = STATE(585), + [sym_function_definition] = STATE(585), + [sym_subshell] = STATE(585), + [sym_pipeline] = STATE(585), + [sym_list] = STATE(585), + [sym_command] = STATE(585), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(585), + [sym_variable_assignment] = STATE(586), + [sym_declaration_command] = STATE(585), + [sym_unset_command] = STATE(585), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1640), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_done] = ACTIONS(3885), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [1265] = { + [anon_sym_PIPE] = ACTIONS(2225), + [anon_sym_RPAREN] = ACTIONS(2227), + [anon_sym_PIPE_AMP] = ACTIONS(2227), + [anon_sym_AMP_AMP] = ACTIONS(2227), + [anon_sym_PIPE_PIPE] = ACTIONS(2227), + [anon_sym_BQUOTE] = ACTIONS(2227), + [sym_comment] = ACTIONS(54), + }, + [1266] = { + [sym_file_descriptor] = ACTIONS(2229), + [anon_sym_PIPE] = ACTIONS(2231), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_PIPE_AMP] = ACTIONS(2229), + [anon_sym_AMP_AMP] = ACTIONS(2229), + [anon_sym_PIPE_PIPE] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2231), + [anon_sym_GT] = ACTIONS(2231), + [anon_sym_GT_GT] = ACTIONS(2229), + [anon_sym_AMP_GT] = ACTIONS(2231), + [anon_sym_AMP_GT_GT] = ACTIONS(2229), + [anon_sym_LT_AMP] = ACTIONS(2229), + [anon_sym_GT_AMP] = ACTIONS(2229), + [anon_sym_LT_LT] = ACTIONS(2231), + [anon_sym_LT_LT_DASH] = ACTIONS(2229), + [anon_sym_LT_LT_LT] = ACTIONS(2229), + [anon_sym_BQUOTE] = ACTIONS(2229), + [sym_comment] = ACTIONS(54), + }, + [1267] = { + [sym__terminated_statement] = STATE(1028), + [sym_for_statement] = STATE(585), + [sym_while_statement] = STATE(585), + [sym_if_statement] = STATE(585), + [sym_case_statement] = STATE(585), + [sym_function_definition] = STATE(585), + [sym_subshell] = STATE(585), + [sym_pipeline] = STATE(585), + [sym_list] = STATE(585), + [sym_command] = STATE(585), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(585), + [sym_variable_assignment] = STATE(586), + [sym_declaration_command] = STATE(585), + [sym_unset_command] = STATE(585), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1028), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_done] = ACTIONS(3887), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [1268] = { + [sym_file_redirect] = STATE(916), + [sym_heredoc_redirect] = STATE(916), + [sym_herestring_redirect] = STATE(916), + [aux_sym_while_statement_repeat1] = STATE(916), + [sym_file_descriptor] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(2239), + [anon_sym_RPAREN] = ACTIONS(2241), + [anon_sym_PIPE_AMP] = ACTIONS(2241), + [anon_sym_AMP_AMP] = ACTIONS(2241), + [anon_sym_PIPE_PIPE] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [sym_comment] = ACTIONS(54), + }, + [1269] = { + [anon_sym_PIPE] = ACTIONS(2243), + [anon_sym_RPAREN] = ACTIONS(2245), + [anon_sym_PIPE_AMP] = ACTIONS(2245), + [anon_sym_AMP_AMP] = ACTIONS(2245), + [anon_sym_PIPE_PIPE] = ACTIONS(2245), + [anon_sym_BQUOTE] = ACTIONS(2245), + [sym_comment] = ACTIONS(54), + }, + [1270] = { + [anon_sym_fi] = ACTIONS(3889), + [sym_comment] = ACTIONS(54), + }, + [1271] = { + [sym__terminated_statement] = STATE(1036), + [sym_for_statement] = STATE(592), + [sym_while_statement] = STATE(592), + [sym_if_statement] = STATE(592), + [sym_elif_clause] = STATE(1644), + [sym_else_clause] = STATE(1643), + [sym_case_statement] = STATE(592), + [sym_function_definition] = STATE(592), + [sym_subshell] = STATE(592), + [sym_pipeline] = STATE(592), + [sym_list] = STATE(592), + [sym_command] = STATE(592), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(592), + [sym_variable_assignment] = STATE(594), + [sym_declaration_command] = STATE(592), + [sym_unset_command] = STATE(592), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1036), + [aux_sym_if_statement_repeat1] = STATE(1644), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_fi] = ACTIONS(3891), + [anon_sym_elif] = ACTIONS(1153), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [1272] = { + [sym_elif_clause] = STATE(1038), + [sym_else_clause] = STATE(1643), + [aux_sym_if_statement_repeat1] = STATE(1038), + [anon_sym_fi] = ACTIONS(3889), + [anon_sym_elif] = ACTIONS(2257), + [anon_sym_else] = ACTIONS(2259), + [sym_comment] = ACTIONS(54), + }, + [1273] = { + [sym_case_item] = STATE(1647), + [sym_last_case_item] = STATE(1646), + [sym_concatenation] = STATE(1043), + [sym_string] = STATE(1041), + [sym_simple_expansion] = STATE(1041), + [sym_string_expansion] = STATE(1041), + [sym_expansion] = STATE(1041), + [sym_command_substitution] = STATE(1041), + [sym_process_substitution] = STATE(1041), + [aux_sym_case_statement_repeat1] = STATE(1647), + [anon_sym_esac] = ACTIONS(3893), + [sym__special_characters] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(2265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2267), + }, + [1274] = { + [anon_sym_SEMI_SEMI] = ACTIONS(3895), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3895), + [anon_sym_LF] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3895), + }, + [1275] = { + [sym_case_item] = STATE(1651), + [sym_last_case_item] = STATE(1650), + [sym_concatenation] = STATE(1043), + [sym_string] = STATE(1041), + [sym_simple_expansion] = STATE(1041), + [sym_string_expansion] = STATE(1041), + [sym_expansion] = STATE(1041), + [sym_command_substitution] = STATE(1041), + [sym_process_substitution] = STATE(1041), + [aux_sym_case_statement_repeat1] = STATE(1651), + [anon_sym_esac] = ACTIONS(3899), + [sym__special_characters] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(2265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2267), + }, + [1276] = { + [anon_sym_SEMI_SEMI] = ACTIONS(3901), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3901), + [anon_sym_LF] = ACTIONS(3903), + [anon_sym_AMP] = ACTIONS(3901), + }, + [1277] = { + [sym_compound_statement] = STATE(1653), + [anon_sym_LBRACE] = ACTIONS(1836), + [sym_comment] = ACTIONS(54), + }, + [1278] = { + [sym_file_descriptor] = ACTIONS(2322), + [anon_sym_PIPE] = ACTIONS(2324), + [anon_sym_RPAREN] = ACTIONS(2322), + [anon_sym_PIPE_AMP] = ACTIONS(2322), + [anon_sym_AMP_AMP] = ACTIONS(2322), + [anon_sym_PIPE_PIPE] = ACTIONS(2322), + [anon_sym_LT] = ACTIONS(2324), + [anon_sym_GT] = ACTIONS(2324), + [anon_sym_GT_GT] = ACTIONS(2322), + [anon_sym_AMP_GT] = ACTIONS(2324), + [anon_sym_AMP_GT_GT] = ACTIONS(2322), + [anon_sym_LT_AMP] = ACTIONS(2322), + [anon_sym_GT_AMP] = ACTIONS(2322), + [anon_sym_BQUOTE] = ACTIONS(2322), + [sym_comment] = ACTIONS(54), + }, + [1279] = { + [sym__terminated_statement] = STATE(1071), + [sym_for_statement] = STATE(622), + [sym_while_statement] = STATE(622), + [sym_if_statement] = STATE(622), + [sym_case_statement] = STATE(622), + [sym_function_definition] = STATE(622), + [sym_subshell] = STATE(622), + [sym_pipeline] = STATE(622), + [sym_list] = STATE(622), + [sym_command] = STATE(622), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(622), + [sym_variable_assignment] = STATE(623), + [sym_declaration_command] = STATE(622), + [sym_unset_command] = STATE(622), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1071), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(3905), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [1280] = { + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_GT_GT] = ACTIONS(3909), + [anon_sym_AMP_GT] = ACTIONS(3907), + [anon_sym_AMP_GT_GT] = ACTIONS(3909), + [anon_sym_LT_AMP] = ACTIONS(3909), + [anon_sym_GT_AMP] = ACTIONS(3909), + [sym_comment] = ACTIONS(54), + }, + [1281] = { + [sym_concatenation] = STATE(1658), + [sym_string] = STATE(1657), + [sym_simple_expansion] = STATE(1657), + [sym_string_expansion] = STATE(1657), + [sym_expansion] = STATE(1657), + [sym_command_substitution] = STATE(1657), + [sym_process_substitution] = STATE(1657), + [sym__special_characters] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(824), + [sym_raw_string] = ACTIONS(3913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3913), + }, + [1282] = { + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2342), + [anon_sym_PIPE_AMP] = ACTIONS(2342), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_BQUOTE] = ACTIONS(2342), + [sym_comment] = ACTIONS(54), + }, + [1283] = { + [anon_sym_PIPE] = ACTIONS(2369), + [anon_sym_RPAREN] = ACTIONS(2371), + [anon_sym_PIPE_AMP] = ACTIONS(2371), + [anon_sym_AMP_AMP] = ACTIONS(2371), + [anon_sym_PIPE_PIPE] = ACTIONS(2371), + [anon_sym_BQUOTE] = ACTIONS(2371), + [sym_comment] = ACTIONS(54), + }, + [1284] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(3915), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(944), + [sym_raw_string] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(944), + }, + [1285] = { + [sym_file_redirect] = STATE(916), + [sym_heredoc_redirect] = STATE(916), + [sym_herestring_redirect] = STATE(916), + [aux_sym_while_statement_repeat1] = STATE(916), + [sym_file_descriptor] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_PIPE_AMP] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_PIPE_PIPE] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [sym_comment] = ACTIONS(54), + }, + [1286] = { + [sym_variable_name] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_RPAREN] = ACTIONS(1079), + [anon_sym_PIPE_AMP] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(1079), + [anon_sym_PIPE_PIPE] = ACTIONS(1079), + [sym__special_characters] = ACTIONS(1079), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_DOLLAR] = ACTIONS(1081), + [sym_raw_string] = ACTIONS(1079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1079), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1079), + [anon_sym_BQUOTE] = ACTIONS(1079), + [anon_sym_LT_LPAREN] = ACTIONS(1079), + [anon_sym_GT_LPAREN] = ACTIONS(1079), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1081), + [sym_word] = ACTIONS(1081), + }, + [1287] = { + [sym_concatenation] = STATE(1661), + [sym_string] = STATE(549), + [sym_simple_expansion] = STATE(549), + [sym_string_expansion] = STATE(549), + [sym_expansion] = STATE(549), + [sym_command_substitution] = STATE(549), + [sym_process_substitution] = STATE(549), + [aux_sym_for_statement_repeat1] = STATE(1661), + [anon_sym_RPAREN] = ACTIONS(3917), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(1089), + [sym_raw_string] = ACTIONS(1091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1095), + [anon_sym_BQUOTE] = ACTIONS(1097), + [anon_sym_LT_LPAREN] = ACTIONS(1099), + [anon_sym_GT_LPAREN] = ACTIONS(1099), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1091), + }, + [1288] = { + [aux_sym_concatenation_repeat1] = STATE(842), + [sym__concat] = ACTIONS(1848), + [sym_variable_name] = ACTIONS(1101), + [anon_sym_PIPE] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(1101), + [anon_sym_PIPE_AMP] = ACTIONS(1101), + [anon_sym_AMP_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1101), + [sym__special_characters] = ACTIONS(1101), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_DOLLAR] = ACTIONS(1105), + [sym_raw_string] = ACTIONS(1101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1101), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1101), + [anon_sym_LT_LPAREN] = ACTIONS(1101), + [anon_sym_GT_LPAREN] = ACTIONS(1101), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1105), + [sym_word] = ACTIONS(1105), + }, + [1289] = { + [aux_sym_concatenation_repeat1] = STATE(842), + [sym__concat] = ACTIONS(1848), + [sym_variable_name] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_RPAREN] = ACTIONS(1079), + [anon_sym_PIPE_AMP] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(1079), + [anon_sym_PIPE_PIPE] = ACTIONS(1079), + [sym__special_characters] = ACTIONS(1079), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_DOLLAR] = ACTIONS(1081), + [sym_raw_string] = ACTIONS(1079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1079), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1079), + [anon_sym_BQUOTE] = ACTIONS(1079), + [anon_sym_LT_LPAREN] = ACTIONS(1079), + [anon_sym_GT_LPAREN] = ACTIONS(1079), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1081), + [sym_word] = ACTIONS(1081), + }, + [1290] = { + [sym__concat] = ACTIONS(1634), + [sym_variable_name] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_PIPE_AMP] = ACTIONS(1634), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE_PIPE] = ACTIONS(1634), + [sym__special_characters] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LT_LPAREN] = ACTIONS(1634), + [anon_sym_GT_LPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1636), + [sym_word] = ACTIONS(1636), + }, + [1291] = { + [aux_sym_concatenation_repeat1] = STATE(1291), + [sym__concat] = ACTIONS(3919), + [sym_variable_name] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_PIPE_AMP] = ACTIONS(1634), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE_PIPE] = ACTIONS(1634), + [sym__special_characters] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LT_LPAREN] = ACTIONS(1634), + [anon_sym_GT_LPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1636), + [sym_word] = ACTIONS(1636), + }, + [1292] = { + [sym__concat] = ACTIONS(1683), + [sym_variable_name] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_PIPE_AMP] = ACTIONS(1683), + [anon_sym_AMP_AMP] = ACTIONS(1683), + [anon_sym_PIPE_PIPE] = ACTIONS(1683), + [sym__special_characters] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1683), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1683), + [anon_sym_BQUOTE] = ACTIONS(1683), + [anon_sym_LT_LPAREN] = ACTIONS(1683), + [anon_sym_GT_LPAREN] = ACTIONS(1683), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1685), + [sym_word] = ACTIONS(1685), + }, + [1293] = { + [sym_concatenation] = STATE(1665), + [sym_string] = STATE(1664), + [sym_simple_expansion] = STATE(1664), + [sym_string_expansion] = STATE(1664), + [sym_expansion] = STATE(1664), + [sym_command_substitution] = STATE(1664), + [sym_process_substitution] = STATE(1664), + [anon_sym_RBRACE] = ACTIONS(3922), + [sym__special_characters] = ACTIONS(3924), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(3926), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3926), + }, + [1294] = { + [sym__concat] = ACTIONS(1724), + [sym_variable_name] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1724), + [anon_sym_PIPE_AMP] = ACTIONS(1724), + [anon_sym_AMP_AMP] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1724), + [sym__special_characters] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1726), + [sym_raw_string] = ACTIONS(1724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), + [anon_sym_BQUOTE] = ACTIONS(1724), + [anon_sym_LT_LPAREN] = ACTIONS(1724), + [anon_sym_GT_LPAREN] = ACTIONS(1724), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1726), + [sym_word] = ACTIONS(1726), + }, + [1295] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3928), + }, + [1296] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3930), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1297] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(3932), + [sym_comment] = ACTIONS(54), + }, + [1298] = { + [sym_concatenation] = STATE(1671), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1671), + [anon_sym_RBRACE] = ACTIONS(3934), + [anon_sym_EQ] = ACTIONS(3936), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3938), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3940), + [anon_sym_COLON] = ACTIONS(3936), + [anon_sym_COLON_QMARK] = ACTIONS(3936), + [anon_sym_COLON_DASH] = ACTIONS(3936), + [anon_sym_PERCENT] = ACTIONS(3936), + [anon_sym_DASH] = ACTIONS(3936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1299] = { + [sym_concatenation] = STATE(1674), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1674), + [anon_sym_RBRACE] = ACTIONS(3942), + [anon_sym_EQ] = ACTIONS(3944), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3946), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3948), + [anon_sym_COLON] = ACTIONS(3944), + [anon_sym_COLON_QMARK] = ACTIONS(3944), + [anon_sym_COLON_DASH] = ACTIONS(3944), + [anon_sym_PERCENT] = ACTIONS(3944), + [anon_sym_DASH] = ACTIONS(3944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1300] = { + [sym_concatenation] = STATE(1676), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1676), + [anon_sym_RBRACE] = ACTIONS(3922), + [anon_sym_EQ] = ACTIONS(3950), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3952), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3954), + [anon_sym_COLON] = ACTIONS(3950), + [anon_sym_COLON_QMARK] = ACTIONS(3950), + [anon_sym_COLON_DASH] = ACTIONS(3950), + [anon_sym_PERCENT] = ACTIONS(3950), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1301] = { + [sym__concat] = ACTIONS(1790), + [sym_variable_name] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_PIPE_AMP] = ACTIONS(1790), + [anon_sym_AMP_AMP] = ACTIONS(1790), + [anon_sym_PIPE_PIPE] = ACTIONS(1790), + [sym__special_characters] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1792), + [sym_raw_string] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_LT_LPAREN] = ACTIONS(1790), + [anon_sym_GT_LPAREN] = ACTIONS(1790), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1792), + [sym_word] = ACTIONS(1792), + }, + [1302] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3956), + }, + [1303] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3958), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1304] = { + [sym__concat] = ACTIONS(1798), + [sym_variable_name] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_PIPE_AMP] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [sym__special_characters] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1798), + [anon_sym_DOLLAR] = ACTIONS(1800), + [sym_raw_string] = ACTIONS(1798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1798), + [anon_sym_LT_LPAREN] = ACTIONS(1798), + [anon_sym_GT_LPAREN] = ACTIONS(1798), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1800), + [sym_word] = ACTIONS(1800), + }, + [1305] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3960), + }, + [1306] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3922), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1307] = { + [sym__concat] = ACTIONS(1936), + [sym_variable_name] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_RPAREN] = ACTIONS(1936), + [anon_sym_PIPE_AMP] = ACTIONS(1936), + [anon_sym_AMP_AMP] = ACTIONS(1936), + [anon_sym_PIPE_PIPE] = ACTIONS(1936), + [sym__special_characters] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR] = ACTIONS(1938), + [sym_raw_string] = ACTIONS(1936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1936), + [anon_sym_BQUOTE] = ACTIONS(1936), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1938), + [sym_word] = ACTIONS(1938), + }, + [1308] = { + [sym__concat] = ACTIONS(2000), + [sym_variable_name] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_RPAREN] = ACTIONS(2000), + [anon_sym_PIPE_AMP] = ACTIONS(2000), + [anon_sym_AMP_AMP] = ACTIONS(2000), + [anon_sym_PIPE_PIPE] = ACTIONS(2000), + [sym__special_characters] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [anon_sym_LT_LPAREN] = ACTIONS(2000), + [anon_sym_GT_LPAREN] = ACTIONS(2000), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2002), + [sym_word] = ACTIONS(2002), + }, + [1309] = { + [sym__concat] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_PIPE_AMP] = ACTIONS(1634), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE_PIPE] = ACTIONS(1634), + [sym__special_characters] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LT_LPAREN] = ACTIONS(1634), + [anon_sym_GT_LPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1636), + [sym_word] = ACTIONS(1636), + }, + [1310] = { + [aux_sym_concatenation_repeat1] = STATE(1310), + [sym__concat] = ACTIONS(3962), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_PIPE_AMP] = ACTIONS(1634), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE_PIPE] = ACTIONS(1634), + [sym__special_characters] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LT_LPAREN] = ACTIONS(1634), + [anon_sym_GT_LPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1636), + [sym_word] = ACTIONS(1636), + }, + [1311] = { + [sym__concat] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_PIPE_AMP] = ACTIONS(1683), + [anon_sym_AMP_AMP] = ACTIONS(1683), + [anon_sym_PIPE_PIPE] = ACTIONS(1683), + [sym__special_characters] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1683), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1683), + [anon_sym_BQUOTE] = ACTIONS(1683), + [anon_sym_LT_LPAREN] = ACTIONS(1683), + [anon_sym_GT_LPAREN] = ACTIONS(1683), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1685), + [sym_word] = ACTIONS(1685), + }, + [1312] = { + [sym_concatenation] = STATE(1683), + [sym_string] = STATE(1682), + [sym_simple_expansion] = STATE(1682), + [sym_string_expansion] = STATE(1682), + [sym_expansion] = STATE(1682), + [sym_command_substitution] = STATE(1682), + [sym_process_substitution] = STATE(1682), + [anon_sym_RBRACE] = ACTIONS(3965), + [sym__special_characters] = ACTIONS(3967), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(3969), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3969), + }, + [1313] = { + [sym__concat] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1724), + [anon_sym_PIPE_AMP] = ACTIONS(1724), + [anon_sym_AMP_AMP] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1724), + [sym__special_characters] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1726), + [sym_raw_string] = ACTIONS(1724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), + [anon_sym_BQUOTE] = ACTIONS(1724), + [anon_sym_LT_LPAREN] = ACTIONS(1724), + [anon_sym_GT_LPAREN] = ACTIONS(1724), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1726), + [sym_word] = ACTIONS(1726), + }, + [1314] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3971), + }, + [1315] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3973), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1316] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(3975), + [sym_comment] = ACTIONS(54), + }, + [1317] = { + [sym_concatenation] = STATE(1689), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1689), + [anon_sym_RBRACE] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3979), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3981), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3983), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1318] = { + [sym_concatenation] = STATE(1692), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1692), + [anon_sym_RBRACE] = ACTIONS(3985), + [anon_sym_EQ] = ACTIONS(3987), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3989), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3991), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1319] = { + [sym_concatenation] = STATE(1694), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1694), + [anon_sym_RBRACE] = ACTIONS(3965), + [anon_sym_EQ] = ACTIONS(3993), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3995), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(3997), + [anon_sym_COLON] = ACTIONS(3993), + [anon_sym_COLON_QMARK] = ACTIONS(3993), + [anon_sym_COLON_DASH] = ACTIONS(3993), + [anon_sym_PERCENT] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1320] = { + [sym__concat] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_PIPE_AMP] = ACTIONS(1790), + [anon_sym_AMP_AMP] = ACTIONS(1790), + [anon_sym_PIPE_PIPE] = ACTIONS(1790), + [sym__special_characters] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1792), + [sym_raw_string] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_LT_LPAREN] = ACTIONS(1790), + [anon_sym_GT_LPAREN] = ACTIONS(1790), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1792), + [sym_word] = ACTIONS(1792), + }, + [1321] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(3999), + }, + [1322] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4001), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1323] = { + [sym__concat] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_PIPE_AMP] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE_PIPE] = ACTIONS(1798), + [sym__special_characters] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1798), + [anon_sym_DOLLAR] = ACTIONS(1800), + [sym_raw_string] = ACTIONS(1798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1798), + [anon_sym_LT_LPAREN] = ACTIONS(1798), + [anon_sym_GT_LPAREN] = ACTIONS(1798), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1800), + [sym_word] = ACTIONS(1800), + }, + [1324] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4003), + }, + [1325] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(3965), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1326] = { + [sym__concat] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_RPAREN] = ACTIONS(1936), + [anon_sym_PIPE_AMP] = ACTIONS(1936), + [anon_sym_AMP_AMP] = ACTIONS(1936), + [anon_sym_PIPE_PIPE] = ACTIONS(1936), + [sym__special_characters] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR] = ACTIONS(1938), + [sym_raw_string] = ACTIONS(1936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1936), + [anon_sym_BQUOTE] = ACTIONS(1936), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1938), + [sym_word] = ACTIONS(1938), + }, + [1327] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_RPAREN] = ACTIONS(2000), + [anon_sym_PIPE_AMP] = ACTIONS(2000), + [anon_sym_AMP_AMP] = ACTIONS(2000), + [anon_sym_PIPE_PIPE] = ACTIONS(2000), + [sym__special_characters] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [anon_sym_LT_LPAREN] = ACTIONS(2000), + [anon_sym_GT_LPAREN] = ACTIONS(2000), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2002), + [sym_word] = ACTIONS(2002), + }, + [1328] = { + [sym_file_descriptor] = ACTIONS(2672), + [sym__concat] = ACTIONS(2672), + [anon_sym_PIPE] = ACTIONS(2674), + [anon_sym_RPAREN] = ACTIONS(2672), + [anon_sym_PIPE_AMP] = ACTIONS(2672), + [anon_sym_AMP_AMP] = ACTIONS(2672), + [anon_sym_PIPE_PIPE] = ACTIONS(2672), + [anon_sym_EQ_TILDE] = ACTIONS(2674), + [anon_sym_EQ_EQ] = ACTIONS(2674), + [anon_sym_LT] = ACTIONS(2674), + [anon_sym_GT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2672), + [anon_sym_AMP_GT] = ACTIONS(2674), + [anon_sym_AMP_GT_GT] = ACTIONS(2672), + [anon_sym_LT_AMP] = ACTIONS(2672), + [anon_sym_GT_AMP] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_LT_LT_DASH] = ACTIONS(2672), + [anon_sym_LT_LT_LT] = ACTIONS(2672), + [sym__special_characters] = ACTIONS(2672), + [anon_sym_DQUOTE] = ACTIONS(2672), + [anon_sym_DOLLAR] = ACTIONS(2674), + [sym_raw_string] = ACTIONS(2672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2672), + [anon_sym_BQUOTE] = ACTIONS(2672), + [anon_sym_LT_LPAREN] = ACTIONS(2672), + [anon_sym_GT_LPAREN] = ACTIONS(2672), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2674), + }, + [1329] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4005), + [sym_comment] = ACTIONS(54), + }, + [1330] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4007), + [sym_comment] = ACTIONS(54), + }, + [1331] = { + [anon_sym_RBRACE] = ACTIONS(4007), + [sym_comment] = ACTIONS(54), + }, + [1332] = { + [sym_concatenation] = STATE(1701), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1701), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_EQ] = ACTIONS(4011), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4013), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4011), + [anon_sym_COLON_QMARK] = ACTIONS(4011), + [anon_sym_COLON_DASH] = ACTIONS(4011), + [anon_sym_PERCENT] = ACTIONS(4011), + [anon_sym_DASH] = ACTIONS(4011), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1333] = { + [sym_file_descriptor] = ACTIONS(2750), + [sym__concat] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_PIPE_AMP] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [anon_sym_EQ_TILDE] = ACTIONS(2752), + [anon_sym_EQ_EQ] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2752), + [anon_sym_GT] = ACTIONS(2752), + [anon_sym_GT_GT] = ACTIONS(2750), + [anon_sym_AMP_GT] = ACTIONS(2752), + [anon_sym_AMP_GT_GT] = ACTIONS(2750), + [anon_sym_LT_AMP] = ACTIONS(2750), + [anon_sym_GT_AMP] = ACTIONS(2750), + [anon_sym_LT_LT] = ACTIONS(2752), + [anon_sym_LT_LT_DASH] = ACTIONS(2750), + [anon_sym_LT_LT_LT] = ACTIONS(2750), + [sym__special_characters] = ACTIONS(2750), + [anon_sym_DQUOTE] = ACTIONS(2750), + [anon_sym_DOLLAR] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2750), + [anon_sym_BQUOTE] = ACTIONS(2750), + [anon_sym_LT_LPAREN] = ACTIONS(2750), + [anon_sym_GT_LPAREN] = ACTIONS(2750), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2752), + }, + [1334] = { + [sym_concatenation] = STATE(1704), + [sym_string] = STATE(1703), + [sym_simple_expansion] = STATE(1703), + [sym_string_expansion] = STATE(1703), + [sym_expansion] = STATE(1703), + [sym_command_substitution] = STATE(1703), + [sym_process_substitution] = STATE(1703), + [anon_sym_RBRACE] = ACTIONS(4007), + [sym__special_characters] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(4017), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4017), + }, + [1335] = { + [sym_file_descriptor] = ACTIONS(2793), + [sym__concat] = ACTIONS(2793), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_RPAREN] = ACTIONS(2793), + [anon_sym_PIPE_AMP] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_PIPE_PIPE] = ACTIONS(2793), + [anon_sym_EQ_TILDE] = ACTIONS(2795), + [anon_sym_EQ_EQ] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2795), + [anon_sym_GT] = ACTIONS(2795), + [anon_sym_GT_GT] = ACTIONS(2793), + [anon_sym_AMP_GT] = ACTIONS(2795), + [anon_sym_AMP_GT_GT] = ACTIONS(2793), + [anon_sym_LT_AMP] = ACTIONS(2793), + [anon_sym_GT_AMP] = ACTIONS(2793), + [anon_sym_LT_LT] = ACTIONS(2795), + [anon_sym_LT_LT_DASH] = ACTIONS(2793), + [anon_sym_LT_LT_LT] = ACTIONS(2793), + [sym__special_characters] = ACTIONS(2793), + [anon_sym_DQUOTE] = ACTIONS(2793), + [anon_sym_DOLLAR] = ACTIONS(2795), + [sym_raw_string] = ACTIONS(2793), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2793), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2793), + [anon_sym_BQUOTE] = ACTIONS(2793), + [anon_sym_LT_LPAREN] = ACTIONS(2793), + [anon_sym_GT_LPAREN] = ACTIONS(2793), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2795), + }, + [1336] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4019), + }, + [1337] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4021), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1338] = { + [sym_file_descriptor] = ACTIONS(2801), + [sym__concat] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2803), + [anon_sym_RPAREN] = ACTIONS(2801), + [anon_sym_PIPE_AMP] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_EQ_TILDE] = ACTIONS(2803), + [anon_sym_EQ_EQ] = ACTIONS(2803), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_GT] = ACTIONS(2803), + [anon_sym_GT_GT] = ACTIONS(2801), + [anon_sym_AMP_GT] = ACTIONS(2803), + [anon_sym_AMP_GT_GT] = ACTIONS(2801), + [anon_sym_LT_AMP] = ACTIONS(2801), + [anon_sym_GT_AMP] = ACTIONS(2801), + [anon_sym_LT_LT] = ACTIONS(2803), + [anon_sym_LT_LT_DASH] = ACTIONS(2801), + [anon_sym_LT_LT_LT] = ACTIONS(2801), + [sym__special_characters] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_DOLLAR] = ACTIONS(2803), + [sym_raw_string] = ACTIONS(2801), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2801), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2801), + [anon_sym_BQUOTE] = ACTIONS(2801), + [anon_sym_LT_LPAREN] = ACTIONS(2801), + [anon_sym_GT_LPAREN] = ACTIONS(2801), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2803), + }, + [1339] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4023), + }, + [1340] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4025), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1341] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4027), + }, + [1342] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4007), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1343] = { + [sym_concatenation] = STATE(1711), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1711), + [anon_sym_RBRACE] = ACTIONS(4029), + [anon_sym_EQ] = ACTIONS(4031), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4031), + [anon_sym_COLON_QMARK] = ACTIONS(4031), + [anon_sym_COLON_DASH] = ACTIONS(4031), + [anon_sym_PERCENT] = ACTIONS(4031), + [anon_sym_DASH] = ACTIONS(4031), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1344] = { + [sym_file_descriptor] = ACTIONS(2817), + [sym__concat] = ACTIONS(2817), + [anon_sym_PIPE] = ACTIONS(2819), + [anon_sym_RPAREN] = ACTIONS(2817), + [anon_sym_PIPE_AMP] = ACTIONS(2817), + [anon_sym_AMP_AMP] = ACTIONS(2817), + [anon_sym_PIPE_PIPE] = ACTIONS(2817), + [anon_sym_EQ_TILDE] = ACTIONS(2819), + [anon_sym_EQ_EQ] = ACTIONS(2819), + [anon_sym_LT] = ACTIONS(2819), + [anon_sym_GT] = ACTIONS(2819), + [anon_sym_GT_GT] = ACTIONS(2817), + [anon_sym_AMP_GT] = ACTIONS(2819), + [anon_sym_AMP_GT_GT] = ACTIONS(2817), + [anon_sym_LT_AMP] = ACTIONS(2817), + [anon_sym_GT_AMP] = ACTIONS(2817), + [anon_sym_LT_LT] = ACTIONS(2819), + [anon_sym_LT_LT_DASH] = ACTIONS(2817), + [anon_sym_LT_LT_LT] = ACTIONS(2817), + [sym__special_characters] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2817), + [anon_sym_DOLLAR] = ACTIONS(2819), + [sym_raw_string] = ACTIONS(2817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), + [anon_sym_BQUOTE] = ACTIONS(2817), + [anon_sym_LT_LPAREN] = ACTIONS(2817), + [anon_sym_GT_LPAREN] = ACTIONS(2817), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2819), + }, + [1345] = { + [sym_concatenation] = STATE(1713), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1713), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_EQ] = ACTIONS(4037), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4037), + [anon_sym_COLON_QMARK] = ACTIONS(4037), + [anon_sym_COLON_DASH] = ACTIONS(4037), + [anon_sym_PERCENT] = ACTIONS(4037), + [anon_sym_DASH] = ACTIONS(4037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1346] = { + [sym_file_redirect] = STATE(1714), + [sym_file_descriptor] = ACTIONS(2851), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2342), + [anon_sym_PIPE_AMP] = ACTIONS(2342), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2853), + [anon_sym_GT] = ACTIONS(2853), + [anon_sym_GT_GT] = ACTIONS(2855), + [anon_sym_AMP_GT] = ACTIONS(2853), + [anon_sym_AMP_GT_GT] = ACTIONS(2855), + [anon_sym_LT_AMP] = ACTIONS(2855), + [anon_sym_GT_AMP] = ACTIONS(2855), + [sym_comment] = ACTIONS(54), + }, + [1347] = { + [aux_sym_concatenation_repeat1] = STATE(1350), + [sym_file_descriptor] = ACTIONS(1061), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1061), + [anon_sym_PIPE_AMP] = ACTIONS(1061), + [anon_sym_AMP_AMP] = ACTIONS(1061), + [anon_sym_PIPE_PIPE] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1061), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1061), + [anon_sym_LT_AMP] = ACTIONS(1061), + [anon_sym_GT_AMP] = ACTIONS(1061), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_LT_LT_DASH] = ACTIONS(1061), + [anon_sym_LT_LT_LT] = ACTIONS(1061), + [sym_comment] = ACTIONS(54), + }, + [1348] = { + [aux_sym_concatenation_repeat1] = STATE(1350), + [sym_file_descriptor] = ACTIONS(1065), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1065), + [anon_sym_PIPE_AMP] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1067), + [anon_sym_GT_GT] = ACTIONS(1065), + [anon_sym_AMP_GT] = ACTIONS(1067), + [anon_sym_AMP_GT_GT] = ACTIONS(1065), + [anon_sym_LT_AMP] = ACTIONS(1065), + [anon_sym_GT_AMP] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1067), + [anon_sym_LT_LT_DASH] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1065), + [sym_comment] = ACTIONS(54), + }, + [1349] = { + [sym_file_descriptor] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1065), + [anon_sym_PIPE_AMP] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1067), + [anon_sym_GT_GT] = ACTIONS(1065), + [anon_sym_AMP_GT] = ACTIONS(1067), + [anon_sym_AMP_GT_GT] = ACTIONS(1065), + [anon_sym_LT_AMP] = ACTIONS(1065), + [anon_sym_GT_AMP] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1067), + [anon_sym_LT_LT_DASH] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [sym_comment] = ACTIONS(54), + }, + [1350] = { + [aux_sym_concatenation_repeat1] = STATE(1715), + [sym_file_descriptor] = ACTIONS(688), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(688), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(688), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(688), + [anon_sym_LT_AMP] = ACTIONS(688), + [anon_sym_GT_AMP] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_LT_LT_DASH] = ACTIONS(688), + [anon_sym_LT_LT_LT] = ACTIONS(688), + [sym_comment] = ACTIONS(54), + }, + [1351] = { + [sym_file_descriptor] = ACTIONS(3182), + [anon_sym_PIPE] = ACTIONS(3184), + [anon_sym_RPAREN] = ACTIONS(3182), + [anon_sym_PIPE_AMP] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_PIPE_PIPE] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_GT] = ACTIONS(3184), + [anon_sym_GT_GT] = ACTIONS(3182), + [anon_sym_AMP_GT] = ACTIONS(3184), + [anon_sym_AMP_GT_GT] = ACTIONS(3182), + [anon_sym_LT_AMP] = ACTIONS(3182), + [anon_sym_GT_AMP] = ACTIONS(3182), + [anon_sym_LT_LT] = ACTIONS(3184), + [anon_sym_LT_LT_DASH] = ACTIONS(3182), + [anon_sym_LT_LT_LT] = ACTIONS(3182), + [anon_sym_BQUOTE] = ACTIONS(3182), + [sym_comment] = ACTIONS(54), + }, + [1352] = { + [sym_simple_expansion] = STATE(952), + [sym_expansion] = STATE(952), + [aux_sym_heredoc_repeat1] = STATE(1379), + [sym__heredoc_middle] = ACTIONS(2020), + [sym__heredoc_end] = ACTIONS(4041), + [anon_sym_DOLLAR] = ACTIONS(2024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), + [sym_comment] = ACTIONS(54), + }, + [1353] = { + [sym_file_redirect] = STATE(916), + [sym_heredoc_redirect] = STATE(916), + [sym_herestring_redirect] = STATE(916), + [aux_sym_while_statement_repeat1] = STATE(916), + [sym_file_descriptor] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(3204), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_PIPE_AMP] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_AMP_GT] = ACTIONS(876), + [anon_sym_AMP_GT_GT] = ACTIONS(878), + [anon_sym_LT_AMP] = ACTIONS(878), + [anon_sym_GT_AMP] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(884), + [sym_comment] = ACTIONS(54), + }, + [1354] = { + [aux_sym_concatenation_repeat1] = STATE(1717), + [sym_file_descriptor] = ACTIONS(688), + [sym__concat] = ACTIONS(658), + [sym_variable_name] = ACTIONS(688), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(688), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(688), + [anon_sym_LT_AMP] = ACTIONS(688), + [anon_sym_GT_AMP] = ACTIONS(688), + [sym__special_characters] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(688), + [anon_sym_LT_LPAREN] = ACTIONS(688), + [anon_sym_GT_LPAREN] = ACTIONS(688), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(688), + }, + [1355] = { + [sym_file_redirect] = STATE(943), + [sym_heredoc_redirect] = STATE(943), + [sym_herestring_redirect] = STATE(943), + [aux_sym_while_statement_repeat1] = STATE(943), + [sym_file_descriptor] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(2239), + [anon_sym_PIPE_AMP] = ACTIONS(2241), + [anon_sym_AMP_AMP] = ACTIONS(2241), + [anon_sym_PIPE_PIPE] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(924), + [anon_sym_GT_GT] = ACTIONS(926), + [anon_sym_AMP_GT] = ACTIONS(924), + [anon_sym_AMP_GT_GT] = ACTIONS(926), + [anon_sym_LT_AMP] = ACTIONS(926), + [anon_sym_GT_AMP] = ACTIONS(926), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(928), + [anon_sym_BQUOTE] = ACTIONS(2241), + [sym_comment] = ACTIONS(54), + }, + [1356] = { + [sym_compound_statement] = STATE(1718), + [anon_sym_LBRACE] = ACTIONS(1836), + [sym_comment] = ACTIONS(54), + }, + [1357] = { + [anon_sym_LT] = ACTIONS(4043), + [anon_sym_GT] = ACTIONS(4043), + [anon_sym_GT_GT] = ACTIONS(4045), + [anon_sym_AMP_GT] = ACTIONS(4043), + [anon_sym_AMP_GT_GT] = ACTIONS(4045), + [anon_sym_LT_AMP] = ACTIONS(4045), + [anon_sym_GT_AMP] = ACTIONS(4045), + [sym_comment] = ACTIONS(54), + }, + [1358] = { + [sym_concatenation] = STATE(1658), + [sym_string] = STATE(1721), + [sym_simple_expansion] = STATE(1721), + [sym_string_expansion] = STATE(1721), + [sym_expansion] = STATE(1721), + [sym_command_substitution] = STATE(1721), + [sym_process_substitution] = STATE(1721), + [sym__special_characters] = ACTIONS(4047), + [anon_sym_DQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(824), + [sym_raw_string] = ACTIONS(4049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4049), + }, + [1359] = { + [sym_file_redirect] = STATE(943), + [sym_heredoc_redirect] = STATE(943), + [sym_herestring_redirect] = STATE(943), + [aux_sym_while_statement_repeat1] = STATE(943), + [sym_file_descriptor] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_PIPE_PIPE] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(924), + [anon_sym_GT_GT] = ACTIONS(926), + [anon_sym_AMP_GT] = ACTIONS(924), + [anon_sym_AMP_GT_GT] = ACTIONS(926), + [anon_sym_LT_AMP] = ACTIONS(926), + [anon_sym_GT_AMP] = ACTIONS(926), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(928), + [anon_sym_BQUOTE] = ACTIONS(2442), + [sym_comment] = ACTIONS(54), + }, + [1360] = { + [aux_sym_concatenation_repeat1] = STATE(927), + [sym__concat] = ACTIONS(1848), + [sym_variable_name] = ACTIONS(1101), + [anon_sym_PIPE] = ACTIONS(1105), + [anon_sym_PIPE_AMP] = ACTIONS(1101), + [anon_sym_AMP_AMP] = ACTIONS(1101), + [anon_sym_PIPE_PIPE] = ACTIONS(1101), + [sym__special_characters] = ACTIONS(1101), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_DOLLAR] = ACTIONS(1105), + [sym_raw_string] = ACTIONS(1101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1101), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1101), + [anon_sym_LT_LPAREN] = ACTIONS(1101), + [anon_sym_GT_LPAREN] = ACTIONS(1101), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1105), + [sym_word] = ACTIONS(1105), + }, + [1361] = { + [aux_sym_concatenation_repeat1] = STATE(927), + [sym__concat] = ACTIONS(1848), + [sym_variable_name] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1079), + [anon_sym_AMP_AMP] = ACTIONS(1079), + [anon_sym_PIPE_PIPE] = ACTIONS(1079), + [sym__special_characters] = ACTIONS(1079), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_DOLLAR] = ACTIONS(1081), + [sym_raw_string] = ACTIONS(1079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1079), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1079), + [anon_sym_BQUOTE] = ACTIONS(1079), + [anon_sym_LT_LPAREN] = ACTIONS(1079), + [anon_sym_GT_LPAREN] = ACTIONS(1079), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1081), + [sym_word] = ACTIONS(1081), + }, + [1362] = { + [aux_sym_concatenation_repeat1] = STATE(1362), + [sym__concat] = ACTIONS(3919), + [sym_variable_name] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1634), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE_PIPE] = ACTIONS(1634), + [sym__special_characters] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LT_LPAREN] = ACTIONS(1634), + [anon_sym_GT_LPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1636), + [sym_word] = ACTIONS(1636), + }, + [1363] = { + [aux_sym_concatenation_repeat1] = STATE(1363), + [sym__concat] = ACTIONS(3962), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1634), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE_PIPE] = ACTIONS(1634), + [sym__special_characters] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LT_LPAREN] = ACTIONS(1634), + [anon_sym_GT_LPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1636), + [sym_word] = ACTIONS(1636), + }, + [1364] = { + [sym_file_redirect] = STATE(1714), + [sym_file_descriptor] = ACTIONS(3119), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_PIPE_AMP] = ACTIONS(2342), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(3121), + [anon_sym_GT] = ACTIONS(3121), + [anon_sym_GT_GT] = ACTIONS(3123), + [anon_sym_AMP_GT] = ACTIONS(3121), + [anon_sym_AMP_GT_GT] = ACTIONS(3123), + [anon_sym_LT_AMP] = ACTIONS(3123), + [anon_sym_GT_AMP] = ACTIONS(3123), + [anon_sym_BQUOTE] = ACTIONS(2342), + [sym_comment] = ACTIONS(54), + }, + [1365] = { + [aux_sym_concatenation_repeat1] = STATE(1367), + [sym_file_descriptor] = ACTIONS(1061), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(1061), + [anon_sym_AMP_AMP] = ACTIONS(1061), + [anon_sym_PIPE_PIPE] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1061), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1061), + [anon_sym_LT_AMP] = ACTIONS(1061), + [anon_sym_GT_AMP] = ACTIONS(1061), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_LT_LT_DASH] = ACTIONS(1061), + [anon_sym_LT_LT_LT] = ACTIONS(1061), + [anon_sym_BQUOTE] = ACTIONS(1061), + [sym_comment] = ACTIONS(54), + }, + [1366] = { + [aux_sym_concatenation_repeat1] = STATE(1367), + [sym_file_descriptor] = ACTIONS(1065), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(1067), + [anon_sym_PIPE_AMP] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1067), + [anon_sym_GT_GT] = ACTIONS(1065), + [anon_sym_AMP_GT] = ACTIONS(1067), + [anon_sym_AMP_GT_GT] = ACTIONS(1065), + [anon_sym_LT_AMP] = ACTIONS(1065), + [anon_sym_GT_AMP] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1067), + [anon_sym_LT_LT_DASH] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [sym_comment] = ACTIONS(54), + }, + [1367] = { + [aux_sym_concatenation_repeat1] = STATE(1722), + [sym_file_descriptor] = ACTIONS(688), + [sym__concat] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(688), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(688), + [anon_sym_LT_AMP] = ACTIONS(688), + [anon_sym_GT_AMP] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_LT_LT_DASH] = ACTIONS(688), + [anon_sym_LT_LT_LT] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(688), + [sym_comment] = ACTIONS(54), + }, + [1368] = { + [sym_file_redirect] = STATE(943), + [sym_heredoc_redirect] = STATE(943), + [sym_herestring_redirect] = STATE(943), + [aux_sym_while_statement_repeat1] = STATE(943), + [sym_file_descriptor] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(3204), + [anon_sym_PIPE_AMP] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(924), + [anon_sym_GT_GT] = ACTIONS(926), + [anon_sym_AMP_GT] = ACTIONS(924), + [anon_sym_AMP_GT_GT] = ACTIONS(926), + [anon_sym_LT_AMP] = ACTIONS(926), + [anon_sym_GT_AMP] = ACTIONS(926), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT_LT_DASH] = ACTIONS(882), + [anon_sym_LT_LT_LT] = ACTIONS(928), + [anon_sym_BQUOTE] = ACTIONS(3206), + [sym_comment] = ACTIONS(54), + }, + [1369] = { + [anon_sym_esac] = ACTIONS(3484), + [anon_sym_PIPE] = ACTIONS(3484), + [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), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_LF] = ACTIONS(3486), + [anon_sym_AMP] = ACTIONS(3484), + }, + [1370] = { + [aux_sym_concatenation_repeat1] = STATE(1370), + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(1638), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1636), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1636), + [anon_sym_LT_AMP] = ACTIONS(1636), + [anon_sym_GT_AMP] = ACTIONS(1636), + [anon_sym_LT_LT] = ACTIONS(1636), + [anon_sym_LT_LT_DASH] = ACTIONS(1636), + [anon_sym_LT_LT_LT] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [1371] = { + [sym__heredoc_middle] = ACTIONS(722), + [sym__heredoc_end] = ACTIONS(722), + [anon_sym_DOLLAR] = ACTIONS(724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(722), + [sym_comment] = ACTIONS(54), + }, + [1372] = { + [sym__heredoc_middle] = ACTIONS(730), + [sym__heredoc_end] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(730), + [sym_comment] = ACTIONS(54), + }, + [1373] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(4051), + [sym_comment] = ACTIONS(54), + }, + [1374] = { + [sym_concatenation] = STATE(1726), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1726), + [anon_sym_RBRACE] = ACTIONS(4053), + [anon_sym_EQ] = ACTIONS(4055), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(4059), + [anon_sym_COLON] = ACTIONS(4055), + [anon_sym_COLON_QMARK] = ACTIONS(4055), + [anon_sym_COLON_DASH] = ACTIONS(4055), + [anon_sym_PERCENT] = ACTIONS(4055), + [anon_sym_DASH] = ACTIONS(4055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1375] = { + [sym_subscript] = STATE(1730), + [sym_variable_name] = ACTIONS(4061), + [anon_sym_DOLLAR] = ACTIONS(4063), + [anon_sym_DASH] = ACTIONS(4063), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4065), + [anon_sym_STAR] = ACTIONS(4063), + [anon_sym_AT] = ACTIONS(4063), + [anon_sym_QMARK] = ACTIONS(4063), + [anon_sym_0] = ACTIONS(4067), + [anon_sym__] = ACTIONS(4067), + }, + [1376] = { + [sym_concatenation] = STATE(1733), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1733), + [anon_sym_RBRACE] = ACTIONS(4069), + [anon_sym_EQ] = ACTIONS(4071), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4073), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(4075), + [anon_sym_COLON] = ACTIONS(4071), + [anon_sym_COLON_QMARK] = ACTIONS(4071), + [anon_sym_COLON_DASH] = ACTIONS(4071), + [anon_sym_PERCENT] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1377] = { + [sym_concatenation] = STATE(1736), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1736), + [anon_sym_RBRACE] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(4079), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(4083), + [anon_sym_COLON] = ACTIONS(4079), + [anon_sym_COLON_QMARK] = ACTIONS(4079), + [anon_sym_COLON_DASH] = ACTIONS(4079), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1378] = { + [sym_file_descriptor] = ACTIONS(4085), + [anon_sym_esac] = ACTIONS(4087), + [anon_sym_PIPE] = ACTIONS(4087), + [anon_sym_RPAREN] = ACTIONS(4087), + [anon_sym_SEMI_SEMI] = ACTIONS(4087), + [anon_sym_PIPE_AMP] = ACTIONS(4087), + [anon_sym_AMP_AMP] = ACTIONS(4087), + [anon_sym_PIPE_PIPE] = ACTIONS(4087), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_GT_GT] = ACTIONS(4087), + [anon_sym_AMP_GT] = ACTIONS(4087), + [anon_sym_AMP_GT_GT] = ACTIONS(4087), + [anon_sym_LT_AMP] = ACTIONS(4087), + [anon_sym_GT_AMP] = ACTIONS(4087), + [anon_sym_LT_LT] = ACTIONS(4087), + [anon_sym_LT_LT_DASH] = ACTIONS(4087), + [anon_sym_LT_LT_LT] = ACTIONS(4087), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4087), + [anon_sym_LF] = ACTIONS(4085), + [anon_sym_AMP] = ACTIONS(4087), + }, + [1379] = { + [sym_simple_expansion] = STATE(952), + [sym_expansion] = STATE(952), + [aux_sym_heredoc_repeat1] = STATE(1379), + [sym__heredoc_middle] = ACTIONS(4089), + [sym__heredoc_end] = ACTIONS(4092), + [anon_sym_DOLLAR] = ACTIONS(4094), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4097), + [sym_comment] = ACTIONS(54), + }, + [1380] = { + [anon_sym_EQ] = ACTIONS(4100), + [anon_sym_PLUS_EQ] = ACTIONS(4100), + [sym_comment] = ACTIONS(54), + }, + [1381] = { + [anon_sym_EQ] = ACTIONS(4102), + [anon_sym_PLUS_EQ] = ACTIONS(4102), + [sym_comment] = ACTIONS(54), + }, + [1382] = { + [sym__concat] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1634), + [sym__special_characters] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LT_LPAREN] = ACTIONS(1634), + [anon_sym_GT_LPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1634), + }, + [1383] = { + [aux_sym_concatenation_repeat1] = STATE(1383), + [sym__concat] = ACTIONS(4104), + [anon_sym_RPAREN] = ACTIONS(1634), + [sym__special_characters] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LT_LPAREN] = ACTIONS(1634), + [anon_sym_GT_LPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1634), + }, + [1384] = { + [sym__concat] = ACTIONS(1683), + [anon_sym_RPAREN] = ACTIONS(1683), + [sym__special_characters] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1683), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1683), + [anon_sym_BQUOTE] = ACTIONS(1683), + [anon_sym_LT_LPAREN] = ACTIONS(1683), + [anon_sym_GT_LPAREN] = ACTIONS(1683), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1683), + }, + [1385] = { + [sym_concatenation] = STATE(1740), + [sym_string] = STATE(1739), + [sym_simple_expansion] = STATE(1739), + [sym_string_expansion] = STATE(1739), + [sym_expansion] = STATE(1739), + [sym_command_substitution] = STATE(1739), + [sym_process_substitution] = STATE(1739), + [anon_sym_RBRACE] = ACTIONS(4107), + [sym__special_characters] = ACTIONS(4109), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(4111), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4111), + }, + [1386] = { + [sym__concat] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(1724), + [sym__special_characters] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1726), + [sym_raw_string] = ACTIONS(1724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), + [anon_sym_BQUOTE] = ACTIONS(1724), + [anon_sym_LT_LPAREN] = ACTIONS(1724), + [anon_sym_GT_LPAREN] = ACTIONS(1724), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1724), + }, + [1387] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4113), + }, + [1388] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4115), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1389] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(4117), + [sym_comment] = ACTIONS(54), + }, + [1390] = { + [sym_concatenation] = STATE(1746), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1746), + [anon_sym_RBRACE] = ACTIONS(4119), + [anon_sym_EQ] = ACTIONS(4121), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4123), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(4125), + [anon_sym_COLON] = ACTIONS(4121), + [anon_sym_COLON_QMARK] = ACTIONS(4121), + [anon_sym_COLON_DASH] = ACTIONS(4121), + [anon_sym_PERCENT] = ACTIONS(4121), + [anon_sym_DASH] = ACTIONS(4121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1391] = { + [sym_concatenation] = STATE(1749), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1749), + [anon_sym_RBRACE] = ACTIONS(4127), + [anon_sym_EQ] = ACTIONS(4129), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4131), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(4133), + [anon_sym_COLON] = ACTIONS(4129), + [anon_sym_COLON_QMARK] = ACTIONS(4129), + [anon_sym_COLON_DASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1392] = { + [sym_concatenation] = STATE(1751), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1751), + [anon_sym_RBRACE] = ACTIONS(4107), + [anon_sym_EQ] = ACTIONS(4135), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4137), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(4135), + [anon_sym_COLON_QMARK] = ACTIONS(4135), + [anon_sym_COLON_DASH] = ACTIONS(4135), + [anon_sym_PERCENT] = ACTIONS(4135), + [anon_sym_DASH] = ACTIONS(4135), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1393] = { + [sym__concat] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1790), + [sym__special_characters] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1792), + [sym_raw_string] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_LT_LPAREN] = ACTIONS(1790), + [anon_sym_GT_LPAREN] = ACTIONS(1790), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1790), + }, + [1394] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4141), + }, + [1395] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4143), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1396] = { + [sym__concat] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [sym__special_characters] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1798), + [anon_sym_DOLLAR] = ACTIONS(1800), + [sym_raw_string] = ACTIONS(1798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1798), + [anon_sym_LT_LPAREN] = ACTIONS(1798), + [anon_sym_GT_LPAREN] = ACTIONS(1798), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1798), + }, + [1397] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4145), + }, + [1398] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4107), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1399] = { + [sym__concat] = ACTIONS(1936), + [anon_sym_RPAREN] = ACTIONS(1936), + [sym__special_characters] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(1936), + [anon_sym_DOLLAR] = ACTIONS(1938), + [sym_raw_string] = ACTIONS(1936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1936), + [anon_sym_BQUOTE] = ACTIONS(1936), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1936), + }, + [1400] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_RPAREN] = ACTIONS(2000), + [sym__special_characters] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [anon_sym_LT_LPAREN] = ACTIONS(2000), + [anon_sym_GT_LPAREN] = ACTIONS(2000), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2000), + }, + [1401] = { + [sym_file_descriptor] = ACTIONS(2672), + [sym__concat] = ACTIONS(2672), + [sym_variable_name] = ACTIONS(2672), + [anon_sym_PIPE] = ACTIONS(2674), + [anon_sym_RPAREN] = ACTIONS(2674), + [anon_sym_SEMI_SEMI] = ACTIONS(2674), + [anon_sym_PIPE_AMP] = ACTIONS(2674), + [anon_sym_AMP_AMP] = ACTIONS(2674), + [anon_sym_PIPE_PIPE] = ACTIONS(2674), + [anon_sym_LT] = ACTIONS(2674), + [anon_sym_GT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_AMP_GT] = ACTIONS(2674), + [anon_sym_AMP_GT_GT] = ACTIONS(2674), + [anon_sym_LT_AMP] = ACTIONS(2674), + [anon_sym_GT_AMP] = ACTIONS(2674), + [sym__special_characters] = ACTIONS(2674), + [anon_sym_DQUOTE] = ACTIONS(2674), + [anon_sym_DOLLAR] = ACTIONS(2674), + [sym_raw_string] = ACTIONS(2674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2674), + [anon_sym_BQUOTE] = ACTIONS(2674), + [anon_sym_LT_LPAREN] = ACTIONS(2674), + [anon_sym_GT_LPAREN] = ACTIONS(2674), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_LF] = ACTIONS(2672), + [anon_sym_AMP] = ACTIONS(2674), + }, + [1402] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4147), + [sym_comment] = ACTIONS(54), + }, + [1403] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4149), + [sym_comment] = ACTIONS(54), + }, + [1404] = { + [anon_sym_RBRACE] = ACTIONS(4149), + [sym_comment] = ACTIONS(54), + }, + [1405] = { + [sym_concatenation] = STATE(1758), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1758), + [anon_sym_RBRACE] = ACTIONS(4151), + [anon_sym_EQ] = ACTIONS(4153), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4155), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4153), + [anon_sym_COLON_QMARK] = ACTIONS(4153), + [anon_sym_COLON_DASH] = ACTIONS(4153), + [anon_sym_PERCENT] = ACTIONS(4153), + [anon_sym_DASH] = ACTIONS(4153), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1406] = { + [sym_file_descriptor] = ACTIONS(2750), + [sym__concat] = ACTIONS(2750), + [sym_variable_name] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_RPAREN] = ACTIONS(2752), + [anon_sym_SEMI_SEMI] = ACTIONS(2752), + [anon_sym_PIPE_AMP] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2752), + [anon_sym_GT] = ACTIONS(2752), + [anon_sym_GT_GT] = ACTIONS(2752), + [anon_sym_AMP_GT] = ACTIONS(2752), + [anon_sym_AMP_GT_GT] = ACTIONS(2752), + [anon_sym_LT_AMP] = ACTIONS(2752), + [anon_sym_GT_AMP] = ACTIONS(2752), + [sym__special_characters] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2752), + [anon_sym_BQUOTE] = ACTIONS(2752), + [anon_sym_LT_LPAREN] = ACTIONS(2752), + [anon_sym_GT_LPAREN] = ACTIONS(2752), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2752), + }, + [1407] = { + [sym_concatenation] = STATE(1761), + [sym_string] = STATE(1760), + [sym_simple_expansion] = STATE(1760), + [sym_string_expansion] = STATE(1760), + [sym_expansion] = STATE(1760), + [sym_command_substitution] = STATE(1760), + [sym_process_substitution] = STATE(1760), + [anon_sym_RBRACE] = ACTIONS(4149), + [sym__special_characters] = ACTIONS(4157), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(4159), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4159), + }, + [1408] = { + [sym_file_descriptor] = ACTIONS(2793), + [sym__concat] = ACTIONS(2793), + [sym_variable_name] = ACTIONS(2793), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_RPAREN] = ACTIONS(2795), + [anon_sym_SEMI_SEMI] = ACTIONS(2795), + [anon_sym_PIPE_AMP] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2795), + [anon_sym_GT] = ACTIONS(2795), + [anon_sym_GT_GT] = ACTIONS(2795), + [anon_sym_AMP_GT] = ACTIONS(2795), + [anon_sym_AMP_GT_GT] = ACTIONS(2795), + [anon_sym_LT_AMP] = ACTIONS(2795), + [anon_sym_GT_AMP] = ACTIONS(2795), + [sym__special_characters] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [anon_sym_DOLLAR] = ACTIONS(2795), + [sym_raw_string] = ACTIONS(2795), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2795), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2795), + [anon_sym_BQUOTE] = ACTIONS(2795), + [anon_sym_LT_LPAREN] = ACTIONS(2795), + [anon_sym_GT_LPAREN] = ACTIONS(2795), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_LF] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2795), + }, + [1409] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4161), + }, + [1410] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4163), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1411] = { + [sym_file_descriptor] = ACTIONS(2801), + [sym__concat] = ACTIONS(2801), + [sym_variable_name] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2803), + [anon_sym_RPAREN] = ACTIONS(2803), + [anon_sym_SEMI_SEMI] = ACTIONS(2803), + [anon_sym_PIPE_AMP] = ACTIONS(2803), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_PIPE_PIPE] = ACTIONS(2803), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_GT] = ACTIONS(2803), + [anon_sym_GT_GT] = ACTIONS(2803), + [anon_sym_AMP_GT] = ACTIONS(2803), + [anon_sym_AMP_GT_GT] = ACTIONS(2803), + [anon_sym_LT_AMP] = ACTIONS(2803), + [anon_sym_GT_AMP] = ACTIONS(2803), + [sym__special_characters] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2803), + [sym_raw_string] = ACTIONS(2803), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2803), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2803), + [anon_sym_BQUOTE] = ACTIONS(2803), + [anon_sym_LT_LPAREN] = ACTIONS(2803), + [anon_sym_GT_LPAREN] = ACTIONS(2803), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_LF] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + }, + [1412] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4165), + }, + [1413] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1414] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4169), + }, + [1415] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4149), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1416] = { + [sym_concatenation] = STATE(1768), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1768), + [anon_sym_RBRACE] = ACTIONS(4171), + [anon_sym_EQ] = ACTIONS(4173), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4175), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1417] = { + [sym_file_descriptor] = ACTIONS(2817), + [sym__concat] = ACTIONS(2817), + [sym_variable_name] = ACTIONS(2817), + [anon_sym_PIPE] = ACTIONS(2819), + [anon_sym_RPAREN] = ACTIONS(2819), + [anon_sym_SEMI_SEMI] = ACTIONS(2819), + [anon_sym_PIPE_AMP] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_PIPE_PIPE] = ACTIONS(2819), + [anon_sym_LT] = ACTIONS(2819), + [anon_sym_GT] = ACTIONS(2819), + [anon_sym_GT_GT] = ACTIONS(2819), + [anon_sym_AMP_GT] = ACTIONS(2819), + [anon_sym_AMP_GT_GT] = ACTIONS(2819), + [anon_sym_LT_AMP] = ACTIONS(2819), + [anon_sym_GT_AMP] = ACTIONS(2819), + [sym__special_characters] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [anon_sym_DOLLAR] = ACTIONS(2819), + [sym_raw_string] = ACTIONS(2819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2819), + [anon_sym_BQUOTE] = ACTIONS(2819), + [anon_sym_LT_LPAREN] = ACTIONS(2819), + [anon_sym_GT_LPAREN] = ACTIONS(2819), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_LF] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2819), + }, + [1418] = { + [sym_concatenation] = STATE(1770), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1770), + [anon_sym_RBRACE] = ACTIONS(4177), + [anon_sym_EQ] = ACTIONS(4179), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4181), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1419] = { + [sym__concat] = ACTIONS(1634), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [1420] = { + [aux_sym_concatenation_repeat1] = STATE(1420), + [sym__concat] = ACTIONS(4183), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [1421] = { + [sym__concat] = ACTIONS(1683), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [sym__special_characters] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_BQUOTE] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + }, + [1422] = { + [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(4186), + [sym__special_characters] = ACTIONS(4188), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(4190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4190), + }, + [1423] = { + [sym__concat] = ACTIONS(1724), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1726), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LF] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1726), + }, + [1424] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4192), + }, + [1425] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1426] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(4196), + [sym_comment] = ACTIONS(54), + }, + [1427] = { + [sym_concatenation] = STATE(1780), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1780), + [anon_sym_RBRACE] = ACTIONS(4198), + [anon_sym_EQ] = ACTIONS(4200), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1428] = { + [sym_concatenation] = STATE(1783), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1783), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_EQ] = ACTIONS(4208), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4210), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(4212), + [anon_sym_COLON] = ACTIONS(4208), + [anon_sym_COLON_QMARK] = ACTIONS(4208), + [anon_sym_COLON_DASH] = ACTIONS(4208), + [anon_sym_PERCENT] = ACTIONS(4208), + [anon_sym_DASH] = ACTIONS(4208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1429] = { + [sym_concatenation] = STATE(1785), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1785), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_EQ] = ACTIONS(4214), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4216), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(4214), + [anon_sym_COLON_QMARK] = ACTIONS(4214), + [anon_sym_COLON_DASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1430] = { + [sym__concat] = ACTIONS(1790), + [anon_sym_SEMI_SEMI] = ACTIONS(1792), + [sym__special_characters] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1792), + [anon_sym_DOLLAR] = ACTIONS(1792), + [sym_raw_string] = ACTIONS(1792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1792), + [anon_sym_LT_LPAREN] = ACTIONS(1792), + [anon_sym_GT_LPAREN] = ACTIONS(1792), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1792), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_LF] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1792), + }, + [1431] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4220), + }, + [1432] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1433] = { + [sym__concat] = ACTIONS(1798), + [anon_sym_SEMI_SEMI] = ACTIONS(1800), + [sym__special_characters] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1800), + [sym_raw_string] = ACTIONS(1800), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1800), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1800), + [anon_sym_BQUOTE] = ACTIONS(1800), + [anon_sym_LT_LPAREN] = ACTIONS(1800), + [anon_sym_GT_LPAREN] = ACTIONS(1800), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_LF] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1800), + }, + [1434] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4224), + }, + [1435] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1436] = { + [sym__concat] = ACTIONS(1936), + [anon_sym_SEMI_SEMI] = ACTIONS(1938), + [sym__special_characters] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_DOLLAR] = ACTIONS(1938), + [sym_raw_string] = ACTIONS(1938), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1938), + [anon_sym_BQUOTE] = ACTIONS(1938), + [anon_sym_LT_LPAREN] = ACTIONS(1938), + [anon_sym_GT_LPAREN] = ACTIONS(1938), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1938), + }, + [1437] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2002), + [anon_sym_BQUOTE] = ACTIONS(2002), + [anon_sym_LT_LPAREN] = ACTIONS(2002), + [anon_sym_GT_LPAREN] = ACTIONS(2002), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2002), + }, + [1438] = { + [anon_sym_esac] = ACTIONS(4226), + [anon_sym_PIPE] = ACTIONS(4226), + [anon_sym_RPAREN] = ACTIONS(4226), + [anon_sym_SEMI_SEMI] = ACTIONS(4226), + [anon_sym_PIPE_AMP] = ACTIONS(4226), + [anon_sym_AMP_AMP] = ACTIONS(4226), + [anon_sym_PIPE_PIPE] = ACTIONS(4226), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4226), + [anon_sym_LF] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4226), + }, + [1439] = { + [anon_sym_esac] = ACTIONS(3403), + [anon_sym_PIPE] = ACTIONS(3403), + [anon_sym_RPAREN] = ACTIONS(3403), + [anon_sym_SEMI_SEMI] = ACTIONS(3403), + [anon_sym_PIPE_AMP] = ACTIONS(3403), + [anon_sym_AMP_AMP] = ACTIONS(3403), + [anon_sym_PIPE_PIPE] = ACTIONS(3403), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_LF] = ACTIONS(3401), + [anon_sym_AMP] = ACTIONS(3403), + }, + [1440] = { + [sym__terminated_statement] = STATE(1789), + [sym_for_statement] = STATE(592), + [sym_while_statement] = STATE(592), + [sym_if_statement] = STATE(592), + [sym_case_statement] = STATE(592), + [sym_function_definition] = STATE(592), + [sym_subshell] = STATE(592), + [sym_pipeline] = STATE(592), + [sym_list] = STATE(592), + [sym_command] = STATE(592), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(592), + [sym_variable_assignment] = STATE(594), + [sym_declaration_command] = STATE(592), + [sym_unset_command] = STATE(592), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1789), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_fi] = ACTIONS(4230), + [anon_sym_elif] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [1441] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_fi] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(944), + [sym_raw_string] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(944), + }, + [1442] = { + [sym__terminated_statement] = STATE(1442), + [sym_for_statement] = STATE(1030), + [sym_while_statement] = STATE(1030), + [sym_if_statement] = STATE(1030), + [sym_case_statement] = STATE(1030), + [sym_function_definition] = STATE(1030), + [sym_subshell] = STATE(1030), + [sym_pipeline] = STATE(1030), + [sym_list] = STATE(1030), + [sym_command] = STATE(1030), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(1030), + [sym_variable_assignment] = STATE(1031), + [sym_declaration_command] = STATE(1030), + [sym_unset_command] = STATE(1030), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1442), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(972), + [sym_variable_name] = ACTIONS(975), + [anon_sym_for] = ACTIONS(980), + [anon_sym_while] = ACTIONS(983), + [anon_sym_if] = ACTIONS(986), + [anon_sym_fi] = ACTIONS(3405), + [anon_sym_case] = ACTIONS(989), + [anon_sym_function] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1001), + [anon_sym_declare] = ACTIONS(1004), + [anon_sym_typeset] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1004), + [anon_sym_readonly] = ACTIONS(1004), + [anon_sym_local] = ACTIONS(1004), + [anon_sym_unset] = ACTIONS(1007), + [anon_sym_unsetenv] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_GT_GT] = ACTIONS(1013), + [anon_sym_AMP_GT] = ACTIONS(1010), + [anon_sym_AMP_GT_GT] = ACTIONS(1013), + [anon_sym_LT_AMP] = ACTIONS(1013), + [anon_sym_GT_AMP] = ACTIONS(1013), + [sym__special_characters] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1022), + [sym_raw_string] = ACTIONS(1025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1034), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1040), + }, + [1443] = { + [anon_sym_esac] = ACTIONS(4232), + [anon_sym_PIPE] = ACTIONS(4232), + [anon_sym_RPAREN] = ACTIONS(4232), + [anon_sym_SEMI_SEMI] = ACTIONS(4232), + [anon_sym_PIPE_AMP] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_LF] = ACTIONS(4234), + [anon_sym_AMP] = ACTIONS(4232), + }, + [1444] = { + [anon_sym_fi] = ACTIONS(4236), + [sym_comment] = ACTIONS(54), + }, + [1445] = { + [sym_concatenation] = STATE(1793), + [sym_string] = STATE(1792), + [sym_simple_expansion] = STATE(1792), + [sym_string_expansion] = STATE(1792), + [sym_expansion] = STATE(1792), + [sym_command_substitution] = STATE(1792), + [sym_process_substitution] = STATE(1792), + [sym__special_characters] = ACTIONS(4238), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(4240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4240), + }, + [1446] = { + [sym__terminated_statement] = STATE(1816), + [sym_for_statement] = STATE(1811), + [sym_while_statement] = STATE(1811), + [sym_if_statement] = STATE(1811), + [sym_case_statement] = STATE(1811), + [sym_function_definition] = STATE(1811), + [sym_subshell] = STATE(1811), + [sym_pipeline] = STATE(1811), + [sym_list] = STATE(1811), + [sym_command] = STATE(1811), + [sym_command_name] = STATE(1812), + [sym_bracket_command] = STATE(1811), + [sym_variable_assignment] = STATE(1813), + [sym_declaration_command] = STATE(1811), + [sym_unset_command] = STATE(1811), + [sym_subscript] = STATE(1814), + [sym_file_redirect] = STATE(1817), + [sym_concatenation] = STATE(1815), + [sym_string] = STATE(1805), + [sym_simple_expansion] = STATE(1805), + [sym_string_expansion] = STATE(1805), + [sym_expansion] = STATE(1805), + [sym_command_substitution] = STATE(1805), + [sym_process_substitution] = STATE(1805), + [aux_sym_program_repeat1] = STATE(1816), + [aux_sym_command_repeat1] = STATE(1817), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(4242), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_esac] = ACTIONS(4246), + [anon_sym_SEMI_SEMI] = ACTIONS(4248), + [anon_sym_function] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4254), + [anon_sym_declare] = ACTIONS(4256), + [anon_sym_typeset] = ACTIONS(4256), + [anon_sym_export] = ACTIONS(4256), + [anon_sym_readonly] = ACTIONS(4256), + [anon_sym_local] = ACTIONS(4256), + [anon_sym_unset] = ACTIONS(4258), + [anon_sym_unsetenv] = ACTIONS(4258), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(4260), + [anon_sym_DQUOTE] = ACTIONS(4262), + [anon_sym_DOLLAR] = ACTIONS(4264), + [sym_raw_string] = ACTIONS(4266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4270), + [anon_sym_BQUOTE] = ACTIONS(4272), + [anon_sym_LT_LPAREN] = ACTIONS(4274), + [anon_sym_GT_LPAREN] = ACTIONS(4274), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4276), + }, + [1447] = { + [aux_sym_case_item_repeat1] = STATE(1819), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_RPAREN] = ACTIONS(4278), + [sym_comment] = ACTIONS(54), + }, + [1448] = { + [aux_sym_concatenation_repeat1] = STATE(1820), + [sym__concat] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(688), + [anon_sym_RPAREN] = ACTIONS(688), + [sym_comment] = ACTIONS(54), + }, + [1449] = { + [sym__terminated_statement] = STATE(1824), + [sym_for_statement] = STATE(1822), + [sym_while_statement] = STATE(1822), + [sym_if_statement] = STATE(1822), + [sym_case_statement] = STATE(1822), + [sym_function_definition] = STATE(1822), + [sym_subshell] = STATE(1822), + [sym_pipeline] = STATE(1822), + [sym_list] = STATE(1822), + [sym_command] = STATE(1822), + [sym_command_name] = STATE(1812), + [sym_bracket_command] = STATE(1822), + [sym_variable_assignment] = STATE(1823), + [sym_declaration_command] = STATE(1822), + [sym_unset_command] = STATE(1822), + [sym_subscript] = STATE(1814), + [sym_file_redirect] = STATE(1817), + [sym_concatenation] = STATE(1815), + [sym_string] = STATE(1805), + [sym_simple_expansion] = STATE(1805), + [sym_string_expansion] = STATE(1805), + [sym_expansion] = STATE(1805), + [sym_command_substitution] = STATE(1805), + [sym_process_substitution] = STATE(1805), + [aux_sym_program_repeat1] = STATE(1824), + [aux_sym_command_repeat1] = STATE(1817), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(4242), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_esac] = ACTIONS(4280), + [anon_sym_SEMI_SEMI] = ACTIONS(4282), + [anon_sym_function] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4254), + [anon_sym_declare] = ACTIONS(4256), + [anon_sym_typeset] = ACTIONS(4256), + [anon_sym_export] = ACTIONS(4256), + [anon_sym_readonly] = ACTIONS(4256), + [anon_sym_local] = ACTIONS(4256), + [anon_sym_unset] = ACTIONS(4258), + [anon_sym_unsetenv] = ACTIONS(4258), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(4260), + [anon_sym_DQUOTE] = ACTIONS(4262), + [anon_sym_DOLLAR] = ACTIONS(4264), + [sym_raw_string] = ACTIONS(4266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4270), + [anon_sym_BQUOTE] = ACTIONS(4272), + [anon_sym_LT_LPAREN] = ACTIONS(4274), + [anon_sym_GT_LPAREN] = ACTIONS(4274), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4276), + }, + [1450] = { + [aux_sym_case_item_repeat1] = STATE(1819), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_RPAREN] = ACTIONS(4284), + [sym_comment] = ACTIONS(54), + }, + [1451] = { + [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), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4286), + [anon_sym_LF] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(4286), + }, + [1452] = { + [anon_sym_esac] = ACTIONS(4290), + [sym_comment] = ACTIONS(54), + }, + [1453] = { + [sym_case_item] = STATE(1453), + [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), + [aux_sym_case_statement_repeat1] = STATE(1453), + [sym__special_characters] = ACTIONS(4292), + [anon_sym_DQUOTE] = ACTIONS(4295), + [anon_sym_DOLLAR] = ACTIONS(4298), + [sym_raw_string] = ACTIONS(4301), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4307), + [anon_sym_BQUOTE] = ACTIONS(4310), + [anon_sym_LT_LPAREN] = ACTIONS(4313), + [anon_sym_GT_LPAREN] = ACTIONS(4313), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4301), + }, + [1454] = { + [anon_sym_esac] = ACTIONS(4316), + [anon_sym_PIPE] = ACTIONS(4316), + [anon_sym_RPAREN] = ACTIONS(4316), + [anon_sym_SEMI_SEMI] = ACTIONS(4316), + [anon_sym_PIPE_AMP] = ACTIONS(4316), + [anon_sym_AMP_AMP] = ACTIONS(4316), + [anon_sym_PIPE_PIPE] = ACTIONS(4316), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4316), + [anon_sym_LF] = ACTIONS(4318), + [anon_sym_AMP] = ACTIONS(4316), + }, + [1455] = { + [sym_case_item] = STATE(1453), + [sym_last_case_item] = STATE(1830), + [sym_concatenation] = STATE(1043), + [sym_string] = STATE(1041), + [sym_simple_expansion] = STATE(1041), + [sym_string_expansion] = STATE(1041), + [sym_expansion] = STATE(1041), + [sym_command_substitution] = STATE(1041), + [sym_process_substitution] = STATE(1041), + [aux_sym_case_statement_repeat1] = STATE(1453), + [sym__special_characters] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(2265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2265), + }, + [1456] = { + [anon_sym_esac] = ACTIONS(4320), + [anon_sym_PIPE] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(4320), + [anon_sym_SEMI_SEMI] = ACTIONS(4320), + [anon_sym_PIPE_AMP] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_PIPE_PIPE] = ACTIONS(4320), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_LF] = ACTIONS(4322), + [anon_sym_AMP] = ACTIONS(4320), + }, + [1457] = { + [anon_sym_esac] = ACTIONS(4324), + [sym_comment] = ACTIONS(54), + }, + [1458] = { + [anon_sym_esac] = ACTIONS(4326), + [anon_sym_PIPE] = ACTIONS(4326), + [anon_sym_RPAREN] = ACTIONS(4326), + [anon_sym_SEMI_SEMI] = ACTIONS(4326), + [anon_sym_PIPE_AMP] = ACTIONS(4326), + [anon_sym_AMP_AMP] = ACTIONS(4326), + [anon_sym_PIPE_PIPE] = ACTIONS(4326), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4326), + [anon_sym_LF] = ACTIONS(4328), + [anon_sym_AMP] = ACTIONS(4326), + }, + [1459] = { + [sym_case_item] = STATE(1453), + [sym_last_case_item] = STATE(1832), + [sym_concatenation] = STATE(1043), + [sym_string] = STATE(1041), + [sym_simple_expansion] = STATE(1041), + [sym_string_expansion] = STATE(1041), + [sym_expansion] = STATE(1041), + [sym_command_substitution] = STATE(1041), + [sym_process_substitution] = STATE(1041), + [aux_sym_case_statement_repeat1] = STATE(1453), + [sym__special_characters] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(2265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2265), + }, + [1460] = { + [sym__concat] = ACTIONS(3740), + [anon_sym_in] = ACTIONS(3742), + [anon_sym_SEMI_SEMI] = ACTIONS(3742), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_LF] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3742), + }, + [1461] = { + [sym__concat] = ACTIONS(3746), + [anon_sym_in] = ACTIONS(3748), + [anon_sym_SEMI_SEMI] = ACTIONS(3748), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3748), + [anon_sym_LF] = ACTIONS(3746), + [anon_sym_AMP] = ACTIONS(3748), + }, + [1462] = { + [sym__concat] = ACTIONS(3831), + [anon_sym_in] = ACTIONS(3833), + [anon_sym_SEMI_SEMI] = ACTIONS(3833), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3833), + [anon_sym_LF] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3833), + }, + [1463] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4330), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1464] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4332), + [sym_comment] = ACTIONS(54), + }, + [1465] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4334), + [sym_comment] = ACTIONS(54), + }, + [1466] = { + [anon_sym_RBRACE] = ACTIONS(4334), + [sym_comment] = ACTIONS(54), + }, + [1467] = { + [sym_concatenation] = STATE(1837), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1837), + [anon_sym_RBRACE] = ACTIONS(4336), + [anon_sym_EQ] = ACTIONS(4338), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4340), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4338), + [anon_sym_COLON_QMARK] = ACTIONS(4338), + [anon_sym_COLON_DASH] = ACTIONS(4338), + [anon_sym_PERCENT] = ACTIONS(4338), + [anon_sym_DASH] = ACTIONS(4338), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1468] = { + [sym__concat] = ACTIONS(3847), + [anon_sym_in] = ACTIONS(3849), + [anon_sym_SEMI_SEMI] = ACTIONS(3849), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3849), + [anon_sym_LF] = ACTIONS(3847), + [anon_sym_AMP] = ACTIONS(3849), + }, + [1469] = { + [sym_concatenation] = STATE(1839), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1839), + [anon_sym_RBRACE] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4346), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4344), + [anon_sym_COLON_QMARK] = ACTIONS(4344), + [anon_sym_COLON_DASH] = ACTIONS(4344), + [anon_sym_PERCENT] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1470] = { + [sym__concat] = ACTIONS(3857), + [anon_sym_in] = ACTIONS(3859), + [anon_sym_SEMI_SEMI] = ACTIONS(3859), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3859), + [anon_sym_LF] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(3859), + }, + [1471] = { + [sym_concatenation] = STATE(1841), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1841), + [anon_sym_RBRACE] = ACTIONS(4348), + [anon_sym_EQ] = ACTIONS(4350), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4350), + [anon_sym_COLON_QMARK] = ACTIONS(4350), + [anon_sym_COLON_DASH] = ACTIONS(4350), + [anon_sym_PERCENT] = ACTIONS(4350), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1472] = { + [sym__concat] = ACTIONS(3867), + [anon_sym_in] = ACTIONS(3869), + [anon_sym_SEMI_SEMI] = ACTIONS(3869), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3869), + [anon_sym_LF] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3869), + }, + [1473] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4354), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1474] = { + [sym__concat] = ACTIONS(3873), + [anon_sym_in] = ACTIONS(3875), + [anon_sym_SEMI_SEMI] = ACTIONS(3875), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3875), + [anon_sym_LF] = ACTIONS(3873), + [anon_sym_AMP] = ACTIONS(3875), + }, + [1475] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4356), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1476] = { + [anon_sym_esac] = ACTIONS(4358), + [anon_sym_PIPE] = ACTIONS(4358), + [anon_sym_RPAREN] = ACTIONS(4358), + [anon_sym_SEMI_SEMI] = ACTIONS(4358), + [anon_sym_PIPE_AMP] = ACTIONS(4358), + [anon_sym_AMP_AMP] = ACTIONS(4358), + [anon_sym_PIPE_PIPE] = ACTIONS(4358), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4358), + [anon_sym_LF] = ACTIONS(4360), + [anon_sym_AMP] = ACTIONS(4358), + }, + [1477] = { + [aux_sym_concatenation_repeat1] = STATE(1480), + [sym__concat] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1063), + [anon_sym_LF] = ACTIONS(1061), + [anon_sym_AMP] = ACTIONS(1063), + }, + [1478] = { + [aux_sym_concatenation_repeat1] = STATE(1480), + [sym__concat] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(1067), + [anon_sym_SEMI_SEMI] = ACTIONS(1067), + [anon_sym_PIPE_AMP] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1067), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1067), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + }, + [1479] = { + [anon_sym_esac] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1067), + [anon_sym_SEMI_SEMI] = ACTIONS(1067), + [anon_sym_PIPE_AMP] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1067), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1067), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + }, + [1480] = { + [aux_sym_concatenation_repeat1] = STATE(1844), + [sym__concat] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), + }, + [1481] = { + [aux_sym_concatenation_repeat1] = STATE(1481), + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(3288), + [sym_variable_name] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1636), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1636), + [anon_sym_LT_AMP] = ACTIONS(1636), + [anon_sym_GT_AMP] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [1482] = { + [sym_file_redirect] = STATE(1476), + [sym_file_descriptor] = ACTIONS(2346), + [anon_sym_PIPE] = ACTIONS(3484), + [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_LT] = ACTIONS(2348), + [anon_sym_GT] = ACTIONS(2348), + [anon_sym_GT_GT] = ACTIONS(2348), + [anon_sym_AMP_GT] = ACTIONS(2348), + [anon_sym_AMP_GT_GT] = ACTIONS(2348), + [anon_sym_LT_AMP] = ACTIONS(2348), + [anon_sym_GT_AMP] = ACTIONS(2348), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_LF] = ACTIONS(3486), + [anon_sym_AMP] = ACTIONS(3484), + }, + [1483] = { + [sym_concatenation] = STATE(1479), + [sym_string] = STATE(1846), + [sym_simple_expansion] = STATE(1846), + [sym_string_expansion] = STATE(1846), + [sym_expansion] = STATE(1846), + [sym_command_substitution] = STATE(1846), + [sym_process_substitution] = STATE(1846), + [sym__special_characters] = ACTIONS(4362), + [anon_sym_DQUOTE] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(178), + [sym_raw_string] = ACTIONS(4364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1517), + [anon_sym_LT_LPAREN] = ACTIONS(1519), + [anon_sym_GT_LPAREN] = ACTIONS(1519), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4364), + }, + [1484] = { + [aux_sym_concatenation_repeat1] = STATE(1847), + [sym__concat] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(660), + [anon_sym_RPAREN] = ACTIONS(660), + [anon_sym_SEMI_SEMI] = ACTIONS(660), + [anon_sym_PIPE_AMP] = ACTIONS(660), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(660), + [anon_sym_LF] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(660), + }, + [1485] = { + [aux_sym_concatenation_repeat1] = STATE(1847), + [sym__concat] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(674), + [anon_sym_SEMI_SEMI] = ACTIONS(674), + [anon_sym_PIPE_AMP] = ACTIONS(674), + [anon_sym_AMP_AMP] = ACTIONS(674), + [anon_sym_PIPE_PIPE] = ACTIONS(674), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(674), + [anon_sym_LF] = ACTIONS(672), + [anon_sym_AMP] = ACTIONS(674), + }, + [1486] = { + [aux_sym_concatenation_repeat1] = STATE(1486), + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(1638), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1636), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1636), + [anon_sym_LT_AMP] = ACTIONS(1636), + [anon_sym_GT_AMP] = ACTIONS(1636), + [anon_sym_LT_LT] = ACTIONS(1636), + [anon_sym_LT_LT_DASH] = ACTIONS(1636), + [anon_sym_LT_LT_LT] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [1487] = { + [sym__concat] = ACTIONS(3740), + [anon_sym_EQ_TILDE] = ACTIONS(3742), + [anon_sym_EQ_EQ] = ACTIONS(3742), + [anon_sym_RBRACK] = ACTIONS(3740), + [sym__special_characters] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3742), + [sym_raw_string] = ACTIONS(3740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3740), + [anon_sym_BQUOTE] = ACTIONS(3740), + [anon_sym_LT_LPAREN] = ACTIONS(3740), + [anon_sym_GT_LPAREN] = ACTIONS(3740), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3742), + }, + [1488] = { + [sym__concat] = ACTIONS(3746), + [anon_sym_EQ_TILDE] = ACTIONS(3748), + [anon_sym_EQ_EQ] = ACTIONS(3748), + [anon_sym_RBRACK] = ACTIONS(3746), + [sym__special_characters] = ACTIONS(3748), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_DOLLAR] = ACTIONS(3748), + [sym_raw_string] = ACTIONS(3746), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3746), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3746), + [anon_sym_BQUOTE] = ACTIONS(3746), + [anon_sym_LT_LPAREN] = ACTIONS(3746), + [anon_sym_GT_LPAREN] = ACTIONS(3746), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3748), + }, + [1489] = { + [sym__concat] = ACTIONS(3831), + [anon_sym_EQ_TILDE] = ACTIONS(3833), + [anon_sym_EQ_EQ] = ACTIONS(3833), + [anon_sym_RBRACK] = ACTIONS(3831), + [sym__special_characters] = ACTIONS(3833), + [anon_sym_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3833), + [sym_raw_string] = ACTIONS(3831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3831), + [anon_sym_BQUOTE] = ACTIONS(3831), + [anon_sym_LT_LPAREN] = ACTIONS(3831), + [anon_sym_GT_LPAREN] = ACTIONS(3831), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3833), + }, + [1490] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4366), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1491] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4368), + [sym_comment] = ACTIONS(54), + }, + [1492] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4370), + [sym_comment] = ACTIONS(54), + }, + [1493] = { + [anon_sym_RBRACE] = ACTIONS(4370), + [sym_comment] = ACTIONS(54), + }, + [1494] = { + [sym_concatenation] = STATE(1852), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1852), + [anon_sym_RBRACE] = ACTIONS(4372), + [anon_sym_EQ] = ACTIONS(4374), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4376), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4374), + [anon_sym_COLON_QMARK] = ACTIONS(4374), + [anon_sym_COLON_DASH] = ACTIONS(4374), + [anon_sym_PERCENT] = ACTIONS(4374), + [anon_sym_DASH] = ACTIONS(4374), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1495] = { + [sym__concat] = ACTIONS(3847), + [anon_sym_EQ_TILDE] = ACTIONS(3849), + [anon_sym_EQ_EQ] = ACTIONS(3849), + [anon_sym_RBRACK] = ACTIONS(3847), + [sym__special_characters] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_DOLLAR] = ACTIONS(3849), + [sym_raw_string] = ACTIONS(3847), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3847), + [anon_sym_BQUOTE] = ACTIONS(3847), + [anon_sym_LT_LPAREN] = ACTIONS(3847), + [anon_sym_GT_LPAREN] = ACTIONS(3847), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3849), + }, + [1496] = { + [sym_concatenation] = STATE(1854), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1854), + [anon_sym_RBRACE] = ACTIONS(4378), + [anon_sym_EQ] = ACTIONS(4380), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1497] = { + [sym__concat] = ACTIONS(3857), + [anon_sym_EQ_TILDE] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_RBRACK] = ACTIONS(3857), + [sym__special_characters] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3857), + [anon_sym_DOLLAR] = ACTIONS(3859), + [sym_raw_string] = ACTIONS(3857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3857), + [anon_sym_BQUOTE] = ACTIONS(3857), + [anon_sym_LT_LPAREN] = ACTIONS(3857), + [anon_sym_GT_LPAREN] = ACTIONS(3857), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3859), + }, + [1498] = { + [sym_concatenation] = STATE(1856), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1856), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_EQ] = ACTIONS(4386), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4388), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1499] = { + [sym__concat] = ACTIONS(3867), + [anon_sym_EQ_TILDE] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_RBRACK] = ACTIONS(3867), + [sym__special_characters] = ACTIONS(3869), + [anon_sym_DQUOTE] = ACTIONS(3867), + [anon_sym_DOLLAR] = ACTIONS(3869), + [sym_raw_string] = ACTIONS(3867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3867), + [anon_sym_BQUOTE] = ACTIONS(3867), + [anon_sym_LT_LPAREN] = ACTIONS(3867), + [anon_sym_GT_LPAREN] = ACTIONS(3867), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3869), + }, + [1500] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1501] = { + [sym__concat] = ACTIONS(3873), + [anon_sym_EQ_TILDE] = ACTIONS(3875), + [anon_sym_EQ_EQ] = ACTIONS(3875), + [anon_sym_RBRACK] = ACTIONS(3873), + [sym__special_characters] = ACTIONS(3875), + [anon_sym_DQUOTE] = ACTIONS(3873), + [anon_sym_DOLLAR] = ACTIONS(3875), + [sym_raw_string] = ACTIONS(3873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3873), + [anon_sym_BQUOTE] = ACTIONS(3873), + [anon_sym_LT_LPAREN] = ACTIONS(3873), + [anon_sym_GT_LPAREN] = ACTIONS(3873), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3875), + }, + [1502] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1503] = { + [sym__concat] = ACTIONS(3740), + [anon_sym_PIPE] = ACTIONS(3740), + [anon_sym_RPAREN] = ACTIONS(3740), + [anon_sym_EQ_TILDE] = ACTIONS(3742), + [anon_sym_EQ_EQ] = ACTIONS(3742), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3740), + [sym__special_characters] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3742), + [sym_raw_string] = ACTIONS(3740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3740), + [anon_sym_BQUOTE] = ACTIONS(3740), + [anon_sym_LT_LPAREN] = ACTIONS(3740), + [anon_sym_GT_LPAREN] = ACTIONS(3740), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3742), + }, + [1504] = { + [sym__concat] = ACTIONS(3746), + [anon_sym_PIPE] = ACTIONS(3746), + [anon_sym_RPAREN] = ACTIONS(3746), + [anon_sym_EQ_TILDE] = ACTIONS(3748), + [anon_sym_EQ_EQ] = ACTIONS(3748), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3746), + [sym__special_characters] = ACTIONS(3748), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_DOLLAR] = ACTIONS(3748), + [sym_raw_string] = ACTIONS(3746), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3746), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3746), + [anon_sym_BQUOTE] = ACTIONS(3746), + [anon_sym_LT_LPAREN] = ACTIONS(3746), + [anon_sym_GT_LPAREN] = ACTIONS(3746), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3748), + }, + [1505] = { + [sym__concat] = ACTIONS(3831), + [anon_sym_PIPE] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(3831), + [anon_sym_EQ_TILDE] = ACTIONS(3833), + [anon_sym_EQ_EQ] = ACTIONS(3833), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3831), + [sym__special_characters] = ACTIONS(3833), + [anon_sym_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3833), + [sym_raw_string] = ACTIONS(3831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3831), + [anon_sym_BQUOTE] = ACTIONS(3831), + [anon_sym_LT_LPAREN] = ACTIONS(3831), + [anon_sym_GT_LPAREN] = ACTIONS(3831), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3833), + }, + [1506] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1507] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4396), + [sym_comment] = ACTIONS(54), + }, + [1508] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4398), + [sym_comment] = ACTIONS(54), + }, + [1509] = { + [anon_sym_RBRACE] = ACTIONS(4398), + [sym_comment] = ACTIONS(54), + }, + [1510] = { + [sym_concatenation] = STATE(1863), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1863), + [anon_sym_RBRACE] = ACTIONS(4400), + [anon_sym_EQ] = ACTIONS(4402), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1511] = { + [sym__concat] = ACTIONS(3847), + [anon_sym_PIPE] = ACTIONS(3847), + [anon_sym_RPAREN] = ACTIONS(3847), + [anon_sym_EQ_TILDE] = ACTIONS(3849), + [anon_sym_EQ_EQ] = ACTIONS(3849), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3847), + [sym__special_characters] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_DOLLAR] = ACTIONS(3849), + [sym_raw_string] = ACTIONS(3847), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3847), + [anon_sym_BQUOTE] = ACTIONS(3847), + [anon_sym_LT_LPAREN] = ACTIONS(3847), + [anon_sym_GT_LPAREN] = ACTIONS(3847), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3849), + }, + [1512] = { + [sym_concatenation] = STATE(1865), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1865), + [anon_sym_RBRACE] = ACTIONS(4406), + [anon_sym_EQ] = ACTIONS(4408), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4408), + [anon_sym_COLON_QMARK] = ACTIONS(4408), + [anon_sym_COLON_DASH] = ACTIONS(4408), + [anon_sym_PERCENT] = ACTIONS(4408), + [anon_sym_DASH] = ACTIONS(4408), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1513] = { + [sym__concat] = ACTIONS(3857), + [anon_sym_PIPE] = ACTIONS(3857), + [anon_sym_RPAREN] = ACTIONS(3857), + [anon_sym_EQ_TILDE] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3857), + [sym__special_characters] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3857), + [anon_sym_DOLLAR] = ACTIONS(3859), + [sym_raw_string] = ACTIONS(3857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3857), + [anon_sym_BQUOTE] = ACTIONS(3857), + [anon_sym_LT_LPAREN] = ACTIONS(3857), + [anon_sym_GT_LPAREN] = ACTIONS(3857), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3859), + }, + [1514] = { + [sym_concatenation] = STATE(1867), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1867), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_EQ] = ACTIONS(4414), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4414), + [anon_sym_COLON_QMARK] = ACTIONS(4414), + [anon_sym_COLON_DASH] = ACTIONS(4414), + [anon_sym_PERCENT] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4414), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1515] = { + [sym__concat] = ACTIONS(3867), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_RPAREN] = ACTIONS(3867), + [anon_sym_EQ_TILDE] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3867), + [sym__special_characters] = ACTIONS(3869), + [anon_sym_DQUOTE] = ACTIONS(3867), + [anon_sym_DOLLAR] = ACTIONS(3869), + [sym_raw_string] = ACTIONS(3867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3867), + [anon_sym_BQUOTE] = ACTIONS(3867), + [anon_sym_LT_LPAREN] = ACTIONS(3867), + [anon_sym_GT_LPAREN] = ACTIONS(3867), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3869), + }, + [1516] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1517] = { + [sym__concat] = ACTIONS(3873), + [anon_sym_PIPE] = ACTIONS(3873), + [anon_sym_RPAREN] = ACTIONS(3873), + [anon_sym_EQ_TILDE] = ACTIONS(3875), + [anon_sym_EQ_EQ] = ACTIONS(3875), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3873), + [sym__special_characters] = ACTIONS(3875), + [anon_sym_DQUOTE] = ACTIONS(3873), + [anon_sym_DOLLAR] = ACTIONS(3875), + [sym_raw_string] = ACTIONS(3873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3873), + [anon_sym_BQUOTE] = ACTIONS(3873), + [anon_sym_LT_LPAREN] = ACTIONS(3873), + [anon_sym_GT_LPAREN] = ACTIONS(3873), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3875), + }, + [1518] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1519] = { + [sym_variable_name] = ACTIONS(3258), + [anon_sym_PIPE] = ACTIONS(3260), + [anon_sym_RPAREN] = ACTIONS(3260), + [anon_sym_SEMI_SEMI] = ACTIONS(3260), + [anon_sym_PIPE_AMP] = ACTIONS(3260), + [anon_sym_AMP_AMP] = ACTIONS(3260), + [anon_sym_PIPE_PIPE] = ACTIONS(3260), + [sym__special_characters] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [anon_sym_DOLLAR] = ACTIONS(3260), + [sym_raw_string] = ACTIONS(3260), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3260), + [anon_sym_BQUOTE] = ACTIONS(3260), + [anon_sym_LT_LPAREN] = ACTIONS(3260), + [anon_sym_GT_LPAREN] = ACTIONS(3260), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3260), + [sym_word] = ACTIONS(3260), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_LF] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3260), + }, + [1520] = { + [sym__concat] = ACTIONS(3740), + [sym_variable_name] = ACTIONS(3740), + [anon_sym_PIPE] = ACTIONS(3742), + [anon_sym_RPAREN] = ACTIONS(3742), + [anon_sym_SEMI_SEMI] = ACTIONS(3742), + [anon_sym_PIPE_AMP] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [sym__special_characters] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_DOLLAR] = ACTIONS(3742), + [sym_raw_string] = ACTIONS(3742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3742), + [anon_sym_BQUOTE] = ACTIONS(3742), + [anon_sym_LT_LPAREN] = ACTIONS(3742), + [anon_sym_GT_LPAREN] = ACTIONS(3742), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3742), + [sym_word] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_LF] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3742), + }, + [1521] = { + [sym__concat] = ACTIONS(3746), + [sym_variable_name] = ACTIONS(3746), + [anon_sym_PIPE] = ACTIONS(3748), + [anon_sym_RPAREN] = ACTIONS(3748), + [anon_sym_SEMI_SEMI] = ACTIONS(3748), + [anon_sym_PIPE_AMP] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_PIPE_PIPE] = ACTIONS(3748), + [sym__special_characters] = ACTIONS(3748), + [anon_sym_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3748), + [sym_raw_string] = ACTIONS(3748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3748), + [anon_sym_BQUOTE] = ACTIONS(3748), + [anon_sym_LT_LPAREN] = ACTIONS(3748), + [anon_sym_GT_LPAREN] = ACTIONS(3748), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3748), + [sym_word] = ACTIONS(3748), + [anon_sym_SEMI] = ACTIONS(3748), + [anon_sym_LF] = ACTIONS(3746), + [anon_sym_AMP] = ACTIONS(3748), + }, + [1522] = { + [sym__concat] = ACTIONS(3831), + [sym_variable_name] = ACTIONS(3831), + [anon_sym_PIPE] = ACTIONS(3833), + [anon_sym_RPAREN] = ACTIONS(3833), + [anon_sym_SEMI_SEMI] = ACTIONS(3833), + [anon_sym_PIPE_AMP] = ACTIONS(3833), + [anon_sym_AMP_AMP] = ACTIONS(3833), + [anon_sym_PIPE_PIPE] = ACTIONS(3833), + [sym__special_characters] = ACTIONS(3833), + [anon_sym_DQUOTE] = ACTIONS(3833), + [anon_sym_DOLLAR] = ACTIONS(3833), + [sym_raw_string] = ACTIONS(3833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3833), + [anon_sym_BQUOTE] = ACTIONS(3833), + [anon_sym_LT_LPAREN] = ACTIONS(3833), + [anon_sym_GT_LPAREN] = ACTIONS(3833), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3833), + [sym_word] = ACTIONS(3833), + [anon_sym_SEMI] = ACTIONS(3833), + [anon_sym_LF] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3833), + }, + [1523] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4422), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1524] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4424), + [sym_comment] = ACTIONS(54), + }, + [1525] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4426), + [sym_comment] = ACTIONS(54), + }, + [1526] = { + [anon_sym_RBRACE] = ACTIONS(4426), + [sym_comment] = ACTIONS(54), + }, + [1527] = { + [sym_concatenation] = STATE(1874), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1874), + [anon_sym_RBRACE] = ACTIONS(4428), + [anon_sym_EQ] = ACTIONS(4430), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4432), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4430), + [anon_sym_COLON_QMARK] = ACTIONS(4430), + [anon_sym_COLON_DASH] = ACTIONS(4430), + [anon_sym_PERCENT] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1528] = { + [sym__concat] = ACTIONS(3847), + [sym_variable_name] = ACTIONS(3847), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_RPAREN] = ACTIONS(3849), + [anon_sym_SEMI_SEMI] = ACTIONS(3849), + [anon_sym_PIPE_AMP] = ACTIONS(3849), + [anon_sym_AMP_AMP] = ACTIONS(3849), + [anon_sym_PIPE_PIPE] = ACTIONS(3849), + [sym__special_characters] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3849), + [sym_raw_string] = ACTIONS(3849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3849), + [anon_sym_BQUOTE] = ACTIONS(3849), + [anon_sym_LT_LPAREN] = ACTIONS(3849), + [anon_sym_GT_LPAREN] = ACTIONS(3849), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3849), + [sym_word] = ACTIONS(3849), + [anon_sym_SEMI] = ACTIONS(3849), + [anon_sym_LF] = ACTIONS(3847), + [anon_sym_AMP] = ACTIONS(3849), + }, + [1529] = { + [sym_concatenation] = STATE(1876), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1876), + [anon_sym_RBRACE] = ACTIONS(4434), + [anon_sym_EQ] = ACTIONS(4436), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4436), + [anon_sym_COLON_QMARK] = ACTIONS(4436), + [anon_sym_COLON_DASH] = ACTIONS(4436), + [anon_sym_PERCENT] = ACTIONS(4436), + [anon_sym_DASH] = ACTIONS(4436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1530] = { + [sym__concat] = ACTIONS(3857), + [sym_variable_name] = ACTIONS(3857), + [anon_sym_PIPE] = ACTIONS(3859), + [anon_sym_RPAREN] = ACTIONS(3859), + [anon_sym_SEMI_SEMI] = ACTIONS(3859), + [anon_sym_PIPE_AMP] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [sym__special_characters] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_DOLLAR] = ACTIONS(3859), + [sym_raw_string] = ACTIONS(3859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3859), + [anon_sym_BQUOTE] = ACTIONS(3859), + [anon_sym_LT_LPAREN] = ACTIONS(3859), + [anon_sym_GT_LPAREN] = ACTIONS(3859), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3859), + [sym_word] = ACTIONS(3859), + [anon_sym_SEMI] = ACTIONS(3859), + [anon_sym_LF] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(3859), + }, + [1531] = { + [sym_concatenation] = STATE(1878), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1878), + [anon_sym_RBRACE] = ACTIONS(4440), + [anon_sym_EQ] = ACTIONS(4442), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4442), + [anon_sym_COLON_QMARK] = ACTIONS(4442), + [anon_sym_COLON_DASH] = ACTIONS(4442), + [anon_sym_PERCENT] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1532] = { + [sym__concat] = ACTIONS(3867), + [sym_variable_name] = ACTIONS(3867), + [anon_sym_PIPE] = ACTIONS(3869), + [anon_sym_RPAREN] = ACTIONS(3869), + [anon_sym_SEMI_SEMI] = ACTIONS(3869), + [anon_sym_PIPE_AMP] = ACTIONS(3869), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [sym__special_characters] = ACTIONS(3869), + [anon_sym_DQUOTE] = ACTIONS(3869), + [anon_sym_DOLLAR] = ACTIONS(3869), + [sym_raw_string] = ACTIONS(3869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3869), + [anon_sym_BQUOTE] = ACTIONS(3869), + [anon_sym_LT_LPAREN] = ACTIONS(3869), + [anon_sym_GT_LPAREN] = ACTIONS(3869), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3869), + [sym_word] = ACTIONS(3869), + [anon_sym_SEMI] = ACTIONS(3869), + [anon_sym_LF] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3869), + }, + [1533] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4446), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1534] = { + [sym__concat] = ACTIONS(3873), + [sym_variable_name] = ACTIONS(3873), + [anon_sym_PIPE] = ACTIONS(3875), + [anon_sym_RPAREN] = ACTIONS(3875), + [anon_sym_SEMI_SEMI] = ACTIONS(3875), + [anon_sym_PIPE_AMP] = ACTIONS(3875), + [anon_sym_AMP_AMP] = ACTIONS(3875), + [anon_sym_PIPE_PIPE] = ACTIONS(3875), + [sym__special_characters] = ACTIONS(3875), + [anon_sym_DQUOTE] = ACTIONS(3875), + [anon_sym_DOLLAR] = ACTIONS(3875), + [sym_raw_string] = ACTIONS(3875), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3875), + [anon_sym_BQUOTE] = ACTIONS(3875), + [anon_sym_LT_LPAREN] = ACTIONS(3875), + [anon_sym_GT_LPAREN] = ACTIONS(3875), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3875), + [sym_word] = ACTIONS(3875), + [anon_sym_SEMI] = ACTIONS(3875), + [anon_sym_LF] = ACTIONS(3873), + [anon_sym_AMP] = ACTIONS(3875), + }, + [1535] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4448), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1536] = { + [sym__concat] = ACTIONS(3740), + [anon_sym_PIPE] = ACTIONS(3742), + [anon_sym_RPAREN] = ACTIONS(3742), + [anon_sym_SEMI_SEMI] = ACTIONS(3742), + [anon_sym_PIPE_AMP] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [sym__special_characters] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_DOLLAR] = ACTIONS(3742), + [sym_raw_string] = ACTIONS(3742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3742), + [anon_sym_BQUOTE] = ACTIONS(3742), + [anon_sym_LT_LPAREN] = ACTIONS(3742), + [anon_sym_GT_LPAREN] = ACTIONS(3742), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3742), + [sym_word] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_LF] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3742), + }, + [1537] = { + [sym__concat] = ACTIONS(3746), + [anon_sym_PIPE] = ACTIONS(3748), + [anon_sym_RPAREN] = ACTIONS(3748), + [anon_sym_SEMI_SEMI] = ACTIONS(3748), + [anon_sym_PIPE_AMP] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_PIPE_PIPE] = ACTIONS(3748), + [sym__special_characters] = ACTIONS(3748), + [anon_sym_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3748), + [sym_raw_string] = ACTIONS(3748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3748), + [anon_sym_BQUOTE] = ACTIONS(3748), + [anon_sym_LT_LPAREN] = ACTIONS(3748), + [anon_sym_GT_LPAREN] = ACTIONS(3748), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3748), + [sym_word] = ACTIONS(3748), + [anon_sym_SEMI] = ACTIONS(3748), + [anon_sym_LF] = ACTIONS(3746), + [anon_sym_AMP] = ACTIONS(3748), + }, + [1538] = { + [sym__concat] = ACTIONS(3831), + [anon_sym_PIPE] = ACTIONS(3833), + [anon_sym_RPAREN] = ACTIONS(3833), + [anon_sym_SEMI_SEMI] = ACTIONS(3833), + [anon_sym_PIPE_AMP] = ACTIONS(3833), + [anon_sym_AMP_AMP] = ACTIONS(3833), + [anon_sym_PIPE_PIPE] = ACTIONS(3833), + [sym__special_characters] = ACTIONS(3833), + [anon_sym_DQUOTE] = ACTIONS(3833), + [anon_sym_DOLLAR] = ACTIONS(3833), + [sym_raw_string] = ACTIONS(3833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3833), + [anon_sym_BQUOTE] = ACTIONS(3833), + [anon_sym_LT_LPAREN] = ACTIONS(3833), + [anon_sym_GT_LPAREN] = ACTIONS(3833), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3833), + [sym_word] = ACTIONS(3833), + [anon_sym_SEMI] = ACTIONS(3833), + [anon_sym_LF] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3833), + }, + [1539] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4450), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1540] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4452), + [sym_comment] = ACTIONS(54), + }, + [1541] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4454), + [sym_comment] = ACTIONS(54), + }, + [1542] = { + [anon_sym_RBRACE] = ACTIONS(4454), + [sym_comment] = ACTIONS(54), + }, + [1543] = { + [sym_concatenation] = STATE(1885), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1885), + [anon_sym_RBRACE] = ACTIONS(4456), + [anon_sym_EQ] = ACTIONS(4458), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4460), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4458), + [anon_sym_COLON_QMARK] = ACTIONS(4458), + [anon_sym_COLON_DASH] = ACTIONS(4458), + [anon_sym_PERCENT] = ACTIONS(4458), + [anon_sym_DASH] = ACTIONS(4458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1544] = { + [sym__concat] = ACTIONS(3847), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_RPAREN] = ACTIONS(3849), + [anon_sym_SEMI_SEMI] = ACTIONS(3849), + [anon_sym_PIPE_AMP] = ACTIONS(3849), + [anon_sym_AMP_AMP] = ACTIONS(3849), + [anon_sym_PIPE_PIPE] = ACTIONS(3849), + [sym__special_characters] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3849), + [sym_raw_string] = ACTIONS(3849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3849), + [anon_sym_BQUOTE] = ACTIONS(3849), + [anon_sym_LT_LPAREN] = ACTIONS(3849), + [anon_sym_GT_LPAREN] = ACTIONS(3849), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3849), + [sym_word] = ACTIONS(3849), + [anon_sym_SEMI] = ACTIONS(3849), + [anon_sym_LF] = ACTIONS(3847), + [anon_sym_AMP] = ACTIONS(3849), + }, + [1545] = { + [sym_concatenation] = STATE(1887), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1887), + [anon_sym_RBRACE] = ACTIONS(4462), + [anon_sym_EQ] = ACTIONS(4464), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4464), + [anon_sym_COLON_QMARK] = ACTIONS(4464), + [anon_sym_COLON_DASH] = ACTIONS(4464), + [anon_sym_PERCENT] = ACTIONS(4464), + [anon_sym_DASH] = ACTIONS(4464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1546] = { + [sym__concat] = ACTIONS(3857), + [anon_sym_PIPE] = ACTIONS(3859), + [anon_sym_RPAREN] = ACTIONS(3859), + [anon_sym_SEMI_SEMI] = ACTIONS(3859), + [anon_sym_PIPE_AMP] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [sym__special_characters] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_DOLLAR] = ACTIONS(3859), + [sym_raw_string] = ACTIONS(3859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3859), + [anon_sym_BQUOTE] = ACTIONS(3859), + [anon_sym_LT_LPAREN] = ACTIONS(3859), + [anon_sym_GT_LPAREN] = ACTIONS(3859), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3859), + [sym_word] = ACTIONS(3859), + [anon_sym_SEMI] = ACTIONS(3859), + [anon_sym_LF] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(3859), + }, + [1547] = { + [sym_concatenation] = STATE(1889), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1889), + [anon_sym_RBRACE] = ACTIONS(4468), + [anon_sym_EQ] = ACTIONS(4470), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4472), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4470), + [anon_sym_COLON_QMARK] = ACTIONS(4470), + [anon_sym_COLON_DASH] = ACTIONS(4470), + [anon_sym_PERCENT] = ACTIONS(4470), + [anon_sym_DASH] = ACTIONS(4470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1548] = { + [sym__concat] = ACTIONS(3867), + [anon_sym_PIPE] = ACTIONS(3869), + [anon_sym_RPAREN] = ACTIONS(3869), + [anon_sym_SEMI_SEMI] = ACTIONS(3869), + [anon_sym_PIPE_AMP] = ACTIONS(3869), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [sym__special_characters] = ACTIONS(3869), + [anon_sym_DQUOTE] = ACTIONS(3869), + [anon_sym_DOLLAR] = ACTIONS(3869), + [sym_raw_string] = ACTIONS(3869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3869), + [anon_sym_BQUOTE] = ACTIONS(3869), + [anon_sym_LT_LPAREN] = ACTIONS(3869), + [anon_sym_GT_LPAREN] = ACTIONS(3869), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3869), + [sym_word] = ACTIONS(3869), + [anon_sym_SEMI] = ACTIONS(3869), + [anon_sym_LF] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3869), + }, + [1549] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1550] = { + [sym__concat] = ACTIONS(3873), + [anon_sym_PIPE] = ACTIONS(3875), + [anon_sym_RPAREN] = ACTIONS(3875), + [anon_sym_SEMI_SEMI] = ACTIONS(3875), + [anon_sym_PIPE_AMP] = ACTIONS(3875), + [anon_sym_AMP_AMP] = ACTIONS(3875), + [anon_sym_PIPE_PIPE] = ACTIONS(3875), + [sym__special_characters] = ACTIONS(3875), + [anon_sym_DQUOTE] = ACTIONS(3875), + [anon_sym_DOLLAR] = ACTIONS(3875), + [sym_raw_string] = ACTIONS(3875), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3875), + [anon_sym_BQUOTE] = ACTIONS(3875), + [anon_sym_LT_LPAREN] = ACTIONS(3875), + [anon_sym_GT_LPAREN] = ACTIONS(3875), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3875), + [sym_word] = ACTIONS(3875), + [anon_sym_SEMI] = ACTIONS(3875), + [anon_sym_LF] = ACTIONS(3873), + [anon_sym_AMP] = ACTIONS(3875), + }, + [1551] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1552] = { + [sym_file_descriptor] = ACTIONS(3740), + [sym__concat] = ACTIONS(3740), + [sym_variable_name] = ACTIONS(3740), + [anon_sym_PIPE] = ACTIONS(3742), + [anon_sym_RPAREN] = ACTIONS(3740), + [anon_sym_PIPE_AMP] = ACTIONS(3740), + [anon_sym_AMP_AMP] = ACTIONS(3740), + [anon_sym_PIPE_PIPE] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3742), + [anon_sym_GT] = ACTIONS(3742), + [anon_sym_GT_GT] = ACTIONS(3740), + [anon_sym_AMP_GT] = ACTIONS(3742), + [anon_sym_AMP_GT_GT] = ACTIONS(3740), + [anon_sym_LT_AMP] = ACTIONS(3740), + [anon_sym_GT_AMP] = ACTIONS(3740), + [sym__special_characters] = ACTIONS(3740), + [anon_sym_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3742), + [sym_raw_string] = ACTIONS(3740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3740), + [anon_sym_BQUOTE] = ACTIONS(3740), + [anon_sym_LT_LPAREN] = ACTIONS(3740), + [anon_sym_GT_LPAREN] = ACTIONS(3740), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3740), + }, + [1553] = { + [sym_file_descriptor] = ACTIONS(3746), + [sym__concat] = ACTIONS(3746), + [sym_variable_name] = ACTIONS(3746), + [anon_sym_PIPE] = ACTIONS(3748), + [anon_sym_RPAREN] = ACTIONS(3746), + [anon_sym_PIPE_AMP] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [anon_sym_LT] = ACTIONS(3748), + [anon_sym_GT] = ACTIONS(3748), + [anon_sym_GT_GT] = ACTIONS(3746), + [anon_sym_AMP_GT] = ACTIONS(3748), + [anon_sym_AMP_GT_GT] = ACTIONS(3746), + [anon_sym_LT_AMP] = ACTIONS(3746), + [anon_sym_GT_AMP] = ACTIONS(3746), + [sym__special_characters] = ACTIONS(3746), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_DOLLAR] = ACTIONS(3748), + [sym_raw_string] = ACTIONS(3746), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3746), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3746), + [anon_sym_BQUOTE] = ACTIONS(3746), + [anon_sym_LT_LPAREN] = ACTIONS(3746), + [anon_sym_GT_LPAREN] = ACTIONS(3746), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3746), + }, + [1554] = { + [sym_file_descriptor] = ACTIONS(3831), + [sym__concat] = ACTIONS(3831), + [sym_variable_name] = ACTIONS(3831), + [anon_sym_PIPE] = ACTIONS(3833), + [anon_sym_RPAREN] = ACTIONS(3831), + [anon_sym_PIPE_AMP] = ACTIONS(3831), + [anon_sym_AMP_AMP] = ACTIONS(3831), + [anon_sym_PIPE_PIPE] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3833), + [anon_sym_GT] = ACTIONS(3833), + [anon_sym_GT_GT] = ACTIONS(3831), + [anon_sym_AMP_GT] = ACTIONS(3833), + [anon_sym_AMP_GT_GT] = ACTIONS(3831), + [anon_sym_LT_AMP] = ACTIONS(3831), + [anon_sym_GT_AMP] = ACTIONS(3831), + [sym__special_characters] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3833), + [sym_raw_string] = ACTIONS(3831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3831), + [anon_sym_BQUOTE] = ACTIONS(3831), + [anon_sym_LT_LPAREN] = ACTIONS(3831), + [anon_sym_GT_LPAREN] = ACTIONS(3831), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3831), + }, + [1555] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1556] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4480), + [sym_comment] = ACTIONS(54), + }, + [1557] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4482), + [sym_comment] = ACTIONS(54), + }, + [1558] = { + [anon_sym_RBRACE] = ACTIONS(4482), + [sym_comment] = ACTIONS(54), + }, + [1559] = { + [sym_concatenation] = STATE(1896), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1896), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_EQ] = ACTIONS(4486), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4488), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4486), + [anon_sym_COLON_QMARK] = ACTIONS(4486), + [anon_sym_COLON_DASH] = ACTIONS(4486), + [anon_sym_PERCENT] = ACTIONS(4486), + [anon_sym_DASH] = ACTIONS(4486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1560] = { + [sym_file_descriptor] = ACTIONS(3847), + [sym__concat] = ACTIONS(3847), + [sym_variable_name] = ACTIONS(3847), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_RPAREN] = ACTIONS(3847), + [anon_sym_PIPE_AMP] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3847), + [anon_sym_PIPE_PIPE] = ACTIONS(3847), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_GT] = ACTIONS(3849), + [anon_sym_GT_GT] = ACTIONS(3847), + [anon_sym_AMP_GT] = ACTIONS(3849), + [anon_sym_AMP_GT_GT] = ACTIONS(3847), + [anon_sym_LT_AMP] = ACTIONS(3847), + [anon_sym_GT_AMP] = ACTIONS(3847), + [sym__special_characters] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_DOLLAR] = ACTIONS(3849), + [sym_raw_string] = ACTIONS(3847), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3847), + [anon_sym_BQUOTE] = ACTIONS(3847), + [anon_sym_LT_LPAREN] = ACTIONS(3847), + [anon_sym_GT_LPAREN] = ACTIONS(3847), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3847), + }, + [1561] = { + [sym_concatenation] = STATE(1898), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1898), + [anon_sym_RBRACE] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4492), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4494), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4492), + [anon_sym_COLON_QMARK] = ACTIONS(4492), + [anon_sym_COLON_DASH] = ACTIONS(4492), + [anon_sym_PERCENT] = ACTIONS(4492), + [anon_sym_DASH] = ACTIONS(4492), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1562] = { + [sym_file_descriptor] = ACTIONS(3857), + [sym__concat] = ACTIONS(3857), + [sym_variable_name] = ACTIONS(3857), + [anon_sym_PIPE] = ACTIONS(3859), + [anon_sym_RPAREN] = ACTIONS(3857), + [anon_sym_PIPE_AMP] = ACTIONS(3857), + [anon_sym_AMP_AMP] = ACTIONS(3857), + [anon_sym_PIPE_PIPE] = ACTIONS(3857), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_GT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3857), + [anon_sym_AMP_GT] = ACTIONS(3859), + [anon_sym_AMP_GT_GT] = ACTIONS(3857), + [anon_sym_LT_AMP] = ACTIONS(3857), + [anon_sym_GT_AMP] = ACTIONS(3857), + [sym__special_characters] = ACTIONS(3857), + [anon_sym_DQUOTE] = ACTIONS(3857), + [anon_sym_DOLLAR] = ACTIONS(3859), + [sym_raw_string] = ACTIONS(3857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3857), + [anon_sym_BQUOTE] = ACTIONS(3857), + [anon_sym_LT_LPAREN] = ACTIONS(3857), + [anon_sym_GT_LPAREN] = ACTIONS(3857), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3857), + }, + [1563] = { + [sym_concatenation] = STATE(1900), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1900), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_EQ] = ACTIONS(4498), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4500), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4498), + [anon_sym_COLON_QMARK] = ACTIONS(4498), + [anon_sym_COLON_DASH] = ACTIONS(4498), + [anon_sym_PERCENT] = ACTIONS(4498), + [anon_sym_DASH] = ACTIONS(4498), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1564] = { + [sym_file_descriptor] = ACTIONS(3867), + [sym__concat] = ACTIONS(3867), + [sym_variable_name] = ACTIONS(3867), + [anon_sym_PIPE] = ACTIONS(3869), + [anon_sym_RPAREN] = ACTIONS(3867), + [anon_sym_PIPE_AMP] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3867), + [anon_sym_PIPE_PIPE] = ACTIONS(3867), + [anon_sym_LT] = ACTIONS(3869), + [anon_sym_GT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_AMP_GT] = ACTIONS(3869), + [anon_sym_AMP_GT_GT] = ACTIONS(3867), + [anon_sym_LT_AMP] = ACTIONS(3867), + [anon_sym_GT_AMP] = ACTIONS(3867), + [sym__special_characters] = ACTIONS(3867), + [anon_sym_DQUOTE] = ACTIONS(3867), + [anon_sym_DOLLAR] = ACTIONS(3869), + [sym_raw_string] = ACTIONS(3867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3867), + [anon_sym_BQUOTE] = ACTIONS(3867), + [anon_sym_LT_LPAREN] = ACTIONS(3867), + [anon_sym_GT_LPAREN] = ACTIONS(3867), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3867), + }, + [1565] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1566] = { + [sym_file_descriptor] = ACTIONS(3873), + [sym__concat] = ACTIONS(3873), + [sym_variable_name] = ACTIONS(3873), + [anon_sym_PIPE] = ACTIONS(3875), + [anon_sym_RPAREN] = ACTIONS(3873), + [anon_sym_PIPE_AMP] = ACTIONS(3873), + [anon_sym_AMP_AMP] = ACTIONS(3873), + [anon_sym_PIPE_PIPE] = ACTIONS(3873), + [anon_sym_LT] = ACTIONS(3875), + [anon_sym_GT] = ACTIONS(3875), + [anon_sym_GT_GT] = ACTIONS(3873), + [anon_sym_AMP_GT] = ACTIONS(3875), + [anon_sym_AMP_GT_GT] = ACTIONS(3873), + [anon_sym_LT_AMP] = ACTIONS(3873), + [anon_sym_GT_AMP] = ACTIONS(3873), + [sym__special_characters] = ACTIONS(3873), + [anon_sym_DQUOTE] = ACTIONS(3873), + [anon_sym_DOLLAR] = ACTIONS(3875), + [sym_raw_string] = ACTIONS(3873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3873), + [anon_sym_BQUOTE] = ACTIONS(3873), + [anon_sym_LT_LPAREN] = ACTIONS(3873), + [anon_sym_GT_LPAREN] = ACTIONS(3873), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3873), + }, + [1567] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4504), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1568] = { + [sym__concat] = ACTIONS(3740), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_DOLLAR] = ACTIONS(3742), + [sym__string_content] = ACTIONS(3740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3742), + [anon_sym_BQUOTE] = ACTIONS(3742), + [sym_comment] = ACTIONS(166), + }, + [1569] = { + [sym__concat] = ACTIONS(3746), + [anon_sym_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3748), + [sym__string_content] = ACTIONS(3746), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3748), + [anon_sym_BQUOTE] = ACTIONS(3748), + [sym_comment] = ACTIONS(166), + }, + [1570] = { + [sym__concat] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3833), + [anon_sym_DOLLAR] = ACTIONS(3833), + [sym__string_content] = ACTIONS(3831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3833), + [anon_sym_BQUOTE] = ACTIONS(3833), + [sym_comment] = ACTIONS(166), + }, + [1571] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4506), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1572] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4508), + [sym_comment] = ACTIONS(54), + }, + [1573] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4510), + [sym_comment] = ACTIONS(54), + }, + [1574] = { + [anon_sym_RBRACE] = ACTIONS(4510), + [sym_comment] = ACTIONS(54), + }, + [1575] = { + [sym_concatenation] = STATE(1907), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1907), + [anon_sym_RBRACE] = ACTIONS(4512), + [anon_sym_EQ] = ACTIONS(4514), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4514), + [anon_sym_COLON_QMARK] = ACTIONS(4514), + [anon_sym_COLON_DASH] = ACTIONS(4514), + [anon_sym_PERCENT] = ACTIONS(4514), + [anon_sym_DASH] = ACTIONS(4514), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1576] = { + [sym__concat] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3849), + [sym__string_content] = ACTIONS(3847), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3849), + [anon_sym_BQUOTE] = ACTIONS(3849), + [sym_comment] = ACTIONS(166), + }, + [1577] = { + [sym_concatenation] = STATE(1909), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1909), + [anon_sym_RBRACE] = ACTIONS(4518), + [anon_sym_EQ] = ACTIONS(4520), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4522), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4520), + [anon_sym_COLON_QMARK] = ACTIONS(4520), + [anon_sym_COLON_DASH] = ACTIONS(4520), + [anon_sym_PERCENT] = ACTIONS(4520), + [anon_sym_DASH] = ACTIONS(4520), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1578] = { + [sym__concat] = ACTIONS(3857), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_DOLLAR] = ACTIONS(3859), + [sym__string_content] = ACTIONS(3857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3859), + [anon_sym_BQUOTE] = ACTIONS(3859), + [sym_comment] = ACTIONS(166), + }, + [1579] = { + [sym_concatenation] = STATE(1911), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1911), + [anon_sym_RBRACE] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4526), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4528), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_COLON_QMARK] = ACTIONS(4526), + [anon_sym_COLON_DASH] = ACTIONS(4526), + [anon_sym_PERCENT] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1580] = { + [sym__concat] = ACTIONS(3867), + [anon_sym_DQUOTE] = ACTIONS(3869), + [anon_sym_DOLLAR] = ACTIONS(3869), + [sym__string_content] = ACTIONS(3867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3869), + [anon_sym_BQUOTE] = ACTIONS(3869), + [sym_comment] = ACTIONS(166), + }, + [1581] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4530), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1582] = { + [sym__concat] = ACTIONS(3873), + [anon_sym_DQUOTE] = ACTIONS(3875), + [anon_sym_DOLLAR] = ACTIONS(3875), + [sym__string_content] = ACTIONS(3873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3875), + [anon_sym_BQUOTE] = ACTIONS(3875), + [sym_comment] = ACTIONS(166), + }, + [1583] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4532), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1584] = { + [sym__concat] = ACTIONS(4534), + [anon_sym_RBRACE] = ACTIONS(3210), + [anon_sym_EQ] = ACTIONS(4536), + [sym__special_characters] = ACTIONS(4536), + [anon_sym_DQUOTE] = ACTIONS(3210), + [anon_sym_DOLLAR] = ACTIONS(4536), + [sym_raw_string] = ACTIONS(3210), + [anon_sym_POUND] = ACTIONS(3210), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3210), + [aux_sym_SLASH] = ACTIONS(3210), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_COLON_QMARK] = ACTIONS(4536), + [anon_sym_COLON_DASH] = ACTIONS(4536), + [anon_sym_PERCENT] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3210), + [anon_sym_BQUOTE] = ACTIONS(3210), + [anon_sym_LT_LPAREN] = ACTIONS(3210), + [anon_sym_GT_LPAREN] = ACTIONS(3210), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4536), + }, + [1585] = { + [anon_sym_RBRACE] = ACTIONS(3210), + [anon_sym_EQ] = ACTIONS(4536), + [sym__special_characters] = ACTIONS(4536), + [anon_sym_DQUOTE] = ACTIONS(3210), + [anon_sym_DOLLAR] = ACTIONS(4536), + [sym_raw_string] = ACTIONS(3210), + [anon_sym_POUND] = ACTIONS(3210), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3210), + [aux_sym_SLASH] = ACTIONS(3210), + [anon_sym_COLON] = ACTIONS(4536), + [anon_sym_COLON_QMARK] = ACTIONS(4536), + [anon_sym_COLON_DASH] = ACTIONS(4536), + [anon_sym_PERCENT] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3210), + [anon_sym_BQUOTE] = ACTIONS(3210), + [anon_sym_LT_LPAREN] = ACTIONS(3210), + [anon_sym_GT_LPAREN] = ACTIONS(3210), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4536), + }, + [1586] = { + [sym__concat] = ACTIONS(4538), + [anon_sym_RBRACE] = ACTIONS(3214), + [anon_sym_EQ] = ACTIONS(4540), + [sym__special_characters] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(3214), + [anon_sym_DOLLAR] = ACTIONS(4540), + [sym_raw_string] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(3214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3214), + [aux_sym_SLASH] = ACTIONS(3214), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_COLON_QMARK] = ACTIONS(4540), + [anon_sym_COLON_DASH] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3214), + [anon_sym_BQUOTE] = ACTIONS(3214), + [anon_sym_LT_LPAREN] = ACTIONS(3214), + [anon_sym_GT_LPAREN] = ACTIONS(3214), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4540), + }, + [1587] = { + [anon_sym_RBRACE] = ACTIONS(3214), + [anon_sym_EQ] = ACTIONS(4540), + [sym__special_characters] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(3214), + [anon_sym_DOLLAR] = ACTIONS(4540), + [sym_raw_string] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(3214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3214), + [aux_sym_SLASH] = ACTIONS(3214), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_COLON_QMARK] = ACTIONS(4540), + [anon_sym_COLON_DASH] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3214), + [anon_sym_BQUOTE] = ACTIONS(3214), + [anon_sym_LT_LPAREN] = ACTIONS(3214), + [anon_sym_GT_LPAREN] = ACTIONS(3214), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4540), + }, + [1588] = { + [sym__concat] = ACTIONS(1634), + [anon_sym_RBRACE] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + }, + [1589] = { + [aux_sym_concatenation_repeat1] = STATE(1589), + [sym__concat] = ACTIONS(4542), + [anon_sym_RBRACE] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + }, + [1590] = { + [sym__concat] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1683), + [sym_comment] = ACTIONS(54), + }, + [1591] = { + [sym_concatenation] = STATE(1919), + [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), + [anon_sym_RBRACE] = ACTIONS(4545), + [sym__special_characters] = ACTIONS(4547), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(4549), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4549), + }, + [1592] = { + [sym__concat] = ACTIONS(1724), + [anon_sym_RBRACE] = ACTIONS(1724), + [sym_comment] = ACTIONS(54), + }, + [1593] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4551), + }, + [1594] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4553), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1595] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(4555), + [sym_comment] = ACTIONS(54), + }, + [1596] = { + [sym_concatenation] = STATE(1925), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1925), + [anon_sym_RBRACE] = ACTIONS(4557), + [anon_sym_EQ] = ACTIONS(4559), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4561), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(4563), + [anon_sym_COLON] = ACTIONS(4559), + [anon_sym_COLON_QMARK] = ACTIONS(4559), + [anon_sym_COLON_DASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4559), + [anon_sym_DASH] = ACTIONS(4559), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1597] = { + [sym_concatenation] = STATE(1928), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1928), + [anon_sym_RBRACE] = ACTIONS(4565), + [anon_sym_EQ] = ACTIONS(4567), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4569), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(4571), + [anon_sym_COLON] = ACTIONS(4567), + [anon_sym_COLON_QMARK] = ACTIONS(4567), + [anon_sym_COLON_DASH] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1598] = { + [sym_concatenation] = STATE(1930), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1930), + [anon_sym_RBRACE] = ACTIONS(4545), + [anon_sym_EQ] = ACTIONS(4573), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4575), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(4577), + [anon_sym_COLON] = ACTIONS(4573), + [anon_sym_COLON_QMARK] = ACTIONS(4573), + [anon_sym_COLON_DASH] = ACTIONS(4573), + [anon_sym_PERCENT] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1599] = { + [sym__concat] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [sym_comment] = ACTIONS(54), + }, + [1600] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4579), + }, + [1601] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4581), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1602] = { + [sym__concat] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [sym_comment] = ACTIONS(54), + }, + [1603] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4583), + }, + [1604] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4545), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1605] = { + [sym__concat] = ACTIONS(1936), + [anon_sym_RBRACE] = ACTIONS(1936), + [sym_comment] = ACTIONS(54), + }, + [1606] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2000), + [sym_comment] = ACTIONS(54), + }, + [1607] = { + [sym__concat] = ACTIONS(2672), + [anon_sym_RBRACE] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2674), + [sym__special_characters] = ACTIONS(2674), + [anon_sym_DQUOTE] = ACTIONS(2672), + [anon_sym_DOLLAR] = ACTIONS(2674), + [sym_raw_string] = ACTIONS(2672), + [anon_sym_POUND] = ACTIONS(2672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2672), + [anon_sym_COLON] = ACTIONS(2674), + [anon_sym_COLON_QMARK] = ACTIONS(2674), + [anon_sym_COLON_DASH] = ACTIONS(2674), + [anon_sym_PERCENT] = ACTIONS(2674), + [anon_sym_DASH] = ACTIONS(2674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2672), + [anon_sym_BQUOTE] = ACTIONS(2672), + [anon_sym_LT_LPAREN] = ACTIONS(2672), + [anon_sym_GT_LPAREN] = ACTIONS(2672), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2674), + }, + [1608] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4585), + [sym_comment] = ACTIONS(54), + }, + [1609] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4587), + [sym_comment] = ACTIONS(54), + }, + [1610] = { + [anon_sym_RBRACE] = ACTIONS(4587), + [sym_comment] = ACTIONS(54), + }, + [1611] = { + [sym_concatenation] = STATE(1937), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1937), + [anon_sym_RBRACE] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4591), + [anon_sym_COLON_QMARK] = ACTIONS(4591), + [anon_sym_COLON_DASH] = ACTIONS(4591), + [anon_sym_PERCENT] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4591), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1612] = { + [sym__concat] = ACTIONS(2750), + [anon_sym_RBRACE] = ACTIONS(2750), + [anon_sym_EQ] = ACTIONS(2752), + [sym__special_characters] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2750), + [anon_sym_DOLLAR] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2750), + [anon_sym_POUND] = ACTIONS(2750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2750), + [anon_sym_COLON] = ACTIONS(2752), + [anon_sym_COLON_QMARK] = ACTIONS(2752), + [anon_sym_COLON_DASH] = ACTIONS(2752), + [anon_sym_PERCENT] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2750), + [anon_sym_BQUOTE] = ACTIONS(2750), + [anon_sym_LT_LPAREN] = ACTIONS(2750), + [anon_sym_GT_LPAREN] = ACTIONS(2750), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2752), + }, + [1613] = { + [sym_concatenation] = STATE(1940), + [sym_string] = STATE(1939), + [sym_simple_expansion] = STATE(1939), + [sym_string_expansion] = STATE(1939), + [sym_expansion] = STATE(1939), + [sym_command_substitution] = STATE(1939), + [sym_process_substitution] = STATE(1939), + [anon_sym_RBRACE] = ACTIONS(4587), + [sym__special_characters] = ACTIONS(4595), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(4597), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4597), + }, + [1614] = { + [sym__concat] = ACTIONS(2793), + [anon_sym_RBRACE] = ACTIONS(2793), + [anon_sym_EQ] = ACTIONS(2795), + [sym__special_characters] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2793), + [anon_sym_DOLLAR] = ACTIONS(2795), + [sym_raw_string] = ACTIONS(2793), + [anon_sym_POUND] = ACTIONS(2793), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2793), + [anon_sym_COLON] = ACTIONS(2795), + [anon_sym_COLON_QMARK] = ACTIONS(2795), + [anon_sym_COLON_DASH] = ACTIONS(2795), + [anon_sym_PERCENT] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2793), + [anon_sym_BQUOTE] = ACTIONS(2793), + [anon_sym_LT_LPAREN] = ACTIONS(2793), + [anon_sym_GT_LPAREN] = ACTIONS(2793), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2795), + }, + [1615] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4599), + }, + [1616] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1617] = { + [sym__concat] = ACTIONS(2801), + [anon_sym_RBRACE] = ACTIONS(2801), + [anon_sym_EQ] = ACTIONS(2803), + [sym__special_characters] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_DOLLAR] = ACTIONS(2803), + [sym_raw_string] = ACTIONS(2801), + [anon_sym_POUND] = ACTIONS(2801), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2801), + [anon_sym_COLON] = ACTIONS(2803), + [anon_sym_COLON_QMARK] = ACTIONS(2803), + [anon_sym_COLON_DASH] = ACTIONS(2803), + [anon_sym_PERCENT] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2801), + [anon_sym_BQUOTE] = ACTIONS(2801), + [anon_sym_LT_LPAREN] = ACTIONS(2801), + [anon_sym_GT_LPAREN] = ACTIONS(2801), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2803), + }, + [1618] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4603), + }, + [1619] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1620] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4607), + }, + [1621] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4587), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1622] = { + [sym_concatenation] = STATE(1947), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1947), + [anon_sym_RBRACE] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4613), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4611), + [anon_sym_COLON_QMARK] = ACTIONS(4611), + [anon_sym_COLON_DASH] = ACTIONS(4611), + [anon_sym_PERCENT] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4611), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1623] = { + [sym__concat] = ACTIONS(2817), + [anon_sym_RBRACE] = ACTIONS(2817), + [anon_sym_EQ] = ACTIONS(2819), + [sym__special_characters] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2817), + [anon_sym_DOLLAR] = ACTIONS(2819), + [sym_raw_string] = ACTIONS(2817), + [anon_sym_POUND] = ACTIONS(2817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2817), + [anon_sym_COLON] = ACTIONS(2819), + [anon_sym_COLON_QMARK] = ACTIONS(2819), + [anon_sym_COLON_DASH] = ACTIONS(2819), + [anon_sym_PERCENT] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), + [anon_sym_BQUOTE] = ACTIONS(2817), + [anon_sym_LT_LPAREN] = ACTIONS(2817), + [anon_sym_GT_LPAREN] = ACTIONS(2817), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2819), + }, + [1624] = { + [sym_concatenation] = STATE(1949), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1949), + [anon_sym_RBRACE] = ACTIONS(4615), + [anon_sym_EQ] = ACTIONS(4617), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4619), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4617), + [anon_sym_COLON_QMARK] = ACTIONS(4617), + [anon_sym_COLON_DASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4617), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1625] = { + [sym_file_descriptor] = ACTIONS(4621), + [sym__concat] = ACTIONS(4621), + [anon_sym_PIPE] = ACTIONS(4623), + [anon_sym_RPAREN] = ACTIONS(4623), + [anon_sym_SEMI_SEMI] = ACTIONS(4623), + [anon_sym_PIPE_AMP] = ACTIONS(4623), + [anon_sym_AMP_AMP] = ACTIONS(4623), + [anon_sym_PIPE_PIPE] = ACTIONS(4623), + [anon_sym_EQ_TILDE] = ACTIONS(4623), + [anon_sym_EQ_EQ] = ACTIONS(4623), + [anon_sym_LT] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_GT_GT] = ACTIONS(4623), + [anon_sym_AMP_GT] = ACTIONS(4623), + [anon_sym_AMP_GT_GT] = ACTIONS(4623), + [anon_sym_LT_AMP] = ACTIONS(4623), + [anon_sym_GT_AMP] = ACTIONS(4623), + [anon_sym_LT_LT] = ACTIONS(4623), + [anon_sym_LT_LT_DASH] = ACTIONS(4623), + [anon_sym_LT_LT_LT] = ACTIONS(4623), + [sym__special_characters] = ACTIONS(4623), + [anon_sym_DQUOTE] = ACTIONS(4623), + [anon_sym_DOLLAR] = ACTIONS(4623), + [sym_raw_string] = ACTIONS(4623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4623), + [anon_sym_BQUOTE] = ACTIONS(4623), + [anon_sym_LT_LPAREN] = ACTIONS(4623), + [anon_sym_GT_LPAREN] = ACTIONS(4623), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_LF] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4623), + }, + [1626] = { + [sym_file_descriptor] = ACTIONS(4625), + [sym__concat] = ACTIONS(4625), + [anon_sym_PIPE] = ACTIONS(4627), + [anon_sym_RPAREN] = ACTIONS(4627), + [anon_sym_SEMI_SEMI] = ACTIONS(4627), + [anon_sym_PIPE_AMP] = ACTIONS(4627), + [anon_sym_AMP_AMP] = ACTIONS(4627), + [anon_sym_PIPE_PIPE] = ACTIONS(4627), + [anon_sym_EQ_TILDE] = ACTIONS(4627), + [anon_sym_EQ_EQ] = ACTIONS(4627), + [anon_sym_LT] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4627), + [anon_sym_GT_GT] = ACTIONS(4627), + [anon_sym_AMP_GT] = ACTIONS(4627), + [anon_sym_AMP_GT_GT] = ACTIONS(4627), + [anon_sym_LT_AMP] = ACTIONS(4627), + [anon_sym_GT_AMP] = ACTIONS(4627), + [anon_sym_LT_LT] = ACTIONS(4627), + [anon_sym_LT_LT_DASH] = ACTIONS(4627), + [anon_sym_LT_LT_LT] = ACTIONS(4627), + [sym__special_characters] = ACTIONS(4627), + [anon_sym_DQUOTE] = ACTIONS(4627), + [anon_sym_DOLLAR] = ACTIONS(4627), + [sym_raw_string] = ACTIONS(4627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4627), + [anon_sym_BQUOTE] = ACTIONS(4627), + [anon_sym_LT_LPAREN] = ACTIONS(4627), + [anon_sym_GT_LPAREN] = ACTIONS(4627), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4627), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_LF] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4627), + }, + [1627] = { + [sym_file_descriptor] = ACTIONS(4629), + [sym__concat] = ACTIONS(4629), + [anon_sym_PIPE] = ACTIONS(4631), + [anon_sym_RPAREN] = ACTIONS(4631), + [anon_sym_SEMI_SEMI] = ACTIONS(4631), + [anon_sym_PIPE_AMP] = ACTIONS(4631), + [anon_sym_AMP_AMP] = ACTIONS(4631), + [anon_sym_PIPE_PIPE] = ACTIONS(4631), + [anon_sym_EQ_TILDE] = ACTIONS(4631), + [anon_sym_EQ_EQ] = ACTIONS(4631), + [anon_sym_LT] = ACTIONS(4631), + [anon_sym_GT] = ACTIONS(4631), + [anon_sym_GT_GT] = ACTIONS(4631), + [anon_sym_AMP_GT] = ACTIONS(4631), + [anon_sym_AMP_GT_GT] = ACTIONS(4631), + [anon_sym_LT_AMP] = ACTIONS(4631), + [anon_sym_GT_AMP] = ACTIONS(4631), + [anon_sym_LT_LT] = ACTIONS(4631), + [anon_sym_LT_LT_DASH] = ACTIONS(4631), + [anon_sym_LT_LT_LT] = ACTIONS(4631), + [sym__special_characters] = ACTIONS(4631), + [anon_sym_DQUOTE] = ACTIONS(4631), + [anon_sym_DOLLAR] = ACTIONS(4631), + [sym_raw_string] = ACTIONS(4631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4631), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4631), + [anon_sym_BQUOTE] = ACTIONS(4631), + [anon_sym_LT_LPAREN] = ACTIONS(4631), + [anon_sym_GT_LPAREN] = ACTIONS(4631), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4631), + [anon_sym_SEMI] = ACTIONS(4631), + [anon_sym_LF] = ACTIONS(4629), + [anon_sym_AMP] = ACTIONS(4631), + }, + [1628] = { + [sym_file_descriptor] = ACTIONS(4633), + [sym__concat] = ACTIONS(4633), + [anon_sym_PIPE] = ACTIONS(4635), + [anon_sym_RPAREN] = ACTIONS(4635), + [anon_sym_SEMI_SEMI] = ACTIONS(4635), + [anon_sym_PIPE_AMP] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_EQ_TILDE] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_GT_GT] = ACTIONS(4635), + [anon_sym_AMP_GT] = ACTIONS(4635), + [anon_sym_AMP_GT_GT] = ACTIONS(4635), + [anon_sym_LT_AMP] = ACTIONS(4635), + [anon_sym_GT_AMP] = ACTIONS(4635), + [anon_sym_LT_LT] = ACTIONS(4635), + [anon_sym_LT_LT_DASH] = ACTIONS(4635), + [anon_sym_LT_LT_LT] = ACTIONS(4635), + [sym__special_characters] = ACTIONS(4635), + [anon_sym_DQUOTE] = ACTIONS(4635), + [anon_sym_DOLLAR] = ACTIONS(4635), + [sym_raw_string] = ACTIONS(4635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4635), + [anon_sym_BQUOTE] = ACTIONS(4635), + [anon_sym_LT_LPAREN] = ACTIONS(4635), + [anon_sym_GT_LPAREN] = ACTIONS(4635), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_LF] = ACTIONS(4633), + [anon_sym_AMP] = ACTIONS(4635), + }, + [1629] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4637), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1630] = { + [sym_file_descriptor] = ACTIONS(4639), + [sym__concat] = ACTIONS(4639), + [anon_sym_PIPE] = ACTIONS(4641), + [anon_sym_RPAREN] = ACTIONS(4641), + [anon_sym_SEMI_SEMI] = ACTIONS(4641), + [anon_sym_PIPE_AMP] = ACTIONS(4641), + [anon_sym_AMP_AMP] = ACTIONS(4641), + [anon_sym_PIPE_PIPE] = ACTIONS(4641), + [anon_sym_EQ_TILDE] = ACTIONS(4641), + [anon_sym_EQ_EQ] = ACTIONS(4641), + [anon_sym_LT] = ACTIONS(4641), + [anon_sym_GT] = ACTIONS(4641), + [anon_sym_GT_GT] = ACTIONS(4641), + [anon_sym_AMP_GT] = ACTIONS(4641), + [anon_sym_AMP_GT_GT] = ACTIONS(4641), + [anon_sym_LT_AMP] = ACTIONS(4641), + [anon_sym_GT_AMP] = ACTIONS(4641), + [anon_sym_LT_LT] = ACTIONS(4641), + [anon_sym_LT_LT_DASH] = ACTIONS(4641), + [anon_sym_LT_LT_LT] = ACTIONS(4641), + [sym__special_characters] = ACTIONS(4641), + [anon_sym_DQUOTE] = ACTIONS(4641), + [anon_sym_DOLLAR] = ACTIONS(4641), + [sym_raw_string] = ACTIONS(4641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4641), + [anon_sym_BQUOTE] = ACTIONS(4641), + [anon_sym_LT_LPAREN] = ACTIONS(4641), + [anon_sym_GT_LPAREN] = ACTIONS(4641), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4641), + [anon_sym_SEMI] = ACTIONS(4641), + [anon_sym_LF] = ACTIONS(4639), + [anon_sym_AMP] = ACTIONS(4641), + }, + [1631] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1632] = { + [sym_file_descriptor] = ACTIONS(4645), + [sym__concat] = ACTIONS(4645), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_RPAREN] = ACTIONS(4647), + [anon_sym_SEMI_SEMI] = ACTIONS(4647), + [anon_sym_PIPE_AMP] = ACTIONS(4647), + [anon_sym_AMP_AMP] = ACTIONS(4647), + [anon_sym_PIPE_PIPE] = ACTIONS(4647), + [anon_sym_EQ_TILDE] = ACTIONS(4647), + [anon_sym_EQ_EQ] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_GT] = ACTIONS(4647), + [anon_sym_AMP_GT] = ACTIONS(4647), + [anon_sym_AMP_GT_GT] = ACTIONS(4647), + [anon_sym_LT_AMP] = ACTIONS(4647), + [anon_sym_GT_AMP] = ACTIONS(4647), + [anon_sym_LT_LT] = ACTIONS(4647), + [anon_sym_LT_LT_DASH] = ACTIONS(4647), + [anon_sym_LT_LT_LT] = ACTIONS(4647), + [sym__special_characters] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4647), + [anon_sym_DOLLAR] = ACTIONS(4647), + [sym_raw_string] = ACTIONS(4647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4647), + [anon_sym_BQUOTE] = ACTIONS(4647), + [anon_sym_LT_LPAREN] = ACTIONS(4647), + [anon_sym_GT_LPAREN] = ACTIONS(4647), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4647), + [anon_sym_LF] = ACTIONS(4645), + [anon_sym_AMP] = ACTIONS(4647), + }, + [1633] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4649), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1634] = { + [sym_file_descriptor] = ACTIONS(4651), + [sym__concat] = ACTIONS(4651), + [anon_sym_PIPE] = ACTIONS(4653), + [anon_sym_RPAREN] = ACTIONS(4653), + [anon_sym_SEMI_SEMI] = ACTIONS(4653), + [anon_sym_PIPE_AMP] = ACTIONS(4653), + [anon_sym_AMP_AMP] = ACTIONS(4653), + [anon_sym_PIPE_PIPE] = ACTIONS(4653), + [anon_sym_EQ_TILDE] = ACTIONS(4653), + [anon_sym_EQ_EQ] = ACTIONS(4653), + [anon_sym_LT] = ACTIONS(4653), + [anon_sym_GT] = ACTIONS(4653), + [anon_sym_GT_GT] = ACTIONS(4653), + [anon_sym_AMP_GT] = ACTIONS(4653), + [anon_sym_AMP_GT_GT] = ACTIONS(4653), + [anon_sym_LT_AMP] = ACTIONS(4653), + [anon_sym_GT_AMP] = ACTIONS(4653), + [anon_sym_LT_LT] = ACTIONS(4653), + [anon_sym_LT_LT_DASH] = ACTIONS(4653), + [anon_sym_LT_LT_LT] = ACTIONS(4653), + [sym__special_characters] = ACTIONS(4653), + [anon_sym_DQUOTE] = ACTIONS(4653), + [anon_sym_DOLLAR] = ACTIONS(4653), + [sym_raw_string] = ACTIONS(4653), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4653), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4653), + [anon_sym_BQUOTE] = ACTIONS(4653), + [anon_sym_LT_LPAREN] = ACTIONS(4653), + [anon_sym_GT_LPAREN] = ACTIONS(4653), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4653), + [anon_sym_SEMI] = ACTIONS(4653), + [anon_sym_LF] = ACTIONS(4651), + [anon_sym_AMP] = ACTIONS(4653), + }, + [1635] = { + [sym_file_descriptor] = ACTIONS(4655), + [sym__concat] = ACTIONS(4655), + [anon_sym_PIPE] = ACTIONS(4657), + [anon_sym_RPAREN] = ACTIONS(4657), + [anon_sym_SEMI_SEMI] = ACTIONS(4657), + [anon_sym_PIPE_AMP] = ACTIONS(4657), + [anon_sym_AMP_AMP] = ACTIONS(4657), + [anon_sym_PIPE_PIPE] = ACTIONS(4657), + [anon_sym_EQ_TILDE] = ACTIONS(4657), + [anon_sym_EQ_EQ] = ACTIONS(4657), + [anon_sym_LT] = ACTIONS(4657), + [anon_sym_GT] = ACTIONS(4657), + [anon_sym_GT_GT] = ACTIONS(4657), + [anon_sym_AMP_GT] = ACTIONS(4657), + [anon_sym_AMP_GT_GT] = ACTIONS(4657), + [anon_sym_LT_AMP] = ACTIONS(4657), + [anon_sym_GT_AMP] = ACTIONS(4657), + [anon_sym_LT_LT] = ACTIONS(4657), + [anon_sym_LT_LT_DASH] = ACTIONS(4657), + [anon_sym_LT_LT_LT] = ACTIONS(4657), + [sym__special_characters] = ACTIONS(4657), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_DOLLAR] = ACTIONS(4657), + [sym_raw_string] = ACTIONS(4657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4657), + [anon_sym_BQUOTE] = ACTIONS(4657), + [anon_sym_LT_LPAREN] = ACTIONS(4657), + [anon_sym_GT_LPAREN] = ACTIONS(4657), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4657), + [anon_sym_SEMI] = ACTIONS(4657), + [anon_sym_LF] = ACTIONS(4655), + [anon_sym_AMP] = ACTIONS(4657), + }, + [1636] = { + [sym_file_descriptor] = ACTIONS(3258), + [sym_variable_name] = ACTIONS(3258), + [anon_sym_PIPE] = ACTIONS(3260), + [anon_sym_RPAREN] = ACTIONS(3258), + [anon_sym_PIPE_AMP] = ACTIONS(3258), + [anon_sym_AMP_AMP] = ACTIONS(3258), + [anon_sym_PIPE_PIPE] = ACTIONS(3258), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_GT] = ACTIONS(3260), + [anon_sym_GT_GT] = ACTIONS(3258), + [anon_sym_AMP_GT] = ACTIONS(3260), + [anon_sym_AMP_GT_GT] = ACTIONS(3258), + [anon_sym_LT_AMP] = ACTIONS(3258), + [anon_sym_GT_AMP] = ACTIONS(3258), + [sym__special_characters] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [anon_sym_DOLLAR] = ACTIONS(3260), + [sym_raw_string] = ACTIONS(3258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3258), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3258), + [anon_sym_BQUOTE] = ACTIONS(3258), + [anon_sym_LT_LPAREN] = ACTIONS(3258), + [anon_sym_GT_LPAREN] = ACTIONS(3258), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3258), + }, + [1637] = { + [aux_sym_concatenation_repeat1] = STATE(1637), + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(2575), + [sym_variable_name] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_PIPE_AMP] = ACTIONS(1634), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE_PIPE] = ACTIONS(1634), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1634), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1634), + [anon_sym_LT_AMP] = ACTIONS(1634), + [anon_sym_GT_AMP] = ACTIONS(1634), + [sym__special_characters] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LT_LPAREN] = ACTIONS(1634), + [anon_sym_GT_LPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1634), + }, + [1638] = { + [sym_do_group] = STATE(1953), + [anon_sym_do] = ACTIONS(2829), + [sym_comment] = ACTIONS(54), + }, + [1639] = { + [anon_sym_PIPE] = ACTIONS(2231), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_PIPE_AMP] = ACTIONS(2229), + [anon_sym_AMP_AMP] = ACTIONS(2229), + [anon_sym_PIPE_PIPE] = ACTIONS(2229), + [anon_sym_BQUOTE] = ACTIONS(2229), + [sym_comment] = ACTIONS(54), + }, + [1640] = { + [sym__terminated_statement] = STATE(1028), + [sym_for_statement] = STATE(585), + [sym_while_statement] = STATE(585), + [sym_if_statement] = STATE(585), + [sym_case_statement] = STATE(585), + [sym_function_definition] = STATE(585), + [sym_subshell] = STATE(585), + [sym_pipeline] = STATE(585), + [sym_list] = STATE(585), + [sym_command] = STATE(585), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(585), + [sym_variable_assignment] = STATE(586), + [sym_declaration_command] = STATE(585), + [sym_unset_command] = STATE(585), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1028), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_done] = ACTIONS(4659), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [1641] = { + [sym_file_descriptor] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(3403), + [anon_sym_RPAREN] = ACTIONS(3401), + [anon_sym_PIPE_AMP] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_PIPE_PIPE] = ACTIONS(3401), + [anon_sym_LT] = ACTIONS(3403), + [anon_sym_GT] = ACTIONS(3403), + [anon_sym_GT_GT] = ACTIONS(3401), + [anon_sym_AMP_GT] = ACTIONS(3403), + [anon_sym_AMP_GT_GT] = ACTIONS(3401), + [anon_sym_LT_AMP] = ACTIONS(3401), + [anon_sym_GT_AMP] = ACTIONS(3401), + [anon_sym_LT_LT] = ACTIONS(3403), + [anon_sym_LT_LT_DASH] = ACTIONS(3401), + [anon_sym_LT_LT_LT] = ACTIONS(3401), + [anon_sym_BQUOTE] = ACTIONS(3401), + [sym_comment] = ACTIONS(54), + }, + [1642] = { + [anon_sym_PIPE] = ACTIONS(3415), + [anon_sym_RPAREN] = ACTIONS(3417), + [anon_sym_PIPE_AMP] = ACTIONS(3417), + [anon_sym_AMP_AMP] = ACTIONS(3417), + [anon_sym_PIPE_PIPE] = ACTIONS(3417), + [anon_sym_BQUOTE] = ACTIONS(3417), + [sym_comment] = ACTIONS(54), + }, + [1643] = { + [anon_sym_fi] = ACTIONS(4661), + [sym_comment] = ACTIONS(54), + }, + [1644] = { + [sym_elif_clause] = STATE(1038), + [sym_else_clause] = STATE(1956), + [aux_sym_if_statement_repeat1] = STATE(1038), + [anon_sym_fi] = ACTIONS(4661), + [anon_sym_elif] = ACTIONS(2257), + [anon_sym_else] = ACTIONS(2259), + [sym_comment] = ACTIONS(54), + }, + [1645] = { + [anon_sym_PIPE] = ACTIONS(3426), + [anon_sym_RPAREN] = ACTIONS(3428), + [anon_sym_PIPE_AMP] = ACTIONS(3428), + [anon_sym_AMP_AMP] = ACTIONS(3428), + [anon_sym_PIPE_PIPE] = ACTIONS(3428), + [anon_sym_BQUOTE] = ACTIONS(3428), + [sym_comment] = ACTIONS(54), + }, + [1646] = { + [anon_sym_esac] = ACTIONS(4663), + [sym_comment] = ACTIONS(54), + }, + [1647] = { + [sym_case_item] = STATE(1453), + [sym_last_case_item] = STATE(1958), + [sym_concatenation] = STATE(1043), + [sym_string] = STATE(1041), + [sym_simple_expansion] = STATE(1041), + [sym_string_expansion] = STATE(1041), + [sym_expansion] = STATE(1041), + [sym_command_substitution] = STATE(1041), + [sym_process_substitution] = STATE(1041), + [aux_sym_case_statement_repeat1] = STATE(1453), + [sym__special_characters] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(2265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2265), + }, + [1648] = { + [sym_case_item] = STATE(1960), + [sym_last_case_item] = STATE(1958), + [sym_concatenation] = STATE(1043), + [sym_string] = STATE(1041), + [sym_simple_expansion] = STATE(1041), + [sym_string_expansion] = STATE(1041), + [sym_expansion] = STATE(1041), + [sym_command_substitution] = STATE(1041), + [sym_process_substitution] = STATE(1041), + [aux_sym_case_statement_repeat1] = STATE(1960), + [anon_sym_esac] = ACTIONS(4665), + [sym__special_characters] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(2265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2267), + }, + [1649] = { + [anon_sym_PIPE] = ACTIONS(3440), + [anon_sym_RPAREN] = ACTIONS(3442), + [anon_sym_PIPE_AMP] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BQUOTE] = ACTIONS(3442), + [sym_comment] = ACTIONS(54), + }, + [1650] = { + [anon_sym_esac] = ACTIONS(4667), + [sym_comment] = ACTIONS(54), + }, + [1651] = { + [sym_case_item] = STATE(1453), + [sym_last_case_item] = STATE(1962), + [sym_concatenation] = STATE(1043), + [sym_string] = STATE(1041), + [sym_simple_expansion] = STATE(1041), + [sym_string_expansion] = STATE(1041), + [sym_expansion] = STATE(1041), + [sym_command_substitution] = STATE(1041), + [sym_process_substitution] = STATE(1041), + [aux_sym_case_statement_repeat1] = STATE(1453), + [sym__special_characters] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(2265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2265), + }, + [1652] = { + [sym_case_item] = STATE(1964), + [sym_last_case_item] = STATE(1962), + [sym_concatenation] = STATE(1043), + [sym_string] = STATE(1041), + [sym_simple_expansion] = STATE(1041), + [sym_string_expansion] = STATE(1041), + [sym_expansion] = STATE(1041), + [sym_command_substitution] = STATE(1041), + [sym_process_substitution] = STATE(1041), + [aux_sym_case_statement_repeat1] = STATE(1964), + [anon_sym_esac] = ACTIONS(4669), + [sym__special_characters] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(2265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2267), + }, + [1653] = { + [sym_file_redirect] = STATE(1965), + [sym_file_descriptor] = ACTIONS(2851), + [anon_sym_PIPE] = ACTIONS(3484), + [anon_sym_RPAREN] = ACTIONS(3486), + [anon_sym_PIPE_AMP] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3486), + [anon_sym_PIPE_PIPE] = ACTIONS(3486), + [anon_sym_LT] = ACTIONS(2853), + [anon_sym_GT] = ACTIONS(2853), + [anon_sym_GT_GT] = ACTIONS(2855), + [anon_sym_AMP_GT] = ACTIONS(2853), + [anon_sym_AMP_GT_GT] = ACTIONS(2855), + [anon_sym_LT_AMP] = ACTIONS(2855), + [anon_sym_GT_AMP] = ACTIONS(2855), + [sym_comment] = ACTIONS(54), + }, + [1654] = { + [sym_file_descriptor] = ACTIONS(3488), + [anon_sym_PIPE] = ACTIONS(3490), + [anon_sym_RPAREN] = ACTIONS(3488), + [anon_sym_PIPE_AMP] = ACTIONS(3488), + [anon_sym_AMP_AMP] = ACTIONS(3488), + [anon_sym_PIPE_PIPE] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3490), + [anon_sym_GT] = ACTIONS(3490), + [anon_sym_GT_GT] = ACTIONS(3488), + [anon_sym_AMP_GT] = ACTIONS(3490), + [anon_sym_AMP_GT_GT] = ACTIONS(3488), + [anon_sym_LT_AMP] = ACTIONS(3488), + [anon_sym_GT_AMP] = ACTIONS(3488), + [anon_sym_BQUOTE] = ACTIONS(3488), + [sym_comment] = ACTIONS(54), + }, + [1655] = { + [sym_concatenation] = STATE(1968), + [sym_string] = STATE(1967), + [sym_simple_expansion] = STATE(1967), + [sym_string_expansion] = STATE(1967), + [sym_expansion] = STATE(1967), + [sym_command_substitution] = STATE(1967), + [sym_process_substitution] = STATE(1967), + [sym__special_characters] = ACTIONS(4671), + [anon_sym_DQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(824), + [sym_raw_string] = ACTIONS(4673), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4673), + }, + [1656] = { + [aux_sym_concatenation_repeat1] = STATE(1969), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(660), + [anon_sym_RPAREN] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(656), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [sym_comment] = ACTIONS(54), + }, + [1657] = { + [aux_sym_concatenation_repeat1] = STATE(1969), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(672), + [anon_sym_PIPE_AMP] = ACTIONS(672), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [sym_comment] = ACTIONS(54), + }, + [1658] = { + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(672), + [anon_sym_PIPE_AMP] = ACTIONS(672), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_BQUOTE] = ACTIONS(672), + [sym_comment] = ACTIONS(54), + }, + [1659] = { + [anon_sym_PIPE] = ACTIONS(3504), + [anon_sym_RPAREN] = ACTIONS(3506), + [anon_sym_PIPE_AMP] = ACTIONS(3506), + [anon_sym_AMP_AMP] = ACTIONS(3506), + [anon_sym_PIPE_PIPE] = ACTIONS(3506), + [anon_sym_BQUOTE] = ACTIONS(3506), + [sym_comment] = ACTIONS(54), + }, + [1660] = { + [sym_variable_name] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2107), + [anon_sym_RPAREN] = ACTIONS(2105), + [anon_sym_PIPE_AMP] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [sym__special_characters] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_DOLLAR] = ACTIONS(2107), + [sym_raw_string] = ACTIONS(2105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2105), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2105), + [anon_sym_BQUOTE] = ACTIONS(2105), + [anon_sym_LT_LPAREN] = ACTIONS(2105), + [anon_sym_GT_LPAREN] = ACTIONS(2105), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2107), + [sym_word] = ACTIONS(2107), + }, + [1661] = { + [sym_concatenation] = STATE(984), + [sym_string] = STATE(549), + [sym_simple_expansion] = STATE(549), + [sym_string_expansion] = STATE(549), + [sym_expansion] = STATE(549), + [sym_command_substitution] = STATE(549), + [sym_process_substitution] = STATE(549), + [aux_sym_for_statement_repeat1] = STATE(984), + [anon_sym_RPAREN] = ACTIONS(4675), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(1089), + [sym_raw_string] = ACTIONS(1091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1095), + [anon_sym_BQUOTE] = ACTIONS(1097), + [anon_sym_LT_LPAREN] = ACTIONS(1099), + [anon_sym_GT_LPAREN] = ACTIONS(1099), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1091), + }, + [1662] = { + [sym__concat] = ACTIONS(2672), + [sym_variable_name] = ACTIONS(2672), + [anon_sym_PIPE] = ACTIONS(2674), + [anon_sym_RPAREN] = ACTIONS(2672), + [anon_sym_PIPE_AMP] = ACTIONS(2672), + [anon_sym_AMP_AMP] = ACTIONS(2672), + [anon_sym_PIPE_PIPE] = ACTIONS(2672), + [sym__special_characters] = ACTIONS(2672), + [anon_sym_DQUOTE] = ACTIONS(2672), + [anon_sym_DOLLAR] = ACTIONS(2674), + [sym_raw_string] = ACTIONS(2672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2672), + [anon_sym_BQUOTE] = ACTIONS(2672), + [anon_sym_LT_LPAREN] = ACTIONS(2672), + [anon_sym_GT_LPAREN] = ACTIONS(2672), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2674), + [sym_word] = ACTIONS(2674), + }, + [1663] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4677), + [sym_comment] = ACTIONS(54), + }, + [1664] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4679), + [sym_comment] = ACTIONS(54), + }, + [1665] = { + [anon_sym_RBRACE] = ACTIONS(4679), + [sym_comment] = ACTIONS(54), + }, + [1666] = { + [sym_concatenation] = STATE(1974), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1974), + [anon_sym_RBRACE] = ACTIONS(4681), + [anon_sym_EQ] = ACTIONS(4683), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4683), + [anon_sym_COLON_QMARK] = ACTIONS(4683), + [anon_sym_COLON_DASH] = ACTIONS(4683), + [anon_sym_PERCENT] = ACTIONS(4683), + [anon_sym_DASH] = ACTIONS(4683), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1667] = { + [sym__concat] = ACTIONS(2750), + [sym_variable_name] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_PIPE_AMP] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [sym__special_characters] = ACTIONS(2750), + [anon_sym_DQUOTE] = ACTIONS(2750), + [anon_sym_DOLLAR] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2750), + [anon_sym_BQUOTE] = ACTIONS(2750), + [anon_sym_LT_LPAREN] = ACTIONS(2750), + [anon_sym_GT_LPAREN] = ACTIONS(2750), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2752), + [sym_word] = ACTIONS(2752), + }, + [1668] = { + [sym_concatenation] = STATE(1977), + [sym_string] = STATE(1976), + [sym_simple_expansion] = STATE(1976), + [sym_string_expansion] = STATE(1976), + [sym_expansion] = STATE(1976), + [sym_command_substitution] = STATE(1976), + [sym_process_substitution] = STATE(1976), + [anon_sym_RBRACE] = ACTIONS(4679), + [sym__special_characters] = ACTIONS(4687), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(4689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4689), + }, + [1669] = { + [sym__concat] = ACTIONS(2793), + [sym_variable_name] = ACTIONS(2793), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_RPAREN] = ACTIONS(2793), + [anon_sym_PIPE_AMP] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_PIPE_PIPE] = ACTIONS(2793), + [sym__special_characters] = ACTIONS(2793), + [anon_sym_DQUOTE] = ACTIONS(2793), + [anon_sym_DOLLAR] = ACTIONS(2795), + [sym_raw_string] = ACTIONS(2793), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2793), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2793), + [anon_sym_BQUOTE] = ACTIONS(2793), + [anon_sym_LT_LPAREN] = ACTIONS(2793), + [anon_sym_GT_LPAREN] = ACTIONS(2793), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2795), + [sym_word] = ACTIONS(2795), + }, + [1670] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4691), + }, + [1671] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4693), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1672] = { + [sym__concat] = ACTIONS(2801), + [sym_variable_name] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2803), + [anon_sym_RPAREN] = ACTIONS(2801), + [anon_sym_PIPE_AMP] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [sym__special_characters] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_DOLLAR] = ACTIONS(2803), + [sym_raw_string] = ACTIONS(2801), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2801), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2801), + [anon_sym_BQUOTE] = ACTIONS(2801), + [anon_sym_LT_LPAREN] = ACTIONS(2801), + [anon_sym_GT_LPAREN] = ACTIONS(2801), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2803), + [sym_word] = ACTIONS(2803), + }, + [1673] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4695), + }, + [1674] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4697), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1675] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4699), + }, + [1676] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4679), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1677] = { + [sym_concatenation] = STATE(1984), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1984), + [anon_sym_RBRACE] = ACTIONS(4701), + [anon_sym_EQ] = ACTIONS(4703), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4705), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4703), + [anon_sym_COLON_QMARK] = ACTIONS(4703), + [anon_sym_COLON_DASH] = ACTIONS(4703), + [anon_sym_PERCENT] = ACTIONS(4703), + [anon_sym_DASH] = ACTIONS(4703), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1678] = { + [sym__concat] = ACTIONS(2817), + [sym_variable_name] = ACTIONS(2817), + [anon_sym_PIPE] = ACTIONS(2819), + [anon_sym_RPAREN] = ACTIONS(2817), + [anon_sym_PIPE_AMP] = ACTIONS(2817), + [anon_sym_AMP_AMP] = ACTIONS(2817), + [anon_sym_PIPE_PIPE] = ACTIONS(2817), + [sym__special_characters] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2817), + [anon_sym_DOLLAR] = ACTIONS(2819), + [sym_raw_string] = ACTIONS(2817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), + [anon_sym_BQUOTE] = ACTIONS(2817), + [anon_sym_LT_LPAREN] = ACTIONS(2817), + [anon_sym_GT_LPAREN] = ACTIONS(2817), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2819), + [sym_word] = ACTIONS(2819), + }, + [1679] = { + [sym_concatenation] = STATE(1986), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1986), + [anon_sym_RBRACE] = ACTIONS(4707), + [anon_sym_EQ] = ACTIONS(4709), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4711), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4709), + [anon_sym_COLON_QMARK] = ACTIONS(4709), + [anon_sym_COLON_DASH] = ACTIONS(4709), + [anon_sym_PERCENT] = ACTIONS(4709), + [anon_sym_DASH] = ACTIONS(4709), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1680] = { + [sym__concat] = ACTIONS(2672), + [anon_sym_PIPE] = ACTIONS(2674), + [anon_sym_RPAREN] = ACTIONS(2672), + [anon_sym_PIPE_AMP] = ACTIONS(2672), + [anon_sym_AMP_AMP] = ACTIONS(2672), + [anon_sym_PIPE_PIPE] = ACTIONS(2672), + [sym__special_characters] = ACTIONS(2672), + [anon_sym_DQUOTE] = ACTIONS(2672), + [anon_sym_DOLLAR] = ACTIONS(2674), + [sym_raw_string] = ACTIONS(2672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2672), + [anon_sym_BQUOTE] = ACTIONS(2672), + [anon_sym_LT_LPAREN] = ACTIONS(2672), + [anon_sym_GT_LPAREN] = ACTIONS(2672), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2674), + [sym_word] = ACTIONS(2674), + }, + [1681] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4713), + [sym_comment] = ACTIONS(54), + }, + [1682] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4715), + [sym_comment] = ACTIONS(54), + }, + [1683] = { + [anon_sym_RBRACE] = ACTIONS(4715), + [sym_comment] = ACTIONS(54), + }, + [1684] = { + [sym_concatenation] = STATE(1990), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(1990), + [anon_sym_RBRACE] = ACTIONS(4717), + [anon_sym_EQ] = ACTIONS(4719), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4719), + [anon_sym_COLON_QMARK] = ACTIONS(4719), + [anon_sym_COLON_DASH] = ACTIONS(4719), + [anon_sym_PERCENT] = ACTIONS(4719), + [anon_sym_DASH] = ACTIONS(4719), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1685] = { + [sym__concat] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_PIPE_AMP] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [sym__special_characters] = ACTIONS(2750), + [anon_sym_DQUOTE] = ACTIONS(2750), + [anon_sym_DOLLAR] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2750), + [anon_sym_BQUOTE] = ACTIONS(2750), + [anon_sym_LT_LPAREN] = ACTIONS(2750), + [anon_sym_GT_LPAREN] = ACTIONS(2750), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2752), + [sym_word] = ACTIONS(2752), + }, + [1686] = { + [sym_concatenation] = STATE(1993), + [sym_string] = STATE(1992), + [sym_simple_expansion] = STATE(1992), + [sym_string_expansion] = STATE(1992), + [sym_expansion] = STATE(1992), + [sym_command_substitution] = STATE(1992), + [sym_process_substitution] = STATE(1992), + [anon_sym_RBRACE] = ACTIONS(4715), + [sym__special_characters] = ACTIONS(4723), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(4725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4725), + }, + [1687] = { + [sym__concat] = ACTIONS(2793), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_RPAREN] = ACTIONS(2793), + [anon_sym_PIPE_AMP] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_PIPE_PIPE] = ACTIONS(2793), + [sym__special_characters] = ACTIONS(2793), + [anon_sym_DQUOTE] = ACTIONS(2793), + [anon_sym_DOLLAR] = ACTIONS(2795), + [sym_raw_string] = ACTIONS(2793), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2793), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2793), + [anon_sym_BQUOTE] = ACTIONS(2793), + [anon_sym_LT_LPAREN] = ACTIONS(2793), + [anon_sym_GT_LPAREN] = ACTIONS(2793), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2795), + [sym_word] = ACTIONS(2795), + }, + [1688] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4727), + }, + [1689] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4729), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1690] = { + [sym__concat] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2803), + [anon_sym_RPAREN] = ACTIONS(2801), + [anon_sym_PIPE_AMP] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [sym__special_characters] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_DOLLAR] = ACTIONS(2803), + [sym_raw_string] = ACTIONS(2801), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2801), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2801), + [anon_sym_BQUOTE] = ACTIONS(2801), + [anon_sym_LT_LPAREN] = ACTIONS(2801), + [anon_sym_GT_LPAREN] = ACTIONS(2801), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2803), + [sym_word] = ACTIONS(2803), + }, + [1691] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4731), + }, + [1692] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4733), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1693] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4735), + }, + [1694] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4715), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1695] = { + [sym_concatenation] = STATE(2000), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2000), + [anon_sym_RBRACE] = ACTIONS(4737), + [anon_sym_EQ] = ACTIONS(4739), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4739), + [anon_sym_COLON_QMARK] = ACTIONS(4739), + [anon_sym_COLON_DASH] = ACTIONS(4739), + [anon_sym_PERCENT] = ACTIONS(4739), + [anon_sym_DASH] = ACTIONS(4739), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1696] = { + [sym__concat] = ACTIONS(2817), + [anon_sym_PIPE] = ACTIONS(2819), + [anon_sym_RPAREN] = ACTIONS(2817), + [anon_sym_PIPE_AMP] = ACTIONS(2817), + [anon_sym_AMP_AMP] = ACTIONS(2817), + [anon_sym_PIPE_PIPE] = ACTIONS(2817), + [sym__special_characters] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2817), + [anon_sym_DOLLAR] = ACTIONS(2819), + [sym_raw_string] = ACTIONS(2817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), + [anon_sym_BQUOTE] = ACTIONS(2817), + [anon_sym_LT_LPAREN] = ACTIONS(2817), + [anon_sym_GT_LPAREN] = ACTIONS(2817), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2819), + [sym_word] = ACTIONS(2819), + }, + [1697] = { + [sym_concatenation] = STATE(2002), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2002), + [anon_sym_RBRACE] = ACTIONS(4743), + [anon_sym_EQ] = ACTIONS(4745), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4747), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4745), + [anon_sym_COLON_QMARK] = ACTIONS(4745), + [anon_sym_COLON_DASH] = ACTIONS(4745), + [anon_sym_PERCENT] = ACTIONS(4745), + [anon_sym_DASH] = ACTIONS(4745), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1698] = { + [sym_file_descriptor] = ACTIONS(3740), + [sym__concat] = ACTIONS(3740), + [anon_sym_PIPE] = ACTIONS(3742), + [anon_sym_RPAREN] = ACTIONS(3740), + [anon_sym_PIPE_AMP] = ACTIONS(3740), + [anon_sym_AMP_AMP] = ACTIONS(3740), + [anon_sym_PIPE_PIPE] = ACTIONS(3740), + [anon_sym_EQ_TILDE] = ACTIONS(3742), + [anon_sym_EQ_EQ] = ACTIONS(3742), + [anon_sym_LT] = ACTIONS(3742), + [anon_sym_GT] = ACTIONS(3742), + [anon_sym_GT_GT] = ACTIONS(3740), + [anon_sym_AMP_GT] = ACTIONS(3742), + [anon_sym_AMP_GT_GT] = ACTIONS(3740), + [anon_sym_LT_AMP] = ACTIONS(3740), + [anon_sym_GT_AMP] = ACTIONS(3740), + [anon_sym_LT_LT] = ACTIONS(3742), + [anon_sym_LT_LT_DASH] = ACTIONS(3740), + [anon_sym_LT_LT_LT] = ACTIONS(3740), + [sym__special_characters] = ACTIONS(3740), + [anon_sym_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3742), + [sym_raw_string] = ACTIONS(3740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3740), + [anon_sym_BQUOTE] = ACTIONS(3740), + [anon_sym_LT_LPAREN] = ACTIONS(3740), + [anon_sym_GT_LPAREN] = ACTIONS(3740), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3742), + }, + [1699] = { + [sym_file_descriptor] = ACTIONS(3746), + [sym__concat] = ACTIONS(3746), + [anon_sym_PIPE] = ACTIONS(3748), + [anon_sym_RPAREN] = ACTIONS(3746), + [anon_sym_PIPE_AMP] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [anon_sym_EQ_TILDE] = ACTIONS(3748), + [anon_sym_EQ_EQ] = ACTIONS(3748), + [anon_sym_LT] = ACTIONS(3748), + [anon_sym_GT] = ACTIONS(3748), + [anon_sym_GT_GT] = ACTIONS(3746), + [anon_sym_AMP_GT] = ACTIONS(3748), + [anon_sym_AMP_GT_GT] = ACTIONS(3746), + [anon_sym_LT_AMP] = ACTIONS(3746), + [anon_sym_GT_AMP] = ACTIONS(3746), + [anon_sym_LT_LT] = ACTIONS(3748), + [anon_sym_LT_LT_DASH] = ACTIONS(3746), + [anon_sym_LT_LT_LT] = ACTIONS(3746), + [sym__special_characters] = ACTIONS(3746), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_DOLLAR] = ACTIONS(3748), + [sym_raw_string] = ACTIONS(3746), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3746), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3746), + [anon_sym_BQUOTE] = ACTIONS(3746), + [anon_sym_LT_LPAREN] = ACTIONS(3746), + [anon_sym_GT_LPAREN] = ACTIONS(3746), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3748), + }, + [1700] = { + [sym_file_descriptor] = ACTIONS(3831), + [sym__concat] = ACTIONS(3831), + [anon_sym_PIPE] = ACTIONS(3833), + [anon_sym_RPAREN] = ACTIONS(3831), + [anon_sym_PIPE_AMP] = ACTIONS(3831), + [anon_sym_AMP_AMP] = ACTIONS(3831), + [anon_sym_PIPE_PIPE] = ACTIONS(3831), + [anon_sym_EQ_TILDE] = ACTIONS(3833), + [anon_sym_EQ_EQ] = ACTIONS(3833), + [anon_sym_LT] = ACTIONS(3833), + [anon_sym_GT] = ACTIONS(3833), + [anon_sym_GT_GT] = ACTIONS(3831), + [anon_sym_AMP_GT] = ACTIONS(3833), + [anon_sym_AMP_GT_GT] = ACTIONS(3831), + [anon_sym_LT_AMP] = ACTIONS(3831), + [anon_sym_GT_AMP] = ACTIONS(3831), + [anon_sym_LT_LT] = ACTIONS(3833), + [anon_sym_LT_LT_DASH] = ACTIONS(3831), + [anon_sym_LT_LT_LT] = ACTIONS(3831), + [sym__special_characters] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3833), + [sym_raw_string] = ACTIONS(3831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3831), + [anon_sym_BQUOTE] = ACTIONS(3831), + [anon_sym_LT_LPAREN] = ACTIONS(3831), + [anon_sym_GT_LPAREN] = ACTIONS(3831), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3833), + }, + [1701] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1702] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4751), + [sym_comment] = ACTIONS(54), + }, + [1703] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4753), + [sym_comment] = ACTIONS(54), + }, + [1704] = { + [anon_sym_RBRACE] = ACTIONS(4753), + [sym_comment] = ACTIONS(54), + }, + [1705] = { + [sym_concatenation] = STATE(2007), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2007), + [anon_sym_RBRACE] = ACTIONS(4755), + [anon_sym_EQ] = ACTIONS(4757), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4759), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4757), + [anon_sym_COLON_QMARK] = ACTIONS(4757), + [anon_sym_COLON_DASH] = ACTIONS(4757), + [anon_sym_PERCENT] = ACTIONS(4757), + [anon_sym_DASH] = ACTIONS(4757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1706] = { + [sym_file_descriptor] = ACTIONS(3847), + [sym__concat] = ACTIONS(3847), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_RPAREN] = ACTIONS(3847), + [anon_sym_PIPE_AMP] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3847), + [anon_sym_PIPE_PIPE] = ACTIONS(3847), + [anon_sym_EQ_TILDE] = ACTIONS(3849), + [anon_sym_EQ_EQ] = ACTIONS(3849), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_GT] = ACTIONS(3849), + [anon_sym_GT_GT] = ACTIONS(3847), + [anon_sym_AMP_GT] = ACTIONS(3849), + [anon_sym_AMP_GT_GT] = ACTIONS(3847), + [anon_sym_LT_AMP] = ACTIONS(3847), + [anon_sym_GT_AMP] = ACTIONS(3847), + [anon_sym_LT_LT] = ACTIONS(3849), + [anon_sym_LT_LT_DASH] = ACTIONS(3847), + [anon_sym_LT_LT_LT] = ACTIONS(3847), + [sym__special_characters] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_DOLLAR] = ACTIONS(3849), + [sym_raw_string] = ACTIONS(3847), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3847), + [anon_sym_BQUOTE] = ACTIONS(3847), + [anon_sym_LT_LPAREN] = ACTIONS(3847), + [anon_sym_GT_LPAREN] = ACTIONS(3847), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3849), + }, + [1707] = { + [sym_concatenation] = STATE(2009), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2009), + [anon_sym_RBRACE] = ACTIONS(4761), + [anon_sym_EQ] = ACTIONS(4763), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4765), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4763), + [anon_sym_COLON_QMARK] = ACTIONS(4763), + [anon_sym_COLON_DASH] = ACTIONS(4763), + [anon_sym_PERCENT] = ACTIONS(4763), + [anon_sym_DASH] = ACTIONS(4763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1708] = { + [sym_file_descriptor] = ACTIONS(3857), + [sym__concat] = ACTIONS(3857), + [anon_sym_PIPE] = ACTIONS(3859), + [anon_sym_RPAREN] = ACTIONS(3857), + [anon_sym_PIPE_AMP] = ACTIONS(3857), + [anon_sym_AMP_AMP] = ACTIONS(3857), + [anon_sym_PIPE_PIPE] = ACTIONS(3857), + [anon_sym_EQ_TILDE] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_GT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3857), + [anon_sym_AMP_GT] = ACTIONS(3859), + [anon_sym_AMP_GT_GT] = ACTIONS(3857), + [anon_sym_LT_AMP] = ACTIONS(3857), + [anon_sym_GT_AMP] = ACTIONS(3857), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_LT_LT_DASH] = ACTIONS(3857), + [anon_sym_LT_LT_LT] = ACTIONS(3857), + [sym__special_characters] = ACTIONS(3857), + [anon_sym_DQUOTE] = ACTIONS(3857), + [anon_sym_DOLLAR] = ACTIONS(3859), + [sym_raw_string] = ACTIONS(3857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3857), + [anon_sym_BQUOTE] = ACTIONS(3857), + [anon_sym_LT_LPAREN] = ACTIONS(3857), + [anon_sym_GT_LPAREN] = ACTIONS(3857), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3859), + }, + [1709] = { + [sym_concatenation] = STATE(2011), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2011), + [anon_sym_RBRACE] = ACTIONS(4767), + [anon_sym_EQ] = ACTIONS(4769), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4769), + [anon_sym_COLON_QMARK] = ACTIONS(4769), + [anon_sym_COLON_DASH] = ACTIONS(4769), + [anon_sym_PERCENT] = ACTIONS(4769), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1710] = { + [sym_file_descriptor] = ACTIONS(3867), + [sym__concat] = ACTIONS(3867), + [anon_sym_PIPE] = ACTIONS(3869), + [anon_sym_RPAREN] = ACTIONS(3867), + [anon_sym_PIPE_AMP] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3867), + [anon_sym_PIPE_PIPE] = ACTIONS(3867), + [anon_sym_EQ_TILDE] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_LT] = ACTIONS(3869), + [anon_sym_GT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3867), + [anon_sym_AMP_GT] = ACTIONS(3869), + [anon_sym_AMP_GT_GT] = ACTIONS(3867), + [anon_sym_LT_AMP] = ACTIONS(3867), + [anon_sym_GT_AMP] = ACTIONS(3867), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_LT_LT_DASH] = ACTIONS(3867), + [anon_sym_LT_LT_LT] = ACTIONS(3867), + [sym__special_characters] = ACTIONS(3867), + [anon_sym_DQUOTE] = ACTIONS(3867), + [anon_sym_DOLLAR] = ACTIONS(3869), + [sym_raw_string] = ACTIONS(3867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3867), + [anon_sym_BQUOTE] = ACTIONS(3867), + [anon_sym_LT_LPAREN] = ACTIONS(3867), + [anon_sym_GT_LPAREN] = ACTIONS(3867), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3869), + }, + [1711] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4773), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1712] = { + [sym_file_descriptor] = ACTIONS(3873), + [sym__concat] = ACTIONS(3873), + [anon_sym_PIPE] = ACTIONS(3875), + [anon_sym_RPAREN] = ACTIONS(3873), + [anon_sym_PIPE_AMP] = ACTIONS(3873), + [anon_sym_AMP_AMP] = ACTIONS(3873), + [anon_sym_PIPE_PIPE] = ACTIONS(3873), + [anon_sym_EQ_TILDE] = ACTIONS(3875), + [anon_sym_EQ_EQ] = ACTIONS(3875), + [anon_sym_LT] = ACTIONS(3875), + [anon_sym_GT] = ACTIONS(3875), + [anon_sym_GT_GT] = ACTIONS(3873), + [anon_sym_AMP_GT] = ACTIONS(3875), + [anon_sym_AMP_GT_GT] = ACTIONS(3873), + [anon_sym_LT_AMP] = ACTIONS(3873), + [anon_sym_GT_AMP] = ACTIONS(3873), + [anon_sym_LT_LT] = ACTIONS(3875), + [anon_sym_LT_LT_DASH] = ACTIONS(3873), + [anon_sym_LT_LT_LT] = ACTIONS(3873), + [sym__special_characters] = ACTIONS(3873), + [anon_sym_DQUOTE] = ACTIONS(3873), + [anon_sym_DOLLAR] = ACTIONS(3875), + [sym_raw_string] = ACTIONS(3873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3873), + [anon_sym_BQUOTE] = ACTIONS(3873), + [anon_sym_LT_LPAREN] = ACTIONS(3873), + [anon_sym_GT_LPAREN] = ACTIONS(3873), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3875), + }, + [1713] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4775), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1714] = { + [anon_sym_PIPE] = ACTIONS(3484), + [anon_sym_RPAREN] = ACTIONS(3486), + [anon_sym_PIPE_AMP] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3486), + [anon_sym_PIPE_PIPE] = ACTIONS(3486), + [anon_sym_BQUOTE] = ACTIONS(3486), + [sym_comment] = ACTIONS(54), + }, + [1715] = { + [aux_sym_concatenation_repeat1] = STATE(1715), + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_PIPE_AMP] = ACTIONS(1634), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE_PIPE] = ACTIONS(1634), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1634), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1634), + [anon_sym_LT_AMP] = ACTIONS(1634), + [anon_sym_GT_AMP] = ACTIONS(1634), + [anon_sym_LT_LT] = ACTIONS(1636), + [anon_sym_LT_LT_DASH] = ACTIONS(1634), + [anon_sym_LT_LT_LT] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + }, + [1716] = { + [sym_file_descriptor] = ACTIONS(4085), + [anon_sym_PIPE] = ACTIONS(4087), + [anon_sym_RPAREN] = ACTIONS(4085), + [anon_sym_PIPE_AMP] = ACTIONS(4085), + [anon_sym_AMP_AMP] = ACTIONS(4085), + [anon_sym_PIPE_PIPE] = ACTIONS(4085), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_GT_GT] = ACTIONS(4085), + [anon_sym_AMP_GT] = ACTIONS(4087), + [anon_sym_AMP_GT_GT] = ACTIONS(4085), + [anon_sym_LT_AMP] = ACTIONS(4085), + [anon_sym_GT_AMP] = ACTIONS(4085), + [anon_sym_LT_LT] = ACTIONS(4087), + [anon_sym_LT_LT_DASH] = ACTIONS(4085), + [anon_sym_LT_LT_LT] = ACTIONS(4085), + [anon_sym_BQUOTE] = ACTIONS(4085), + [sym_comment] = ACTIONS(54), + }, + [1717] = { + [aux_sym_concatenation_repeat1] = STATE(1717), + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(2575), + [sym_variable_name] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1634), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE_PIPE] = ACTIONS(1634), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1634), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1634), + [anon_sym_LT_AMP] = ACTIONS(1634), + [anon_sym_GT_AMP] = ACTIONS(1634), + [sym__special_characters] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LT_LPAREN] = ACTIONS(1634), + [anon_sym_GT_LPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1634), + }, + [1718] = { + [sym_file_redirect] = STATE(1965), + [sym_file_descriptor] = ACTIONS(3119), + [anon_sym_PIPE] = ACTIONS(3484), + [anon_sym_PIPE_AMP] = ACTIONS(3486), + [anon_sym_AMP_AMP] = ACTIONS(3486), + [anon_sym_PIPE_PIPE] = ACTIONS(3486), + [anon_sym_LT] = ACTIONS(3121), + [anon_sym_GT] = ACTIONS(3121), + [anon_sym_GT_GT] = ACTIONS(3123), + [anon_sym_AMP_GT] = ACTIONS(3121), + [anon_sym_AMP_GT_GT] = ACTIONS(3123), + [anon_sym_LT_AMP] = ACTIONS(3123), + [anon_sym_GT_AMP] = ACTIONS(3123), + [anon_sym_BQUOTE] = ACTIONS(3486), + [sym_comment] = ACTIONS(54), + }, + [1719] = { + [sym_concatenation] = STATE(1968), + [sym_string] = STATE(2015), + [sym_simple_expansion] = STATE(2015), + [sym_string_expansion] = STATE(2015), + [sym_expansion] = STATE(2015), + [sym_command_substitution] = STATE(2015), + [sym_process_substitution] = STATE(2015), + [sym__special_characters] = ACTIONS(4777), + [anon_sym_DQUOTE] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(824), + [sym_raw_string] = ACTIONS(4779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4779), + }, + [1720] = { + [aux_sym_concatenation_repeat1] = STATE(2016), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(660), + [anon_sym_PIPE_AMP] = ACTIONS(656), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_BQUOTE] = ACTIONS(656), + [sym_comment] = ACTIONS(54), + }, + [1721] = { + [aux_sym_concatenation_repeat1] = STATE(2016), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_PIPE_AMP] = ACTIONS(672), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_BQUOTE] = ACTIONS(672), + [sym_comment] = ACTIONS(54), + }, + [1722] = { + [aux_sym_concatenation_repeat1] = STATE(1722), + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1634), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE_PIPE] = ACTIONS(1634), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1634), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1634), + [anon_sym_LT_AMP] = ACTIONS(1634), + [anon_sym_GT_AMP] = ACTIONS(1634), + [anon_sym_LT_LT] = ACTIONS(1636), + [anon_sym_LT_LT_DASH] = ACTIONS(1634), + [anon_sym_LT_LT_LT] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + }, + [1723] = { + [sym_concatenation] = STATE(2020), + [sym_string] = STATE(2019), + [sym_simple_expansion] = STATE(2019), + [sym_string_expansion] = STATE(2019), + [sym_expansion] = STATE(2019), + [sym_command_substitution] = STATE(2019), + [sym_process_substitution] = STATE(2019), + [anon_sym_RBRACE] = ACTIONS(4781), + [sym__special_characters] = ACTIONS(4783), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(4785), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4785), + }, + [1724] = { + [sym__heredoc_middle] = ACTIONS(1724), + [sym__heredoc_end] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), + [sym_comment] = ACTIONS(54), + }, + [1725] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4787), + }, + [1726] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4789), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1727] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(4791), + [sym_comment] = ACTIONS(54), + }, + [1728] = { + [sym_concatenation] = STATE(2026), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2026), + [anon_sym_RBRACE] = ACTIONS(4793), + [anon_sym_EQ] = ACTIONS(4795), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4797), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(4799), + [anon_sym_COLON] = ACTIONS(4795), + [anon_sym_COLON_QMARK] = ACTIONS(4795), + [anon_sym_COLON_DASH] = ACTIONS(4795), + [anon_sym_PERCENT] = ACTIONS(4795), + [anon_sym_DASH] = ACTIONS(4795), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1729] = { + [sym_concatenation] = STATE(2029), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2029), + [anon_sym_RBRACE] = ACTIONS(4801), + [anon_sym_EQ] = ACTIONS(4803), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4805), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(4807), + [anon_sym_COLON] = ACTIONS(4803), + [anon_sym_COLON_QMARK] = ACTIONS(4803), + [anon_sym_COLON_DASH] = ACTIONS(4803), + [anon_sym_PERCENT] = ACTIONS(4803), + [anon_sym_DASH] = ACTIONS(4803), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1730] = { + [sym_concatenation] = STATE(2031), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2031), + [anon_sym_RBRACE] = ACTIONS(4781), + [anon_sym_EQ] = ACTIONS(4809), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(4813), + [anon_sym_COLON] = ACTIONS(4809), + [anon_sym_COLON_QMARK] = ACTIONS(4809), + [anon_sym_COLON_DASH] = ACTIONS(4809), + [anon_sym_PERCENT] = ACTIONS(4809), + [anon_sym_DASH] = ACTIONS(4809), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1731] = { + [sym__heredoc_middle] = ACTIONS(1790), + [sym__heredoc_end] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), + [sym_comment] = ACTIONS(54), + }, + [1732] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4815), + }, + [1733] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4817), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1734] = { + [sym__heredoc_middle] = ACTIONS(1798), + [sym__heredoc_end] = ACTIONS(1798), + [anon_sym_DOLLAR] = ACTIONS(1800), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1798), + [sym_comment] = ACTIONS(54), + }, + [1735] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4819), + }, + [1736] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4781), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1737] = { + [sym__concat] = ACTIONS(2672), + [anon_sym_RPAREN] = ACTIONS(2672), + [sym__special_characters] = ACTIONS(2672), + [anon_sym_DQUOTE] = ACTIONS(2672), + [anon_sym_DOLLAR] = ACTIONS(2674), + [sym_raw_string] = ACTIONS(2672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2672), + [anon_sym_BQUOTE] = ACTIONS(2672), + [anon_sym_LT_LPAREN] = ACTIONS(2672), + [anon_sym_GT_LPAREN] = ACTIONS(2672), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2672), + }, + [1738] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4821), + [sym_comment] = ACTIONS(54), + }, + [1739] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4823), + [sym_comment] = ACTIONS(54), + }, + [1740] = { + [anon_sym_RBRACE] = ACTIONS(4823), + [sym_comment] = ACTIONS(54), + }, + [1741] = { + [sym_concatenation] = STATE(2038), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2038), + [anon_sym_RBRACE] = ACTIONS(4825), + [anon_sym_EQ] = ACTIONS(4827), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4827), + [anon_sym_COLON_QMARK] = ACTIONS(4827), + [anon_sym_COLON_DASH] = ACTIONS(4827), + [anon_sym_PERCENT] = ACTIONS(4827), + [anon_sym_DASH] = ACTIONS(4827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1742] = { + [sym__concat] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [sym__special_characters] = ACTIONS(2750), + [anon_sym_DQUOTE] = ACTIONS(2750), + [anon_sym_DOLLAR] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2750), + [anon_sym_BQUOTE] = ACTIONS(2750), + [anon_sym_LT_LPAREN] = ACTIONS(2750), + [anon_sym_GT_LPAREN] = ACTIONS(2750), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2750), + }, + [1743] = { + [sym_concatenation] = STATE(2041), + [sym_string] = STATE(2040), + [sym_simple_expansion] = STATE(2040), + [sym_string_expansion] = STATE(2040), + [sym_expansion] = STATE(2040), + [sym_command_substitution] = STATE(2040), + [sym_process_substitution] = STATE(2040), + [anon_sym_RBRACE] = ACTIONS(4823), + [sym__special_characters] = ACTIONS(4831), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(4833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4833), + }, + [1744] = { + [sym__concat] = ACTIONS(2793), + [anon_sym_RPAREN] = ACTIONS(2793), + [sym__special_characters] = ACTIONS(2793), + [anon_sym_DQUOTE] = ACTIONS(2793), + [anon_sym_DOLLAR] = ACTIONS(2795), + [sym_raw_string] = ACTIONS(2793), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2793), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2793), + [anon_sym_BQUOTE] = ACTIONS(2793), + [anon_sym_LT_LPAREN] = ACTIONS(2793), + [anon_sym_GT_LPAREN] = ACTIONS(2793), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2793), + }, + [1745] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4835), + }, + [1746] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4837), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1747] = { + [sym__concat] = ACTIONS(2801), + [anon_sym_RPAREN] = ACTIONS(2801), + [sym__special_characters] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_DOLLAR] = ACTIONS(2803), + [sym_raw_string] = ACTIONS(2801), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2801), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2801), + [anon_sym_BQUOTE] = ACTIONS(2801), + [anon_sym_LT_LPAREN] = ACTIONS(2801), + [anon_sym_GT_LPAREN] = ACTIONS(2801), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2801), + }, + [1748] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4839), + }, + [1749] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4841), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1750] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4843), + }, + [1751] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4823), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1752] = { + [sym_concatenation] = STATE(2048), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2048), + [anon_sym_RBRACE] = ACTIONS(4845), + [anon_sym_EQ] = ACTIONS(4847), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1753] = { + [sym__concat] = ACTIONS(2817), + [anon_sym_RPAREN] = ACTIONS(2817), + [sym__special_characters] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2817), + [anon_sym_DOLLAR] = ACTIONS(2819), + [sym_raw_string] = ACTIONS(2817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2817), + [anon_sym_BQUOTE] = ACTIONS(2817), + [anon_sym_LT_LPAREN] = ACTIONS(2817), + [anon_sym_GT_LPAREN] = ACTIONS(2817), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2817), + }, + [1754] = { + [sym_concatenation] = STATE(2050), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2050), + [anon_sym_RBRACE] = ACTIONS(4851), + [anon_sym_EQ] = ACTIONS(4853), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1755] = { + [sym_file_descriptor] = ACTIONS(3740), + [sym__concat] = ACTIONS(3740), + [sym_variable_name] = ACTIONS(3740), + [anon_sym_PIPE] = ACTIONS(3742), + [anon_sym_RPAREN] = ACTIONS(3742), + [anon_sym_SEMI_SEMI] = ACTIONS(3742), + [anon_sym_PIPE_AMP] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_LT] = ACTIONS(3742), + [anon_sym_GT] = ACTIONS(3742), + [anon_sym_GT_GT] = ACTIONS(3742), + [anon_sym_AMP_GT] = ACTIONS(3742), + [anon_sym_AMP_GT_GT] = ACTIONS(3742), + [anon_sym_LT_AMP] = ACTIONS(3742), + [anon_sym_GT_AMP] = ACTIONS(3742), + [sym__special_characters] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_DOLLAR] = ACTIONS(3742), + [sym_raw_string] = ACTIONS(3742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3742), + [anon_sym_BQUOTE] = ACTIONS(3742), + [anon_sym_LT_LPAREN] = ACTIONS(3742), + [anon_sym_GT_LPAREN] = ACTIONS(3742), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_LF] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3742), + }, + [1756] = { + [sym_file_descriptor] = ACTIONS(3746), + [sym__concat] = ACTIONS(3746), + [sym_variable_name] = ACTIONS(3746), + [anon_sym_PIPE] = ACTIONS(3748), + [anon_sym_RPAREN] = ACTIONS(3748), + [anon_sym_SEMI_SEMI] = ACTIONS(3748), + [anon_sym_PIPE_AMP] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_PIPE_PIPE] = ACTIONS(3748), + [anon_sym_LT] = ACTIONS(3748), + [anon_sym_GT] = ACTIONS(3748), + [anon_sym_GT_GT] = ACTIONS(3748), + [anon_sym_AMP_GT] = ACTIONS(3748), + [anon_sym_AMP_GT_GT] = ACTIONS(3748), + [anon_sym_LT_AMP] = ACTIONS(3748), + [anon_sym_GT_AMP] = ACTIONS(3748), + [sym__special_characters] = ACTIONS(3748), + [anon_sym_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3748), + [sym_raw_string] = ACTIONS(3748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3748), + [anon_sym_BQUOTE] = ACTIONS(3748), + [anon_sym_LT_LPAREN] = ACTIONS(3748), + [anon_sym_GT_LPAREN] = ACTIONS(3748), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3748), + [anon_sym_SEMI] = ACTIONS(3748), + [anon_sym_LF] = ACTIONS(3746), + [anon_sym_AMP] = ACTIONS(3748), + }, + [1757] = { + [sym_file_descriptor] = ACTIONS(3831), + [sym__concat] = ACTIONS(3831), + [sym_variable_name] = ACTIONS(3831), + [anon_sym_PIPE] = ACTIONS(3833), + [anon_sym_RPAREN] = ACTIONS(3833), + [anon_sym_SEMI_SEMI] = ACTIONS(3833), + [anon_sym_PIPE_AMP] = ACTIONS(3833), + [anon_sym_AMP_AMP] = ACTIONS(3833), + [anon_sym_PIPE_PIPE] = ACTIONS(3833), + [anon_sym_LT] = ACTIONS(3833), + [anon_sym_GT] = ACTIONS(3833), + [anon_sym_GT_GT] = ACTIONS(3833), + [anon_sym_AMP_GT] = ACTIONS(3833), + [anon_sym_AMP_GT_GT] = ACTIONS(3833), + [anon_sym_LT_AMP] = ACTIONS(3833), + [anon_sym_GT_AMP] = ACTIONS(3833), + [sym__special_characters] = ACTIONS(3833), + [anon_sym_DQUOTE] = ACTIONS(3833), + [anon_sym_DOLLAR] = ACTIONS(3833), + [sym_raw_string] = ACTIONS(3833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3833), + [anon_sym_BQUOTE] = ACTIONS(3833), + [anon_sym_LT_LPAREN] = ACTIONS(3833), + [anon_sym_GT_LPAREN] = ACTIONS(3833), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3833), + [anon_sym_SEMI] = ACTIONS(3833), + [anon_sym_LF] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3833), + }, + [1758] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4857), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1759] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4859), + [sym_comment] = ACTIONS(54), + }, + [1760] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4861), + [sym_comment] = ACTIONS(54), + }, + [1761] = { + [anon_sym_RBRACE] = ACTIONS(4861), + [sym_comment] = ACTIONS(54), + }, + [1762] = { + [sym_concatenation] = STATE(2055), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2055), + [anon_sym_RBRACE] = ACTIONS(4863), + [anon_sym_EQ] = ACTIONS(4865), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4865), + [anon_sym_COLON_QMARK] = ACTIONS(4865), + [anon_sym_COLON_DASH] = ACTIONS(4865), + [anon_sym_PERCENT] = ACTIONS(4865), + [anon_sym_DASH] = ACTIONS(4865), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1763] = { + [sym_file_descriptor] = ACTIONS(3847), + [sym__concat] = ACTIONS(3847), + [sym_variable_name] = ACTIONS(3847), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_RPAREN] = ACTIONS(3849), + [anon_sym_SEMI_SEMI] = ACTIONS(3849), + [anon_sym_PIPE_AMP] = ACTIONS(3849), + [anon_sym_AMP_AMP] = ACTIONS(3849), + [anon_sym_PIPE_PIPE] = ACTIONS(3849), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_GT] = ACTIONS(3849), + [anon_sym_GT_GT] = ACTIONS(3849), + [anon_sym_AMP_GT] = ACTIONS(3849), + [anon_sym_AMP_GT_GT] = ACTIONS(3849), + [anon_sym_LT_AMP] = ACTIONS(3849), + [anon_sym_GT_AMP] = ACTIONS(3849), + [sym__special_characters] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3849), + [sym_raw_string] = ACTIONS(3849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3849), + [anon_sym_BQUOTE] = ACTIONS(3849), + [anon_sym_LT_LPAREN] = ACTIONS(3849), + [anon_sym_GT_LPAREN] = ACTIONS(3849), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3849), + [anon_sym_SEMI] = ACTIONS(3849), + [anon_sym_LF] = ACTIONS(3847), + [anon_sym_AMP] = ACTIONS(3849), + }, + [1764] = { + [sym_concatenation] = STATE(2057), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2057), + [anon_sym_RBRACE] = ACTIONS(4869), + [anon_sym_EQ] = ACTIONS(4871), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1765] = { + [sym_file_descriptor] = ACTIONS(3857), + [sym__concat] = ACTIONS(3857), + [sym_variable_name] = ACTIONS(3857), + [anon_sym_PIPE] = ACTIONS(3859), + [anon_sym_RPAREN] = ACTIONS(3859), + [anon_sym_SEMI_SEMI] = ACTIONS(3859), + [anon_sym_PIPE_AMP] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_GT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3859), + [anon_sym_AMP_GT] = ACTIONS(3859), + [anon_sym_AMP_GT_GT] = ACTIONS(3859), + [anon_sym_LT_AMP] = ACTIONS(3859), + [anon_sym_GT_AMP] = ACTIONS(3859), + [sym__special_characters] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_DOLLAR] = ACTIONS(3859), + [sym_raw_string] = ACTIONS(3859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3859), + [anon_sym_BQUOTE] = ACTIONS(3859), + [anon_sym_LT_LPAREN] = ACTIONS(3859), + [anon_sym_GT_LPAREN] = ACTIONS(3859), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3859), + [anon_sym_SEMI] = ACTIONS(3859), + [anon_sym_LF] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(3859), + }, + [1766] = { + [sym_concatenation] = STATE(2059), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2059), + [anon_sym_RBRACE] = ACTIONS(4875), + [anon_sym_EQ] = ACTIONS(4877), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1767] = { + [sym_file_descriptor] = ACTIONS(3867), + [sym__concat] = ACTIONS(3867), + [sym_variable_name] = ACTIONS(3867), + [anon_sym_PIPE] = ACTIONS(3869), + [anon_sym_RPAREN] = ACTIONS(3869), + [anon_sym_SEMI_SEMI] = ACTIONS(3869), + [anon_sym_PIPE_AMP] = ACTIONS(3869), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_LT] = ACTIONS(3869), + [anon_sym_GT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3869), + [anon_sym_AMP_GT] = ACTIONS(3869), + [anon_sym_AMP_GT_GT] = ACTIONS(3869), + [anon_sym_LT_AMP] = ACTIONS(3869), + [anon_sym_GT_AMP] = ACTIONS(3869), + [sym__special_characters] = ACTIONS(3869), + [anon_sym_DQUOTE] = ACTIONS(3869), + [anon_sym_DOLLAR] = ACTIONS(3869), + [sym_raw_string] = ACTIONS(3869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3869), + [anon_sym_BQUOTE] = ACTIONS(3869), + [anon_sym_LT_LPAREN] = ACTIONS(3869), + [anon_sym_GT_LPAREN] = ACTIONS(3869), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3869), + [anon_sym_SEMI] = ACTIONS(3869), + [anon_sym_LF] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3869), + }, + [1768] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4881), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1769] = { + [sym_file_descriptor] = ACTIONS(3873), + [sym__concat] = ACTIONS(3873), + [sym_variable_name] = ACTIONS(3873), + [anon_sym_PIPE] = ACTIONS(3875), + [anon_sym_RPAREN] = ACTIONS(3875), + [anon_sym_SEMI_SEMI] = ACTIONS(3875), + [anon_sym_PIPE_AMP] = ACTIONS(3875), + [anon_sym_AMP_AMP] = ACTIONS(3875), + [anon_sym_PIPE_PIPE] = ACTIONS(3875), + [anon_sym_LT] = ACTIONS(3875), + [anon_sym_GT] = ACTIONS(3875), + [anon_sym_GT_GT] = ACTIONS(3875), + [anon_sym_AMP_GT] = ACTIONS(3875), + [anon_sym_AMP_GT_GT] = ACTIONS(3875), + [anon_sym_LT_AMP] = ACTIONS(3875), + [anon_sym_GT_AMP] = ACTIONS(3875), + [sym__special_characters] = ACTIONS(3875), + [anon_sym_DQUOTE] = ACTIONS(3875), + [anon_sym_DOLLAR] = ACTIONS(3875), + [sym_raw_string] = ACTIONS(3875), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3875), + [anon_sym_BQUOTE] = ACTIONS(3875), + [anon_sym_LT_LPAREN] = ACTIONS(3875), + [anon_sym_GT_LPAREN] = ACTIONS(3875), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3875), + [anon_sym_SEMI] = ACTIONS(3875), + [anon_sym_LF] = ACTIONS(3873), + [anon_sym_AMP] = ACTIONS(3875), + }, + [1770] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4883), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1771] = { + [sym__concat] = ACTIONS(2672), + [anon_sym_SEMI_SEMI] = ACTIONS(2674), + [sym__special_characters] = ACTIONS(2674), + [anon_sym_DQUOTE] = ACTIONS(2674), + [anon_sym_DOLLAR] = ACTIONS(2674), + [sym_raw_string] = ACTIONS(2674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2674), + [anon_sym_BQUOTE] = ACTIONS(2674), + [anon_sym_LT_LPAREN] = ACTIONS(2674), + [anon_sym_GT_LPAREN] = ACTIONS(2674), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_LF] = ACTIONS(2672), + [anon_sym_AMP] = ACTIONS(2674), + }, + [1772] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4885), + [sym_comment] = ACTIONS(54), + }, + [1773] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(4887), + [sym_comment] = ACTIONS(54), + }, + [1774] = { + [anon_sym_RBRACE] = ACTIONS(4887), + [sym_comment] = ACTIONS(54), + }, + [1775] = { + [sym_concatenation] = STATE(2065), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2065), + [anon_sym_RBRACE] = ACTIONS(4889), + [anon_sym_EQ] = ACTIONS(4891), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1776] = { + [sym__concat] = ACTIONS(2750), + [anon_sym_SEMI_SEMI] = ACTIONS(2752), + [sym__special_characters] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2752), + [anon_sym_BQUOTE] = ACTIONS(2752), + [anon_sym_LT_LPAREN] = ACTIONS(2752), + [anon_sym_GT_LPAREN] = ACTIONS(2752), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2752), + }, + [1777] = { + [sym_concatenation] = STATE(2068), + [sym_string] = STATE(2067), + [sym_simple_expansion] = STATE(2067), + [sym_string_expansion] = STATE(2067), + [sym_expansion] = STATE(2067), + [sym_command_substitution] = STATE(2067), + [sym_process_substitution] = STATE(2067), + [anon_sym_RBRACE] = ACTIONS(4887), + [sym__special_characters] = ACTIONS(4895), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(4897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4897), + }, + [1778] = { + [sym__concat] = ACTIONS(2793), + [anon_sym_SEMI_SEMI] = ACTIONS(2795), + [sym__special_characters] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [anon_sym_DOLLAR] = ACTIONS(2795), + [sym_raw_string] = ACTIONS(2795), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2795), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2795), + [anon_sym_BQUOTE] = ACTIONS(2795), + [anon_sym_LT_LPAREN] = ACTIONS(2795), + [anon_sym_GT_LPAREN] = ACTIONS(2795), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_LF] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2795), + }, + [1779] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4899), + }, + [1780] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4901), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1781] = { + [sym__concat] = ACTIONS(2801), + [anon_sym_SEMI_SEMI] = ACTIONS(2803), + [sym__special_characters] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2803), + [sym_raw_string] = ACTIONS(2803), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2803), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2803), + [anon_sym_BQUOTE] = ACTIONS(2803), + [anon_sym_LT_LPAREN] = ACTIONS(2803), + [anon_sym_GT_LPAREN] = ACTIONS(2803), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_LF] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + }, + [1782] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4903), + }, + [1783] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4905), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1784] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(4907), + }, + [1785] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(4887), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1786] = { + [sym_concatenation] = STATE(2075), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2075), + [anon_sym_RBRACE] = ACTIONS(4909), + [anon_sym_EQ] = ACTIONS(4911), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4911), + [anon_sym_COLON_QMARK] = ACTIONS(4911), + [anon_sym_COLON_DASH] = ACTIONS(4911), + [anon_sym_PERCENT] = ACTIONS(4911), + [anon_sym_DASH] = ACTIONS(4911), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1787] = { + [sym__concat] = ACTIONS(2817), + [anon_sym_SEMI_SEMI] = ACTIONS(2819), + [sym__special_characters] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [anon_sym_DOLLAR] = ACTIONS(2819), + [sym_raw_string] = ACTIONS(2819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2819), + [anon_sym_BQUOTE] = ACTIONS(2819), + [anon_sym_LT_LPAREN] = ACTIONS(2819), + [anon_sym_GT_LPAREN] = ACTIONS(2819), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_LF] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2819), + }, + [1788] = { + [sym_concatenation] = STATE(2077), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2077), + [anon_sym_RBRACE] = ACTIONS(4915), + [anon_sym_EQ] = ACTIONS(4917), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(4919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(4917), + [anon_sym_COLON_QMARK] = ACTIONS(4917), + [anon_sym_COLON_DASH] = ACTIONS(4917), + [anon_sym_PERCENT] = ACTIONS(4917), + [anon_sym_DASH] = ACTIONS(4917), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1789] = { + [sym__terminated_statement] = STATE(1036), + [sym_for_statement] = STATE(592), + [sym_while_statement] = STATE(592), + [sym_if_statement] = STATE(592), + [sym_case_statement] = STATE(592), + [sym_function_definition] = STATE(592), + [sym_subshell] = STATE(592), + [sym_pipeline] = STATE(592), + [sym_list] = STATE(592), + [sym_command] = STATE(592), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(592), + [sym_variable_assignment] = STATE(594), + [sym_declaration_command] = STATE(592), + [sym_unset_command] = STATE(592), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1036), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_fi] = ACTIONS(4921), + [anon_sym_elif] = ACTIONS(4921), + [anon_sym_else] = ACTIONS(4921), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [1790] = { + [anon_sym_esac] = ACTIONS(4923), + [anon_sym_PIPE] = ACTIONS(4923), + [anon_sym_RPAREN] = ACTIONS(4923), + [anon_sym_SEMI_SEMI] = ACTIONS(4923), + [anon_sym_PIPE_AMP] = ACTIONS(4923), + [anon_sym_AMP_AMP] = ACTIONS(4923), + [anon_sym_PIPE_PIPE] = ACTIONS(4923), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4923), + [anon_sym_LF] = ACTIONS(4925), + [anon_sym_AMP] = ACTIONS(4923), + }, + [1791] = { + [aux_sym_concatenation_repeat1] = STATE(1448), + [sym__concat] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(4927), + [anon_sym_RPAREN] = ACTIONS(4927), + [sym_comment] = ACTIONS(54), + }, + [1792] = { + [aux_sym_concatenation_repeat1] = STATE(1448), + [sym__concat] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(4929), + [anon_sym_RPAREN] = ACTIONS(4929), + [sym_comment] = ACTIONS(54), + }, + [1793] = { + [anon_sym_PIPE] = ACTIONS(4929), + [anon_sym_RPAREN] = ACTIONS(4929), + [sym_comment] = ACTIONS(54), + }, + [1794] = { + [sym__assignment] = STATE(2079), + [anon_sym_LBRACK] = ACTIONS(62), + [anon_sym_EQ] = ACTIONS(4931), + [anon_sym_PLUS_EQ] = ACTIONS(4931), + [sym_comment] = ACTIONS(54), + }, + [1795] = { + [sym__terminated_statement] = STATE(2080), + [sym_for_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_case_statement] = STATE(38), + [sym_function_definition] = STATE(38), + [sym_subshell] = STATE(38), + [sym_pipeline] = STATE(38), + [sym_list] = STATE(38), + [sym_command] = STATE(38), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(38), + [sym_variable_assignment] = STATE(39), + [sym_declaration_command] = STATE(38), + [sym_unset_command] = STATE(38), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [1796] = { + [anon_sym_esac] = ACTIONS(4933), + [sym__special_characters] = ACTIONS(4935), + [anon_sym_DQUOTE] = ACTIONS(4935), + [anon_sym_DOLLAR] = ACTIONS(4937), + [sym_raw_string] = ACTIONS(4935), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4935), + [anon_sym_BQUOTE] = ACTIONS(4935), + [anon_sym_LT_LPAREN] = ACTIONS(4935), + [anon_sym_GT_LPAREN] = ACTIONS(4935), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4937), + }, + [1797] = { + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4939), + }, + [1798] = { + [sym_concatenation] = STATE(76), + [sym_string] = STATE(71), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [sym_expansion] = STATE(71), + [sym_command_substitution] = STATE(71), + [sym_process_substitution] = STATE(71), + [aux_sym_command_repeat2] = STATE(2082), + [anon_sym_EQ_TILDE] = ACTIONS(106), + [anon_sym_EQ_EQ] = ACTIONS(106), + [sym__special_characters] = ACTIONS(108), + [anon_sym_DQUOTE] = ACTIONS(110), + [anon_sym_DOLLAR] = ACTIONS(112), + [sym_raw_string] = ACTIONS(114), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(118), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_LT_LPAREN] = ACTIONS(122), + [anon_sym_GT_LPAREN] = ACTIONS(122), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(124), + }, + [1799] = { + [sym_concatenation] = STATE(87), + [sym_string] = STATE(82), + [sym_simple_expansion] = STATE(82), + [sym_string_expansion] = STATE(82), + [sym_expansion] = STATE(82), + [sym_command_substitution] = STATE(82), + [sym_process_substitution] = STATE(82), + [aux_sym_command_repeat2] = STATE(2083), + [anon_sym_EQ_TILDE] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(126), + [sym__special_characters] = ACTIONS(128), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(144), + }, + [1800] = { + [sym_variable_assignment] = STATE(2095), + [sym_subscript] = STATE(2094), + [sym_concatenation] = STATE(2095), + [sym_string] = STATE(2088), + [sym_simple_expansion] = STATE(2088), + [sym_string_expansion] = STATE(2088), + [sym_expansion] = STATE(2088), + [sym_command_substitution] = STATE(2088), + [sym_process_substitution] = STATE(2088), + [aux_sym_declaration_command_repeat1] = STATE(2095), + [sym_variable_name] = ACTIONS(4941), + [anon_sym_esac] = ACTIONS(148), + [anon_sym_PIPE] = ACTIONS(148), + [anon_sym_SEMI_SEMI] = ACTIONS(148), + [anon_sym_PIPE_AMP] = ACTIONS(148), + [anon_sym_AMP_AMP] = ACTIONS(148), + [anon_sym_PIPE_PIPE] = ACTIONS(148), + [sym__special_characters] = ACTIONS(4943), + [anon_sym_DQUOTE] = ACTIONS(4945), + [anon_sym_DOLLAR] = ACTIONS(4947), + [sym_raw_string] = ACTIONS(4949), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4953), + [anon_sym_BQUOTE] = ACTIONS(4955), + [anon_sym_LT_LPAREN] = ACTIONS(4957), + [anon_sym_GT_LPAREN] = ACTIONS(4957), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4959), + [sym_word] = ACTIONS(4949), + [anon_sym_SEMI] = ACTIONS(148), + [anon_sym_LF] = ACTIONS(170), + [anon_sym_AMP] = ACTIONS(148), + }, + [1801] = { + [sym_concatenation] = STATE(2105), + [sym_string] = STATE(2099), + [sym_simple_expansion] = STATE(2099), + [sym_string_expansion] = STATE(2099), + [sym_expansion] = STATE(2099), + [sym_command_substitution] = STATE(2099), + [sym_process_substitution] = STATE(2099), + [aux_sym_unset_command_repeat1] = STATE(2105), + [anon_sym_esac] = ACTIONS(172), + [anon_sym_PIPE] = ACTIONS(172), + [anon_sym_SEMI_SEMI] = ACTIONS(172), + [anon_sym_PIPE_AMP] = ACTIONS(172), + [anon_sym_AMP_AMP] = ACTIONS(172), + [anon_sym_PIPE_PIPE] = ACTIONS(172), + [sym__special_characters] = ACTIONS(4961), + [anon_sym_DQUOTE] = ACTIONS(4963), + [anon_sym_DOLLAR] = ACTIONS(4965), + [sym_raw_string] = ACTIONS(4967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4969), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4971), + [anon_sym_BQUOTE] = ACTIONS(4973), + [anon_sym_LT_LPAREN] = ACTIONS(4975), + [anon_sym_GT_LPAREN] = ACTIONS(4975), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4977), + [sym_word] = ACTIONS(4967), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_LF] = ACTIONS(192), + [anon_sym_AMP] = ACTIONS(172), + }, + [1802] = { + [aux_sym_concatenation_repeat1] = STATE(2107), + [sym_file_descriptor] = ACTIONS(210), + [sym__concat] = ACTIONS(4979), + [anon_sym_esac] = ACTIONS(214), + [anon_sym_PIPE] = ACTIONS(214), + [anon_sym_SEMI_SEMI] = ACTIONS(214), + [anon_sym_PIPE_AMP] = ACTIONS(214), + [anon_sym_AMP_AMP] = ACTIONS(214), + [anon_sym_PIPE_PIPE] = ACTIONS(214), + [anon_sym_EQ_TILDE] = ACTIONS(214), + [anon_sym_EQ_EQ] = ACTIONS(214), + [anon_sym_LT] = ACTIONS(214), + [anon_sym_GT] = ACTIONS(214), + [anon_sym_GT_GT] = ACTIONS(214), + [anon_sym_AMP_GT] = ACTIONS(214), + [anon_sym_AMP_GT_GT] = ACTIONS(214), + [anon_sym_LT_AMP] = ACTIONS(214), + [anon_sym_GT_AMP] = ACTIONS(214), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_LT_LT_DASH] = ACTIONS(214), + [anon_sym_LT_LT_LT] = ACTIONS(214), + [sym__special_characters] = ACTIONS(214), + [anon_sym_DQUOTE] = ACTIONS(214), + [anon_sym_DOLLAR] = ACTIONS(214), + [sym_raw_string] = ACTIONS(214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(214), + [anon_sym_BQUOTE] = ACTIONS(214), + [anon_sym_LT_LPAREN] = ACTIONS(214), + [anon_sym_GT_LPAREN] = ACTIONS(214), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(214), + [anon_sym_SEMI] = ACTIONS(214), + [anon_sym_LF] = ACTIONS(210), + [anon_sym_AMP] = ACTIONS(214), + }, + [1803] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(2109), + [anon_sym_DQUOTE] = ACTIONS(4981), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [1804] = { + [sym_string] = STATE(2111), + [anon_sym_DQUOTE] = ACTIONS(4262), + [anon_sym_DOLLAR] = ACTIONS(4983), + [sym_raw_string] = ACTIONS(4985), + [anon_sym_POUND] = ACTIONS(4983), + [anon_sym_DASH] = ACTIONS(4983), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4987), + [anon_sym_STAR] = ACTIONS(4983), + [anon_sym_AT] = ACTIONS(4983), + [anon_sym_QMARK] = ACTIONS(4983), + [anon_sym_0] = ACTIONS(4989), + [anon_sym__] = ACTIONS(4989), + }, + [1805] = { + [aux_sym_concatenation_repeat1] = STATE(2107), + [sym_file_descriptor] = ACTIONS(236), + [sym__concat] = ACTIONS(4979), + [anon_sym_esac] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(238), + [anon_sym_SEMI_SEMI] = ACTIONS(238), + [anon_sym_PIPE_AMP] = ACTIONS(238), + [anon_sym_AMP_AMP] = ACTIONS(238), + [anon_sym_PIPE_PIPE] = ACTIONS(238), + [anon_sym_EQ_TILDE] = ACTIONS(238), + [anon_sym_EQ_EQ] = ACTIONS(238), + [anon_sym_LT] = ACTIONS(238), + [anon_sym_GT] = ACTIONS(238), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(238), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_LT_LT] = ACTIONS(238), + [anon_sym_LT_LT_DASH] = ACTIONS(238), + [anon_sym_LT_LT_LT] = ACTIONS(238), + [sym__special_characters] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(238), + [anon_sym_SEMI] = ACTIONS(238), + [anon_sym_LF] = ACTIONS(236), + [anon_sym_AMP] = ACTIONS(238), + }, + [1806] = { + [sym_subscript] = STATE(2117), + [sym_variable_name] = ACTIONS(4991), + [anon_sym_DOLLAR] = ACTIONS(4993), + [anon_sym_POUND] = ACTIONS(4995), + [anon_sym_DASH] = ACTIONS(4993), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4997), + [anon_sym_STAR] = ACTIONS(4993), + [anon_sym_AT] = ACTIONS(4993), + [anon_sym_QMARK] = ACTIONS(4993), + [anon_sym_0] = ACTIONS(4999), + [anon_sym__] = ACTIONS(4999), + }, + [1807] = { + [sym_for_statement] = STATE(2118), + [sym_while_statement] = STATE(2118), + [sym_if_statement] = STATE(2118), + [sym_case_statement] = STATE(2118), + [sym_function_definition] = STATE(2118), + [sym_subshell] = STATE(2118), + [sym_pipeline] = STATE(2118), + [sym_list] = STATE(2118), + [sym_command] = STATE(2118), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(2118), + [sym_variable_assignment] = STATE(2119), + [sym_declaration_command] = STATE(2118), + [sym_unset_command] = STATE(2118), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [1808] = { + [sym_for_statement] = STATE(2120), + [sym_while_statement] = STATE(2120), + [sym_if_statement] = STATE(2120), + [sym_case_statement] = STATE(2120), + [sym_function_definition] = STATE(2120), + [sym_subshell] = STATE(2120), + [sym_pipeline] = STATE(2120), + [sym_list] = STATE(2120), + [sym_command] = STATE(2120), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(2120), + [sym_variable_assignment] = STATE(2121), + [sym_declaration_command] = STATE(2120), + [sym_unset_command] = STATE(2120), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), + }, + [1809] = { + [sym_for_statement] = STATE(2122), + [sym_while_statement] = STATE(2122), + [sym_if_statement] = STATE(2122), + [sym_case_statement] = STATE(2122), + [sym_function_definition] = STATE(2122), + [sym_subshell] = STATE(2122), + [sym_pipeline] = STATE(2122), + [sym_list] = STATE(2122), + [sym_command] = STATE(2122), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(2122), + [sym_variable_assignment] = STATE(2123), + [sym_declaration_command] = STATE(2122), + [sym_unset_command] = STATE(2122), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [1810] = { + [aux_sym_concatenation_repeat1] = STATE(2107), + [sym_file_descriptor] = ACTIONS(236), + [sym__concat] = ACTIONS(4979), + [anon_sym_esac] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(238), + [anon_sym_SEMI_SEMI] = ACTIONS(238), + [anon_sym_LPAREN] = ACTIONS(5001), + [anon_sym_PIPE_AMP] = ACTIONS(238), + [anon_sym_AMP_AMP] = ACTIONS(238), + [anon_sym_PIPE_PIPE] = ACTIONS(238), + [anon_sym_EQ_TILDE] = ACTIONS(238), + [anon_sym_EQ_EQ] = ACTIONS(238), + [anon_sym_LT] = ACTIONS(238), + [anon_sym_GT] = ACTIONS(238), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(238), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_LT_LT] = ACTIONS(238), + [anon_sym_LT_LT_DASH] = ACTIONS(238), + [anon_sym_LT_LT_LT] = ACTIONS(238), + [sym__special_characters] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(238), + [anon_sym_SEMI] = ACTIONS(238), + [anon_sym_LF] = ACTIONS(236), + [anon_sym_AMP] = ACTIONS(238), + }, + [1811] = { + [anon_sym_esac] = ACTIONS(4933), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_SEMI_SEMI] = ACTIONS(5005), + [anon_sym_PIPE_AMP] = ACTIONS(5003), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(5009), + [anon_sym_LF] = ACTIONS(5011), + [anon_sym_AMP] = ACTIONS(5009), + }, + [1812] = { + [sym_file_redirect] = STATE(2136), + [sym_heredoc_redirect] = STATE(2136), + [sym_herestring_redirect] = STATE(2136), + [sym_concatenation] = STATE(2135), + [sym_string] = STATE(2134), + [sym_simple_expansion] = STATE(2134), + [sym_string_expansion] = STATE(2134), + [sym_expansion] = STATE(2134), + [sym_command_substitution] = STATE(2134), + [sym_process_substitution] = STATE(2134), + [aux_sym_while_statement_repeat1] = STATE(2136), + [aux_sym_command_repeat2] = STATE(2137), + [sym_file_descriptor] = ACTIONS(5013), + [anon_sym_esac] = ACTIONS(324), + [anon_sym_PIPE] = ACTIONS(324), + [anon_sym_SEMI_SEMI] = ACTIONS(324), + [anon_sym_PIPE_AMP] = ACTIONS(324), + [anon_sym_AMP_AMP] = ACTIONS(324), + [anon_sym_PIPE_PIPE] = ACTIONS(324), + [anon_sym_EQ_TILDE] = ACTIONS(5015), + [anon_sym_EQ_EQ] = ACTIONS(5015), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_GT_GT] = ACTIONS(5017), + [anon_sym_AMP_GT] = ACTIONS(5017), + [anon_sym_AMP_GT_GT] = ACTIONS(5017), + [anon_sym_LT_AMP] = ACTIONS(5017), + [anon_sym_GT_AMP] = ACTIONS(5017), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(5019), + [sym__special_characters] = ACTIONS(5021), + [anon_sym_DQUOTE] = ACTIONS(5023), + [anon_sym_DOLLAR] = ACTIONS(4264), + [sym_raw_string] = ACTIONS(5025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5029), + [anon_sym_BQUOTE] = ACTIONS(5031), + [anon_sym_LT_LPAREN] = ACTIONS(5033), + [anon_sym_GT_LPAREN] = ACTIONS(5033), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5025), + [anon_sym_SEMI] = ACTIONS(324), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(324), + }, + [1813] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_esac] = ACTIONS(4933), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_SEMI_SEMI] = ACTIONS(5005), + [anon_sym_PIPE_AMP] = ACTIONS(5003), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(5009), + [anon_sym_LF] = ACTIONS(5011), + [anon_sym_AMP] = ACTIONS(5009), + }, + [1814] = { + [sym__assignment] = STATE(2079), + [anon_sym_EQ] = ACTIONS(4931), + [anon_sym_PLUS_EQ] = ACTIONS(4931), + [sym_comment] = ACTIONS(54), + }, + [1815] = { + [sym_file_descriptor] = ACTIONS(236), + [anon_sym_esac] = ACTIONS(238), + [anon_sym_PIPE] = ACTIONS(238), + [anon_sym_SEMI_SEMI] = ACTIONS(238), + [anon_sym_PIPE_AMP] = ACTIONS(238), + [anon_sym_AMP_AMP] = ACTIONS(238), + [anon_sym_PIPE_PIPE] = ACTIONS(238), + [anon_sym_EQ_TILDE] = ACTIONS(238), + [anon_sym_EQ_EQ] = ACTIONS(238), + [anon_sym_LT] = ACTIONS(238), + [anon_sym_GT] = ACTIONS(238), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(238), + [anon_sym_AMP_GT_GT] = ACTIONS(238), + [anon_sym_LT_AMP] = ACTIONS(238), + [anon_sym_GT_AMP] = ACTIONS(238), + [anon_sym_LT_LT] = ACTIONS(238), + [anon_sym_LT_LT_DASH] = ACTIONS(238), + [anon_sym_LT_LT_LT] = ACTIONS(238), + [sym__special_characters] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(238), + [sym_raw_string] = ACTIONS(238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(238), + [anon_sym_LT_LPAREN] = ACTIONS(238), + [anon_sym_GT_LPAREN] = ACTIONS(238), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(238), + [anon_sym_SEMI] = ACTIONS(238), + [anon_sym_LF] = ACTIONS(236), + [anon_sym_AMP] = ACTIONS(238), + }, + [1816] = { + [sym__terminated_statement] = STATE(2141), + [sym_for_statement] = STATE(2139), + [sym_while_statement] = STATE(2139), + [sym_if_statement] = STATE(2139), + [sym_case_statement] = STATE(2139), + [sym_function_definition] = STATE(2139), + [sym_subshell] = STATE(2139), + [sym_pipeline] = STATE(2139), + [sym_list] = STATE(2139), + [sym_command] = STATE(2139), + [sym_command_name] = STATE(1812), + [sym_bracket_command] = STATE(2139), + [sym_variable_assignment] = STATE(2140), + [sym_declaration_command] = STATE(2139), + [sym_unset_command] = STATE(2139), + [sym_subscript] = STATE(1814), + [sym_file_redirect] = STATE(1817), + [sym_concatenation] = STATE(1815), + [sym_string] = STATE(1805), + [sym_simple_expansion] = STATE(1805), + [sym_string_expansion] = STATE(1805), + [sym_expansion] = STATE(1805), + [sym_command_substitution] = STATE(1805), + [sym_process_substitution] = STATE(1805), + [aux_sym_program_repeat1] = STATE(2141), + [aux_sym_command_repeat1] = STATE(1817), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(4242), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_esac] = ACTIONS(4933), + [anon_sym_SEMI_SEMI] = ACTIONS(5035), + [anon_sym_function] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4254), + [anon_sym_declare] = ACTIONS(4256), + [anon_sym_typeset] = ACTIONS(4256), + [anon_sym_export] = ACTIONS(4256), + [anon_sym_readonly] = ACTIONS(4256), + [anon_sym_local] = ACTIONS(4256), + [anon_sym_unset] = ACTIONS(4258), + [anon_sym_unsetenv] = ACTIONS(4258), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(4260), + [anon_sym_DQUOTE] = ACTIONS(4262), + [anon_sym_DOLLAR] = ACTIONS(4264), + [sym_raw_string] = ACTIONS(4266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4270), + [anon_sym_BQUOTE] = ACTIONS(4272), + [anon_sym_LT_LPAREN] = ACTIONS(4274), + [anon_sym_GT_LPAREN] = ACTIONS(4274), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4276), + }, + [1817] = { + [sym_command_name] = STATE(2142), + [sym_variable_assignment] = STATE(198), + [sym_subscript] = STATE(197), + [sym_file_redirect] = STATE(198), + [sym_concatenation] = STATE(1815), + [sym_string] = STATE(1805), + [sym_simple_expansion] = STATE(1805), + [sym_string_expansion] = STATE(1805), + [sym_expansion] = STATE(1805), + [sym_command_substitution] = STATE(1805), + [sym_process_substitution] = STATE(1805), + [aux_sym_command_repeat1] = STATE(198), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(356), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(5037), + [anon_sym_DQUOTE] = ACTIONS(4262), + [anon_sym_DOLLAR] = ACTIONS(4264), + [sym_raw_string] = ACTIONS(4266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4270), + [anon_sym_BQUOTE] = ACTIONS(4272), + [anon_sym_LT_LPAREN] = ACTIONS(4274), + [anon_sym_GT_LPAREN] = ACTIONS(4274), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4266), + }, + [1818] = { + [sym__terminated_statement] = STATE(2143), + [sym_for_statement] = STATE(2139), + [sym_while_statement] = STATE(2139), + [sym_if_statement] = STATE(2139), + [sym_case_statement] = STATE(2139), + [sym_function_definition] = STATE(2139), + [sym_subshell] = STATE(2139), + [sym_pipeline] = STATE(2139), + [sym_list] = STATE(2139), + [sym_command] = STATE(2139), + [sym_command_name] = STATE(1812), + [sym_bracket_command] = STATE(2139), + [sym_variable_assignment] = STATE(2140), + [sym_declaration_command] = STATE(2139), + [sym_unset_command] = STATE(2139), + [sym_subscript] = STATE(1814), + [sym_file_redirect] = STATE(1817), + [sym_concatenation] = STATE(1815), + [sym_string] = STATE(1805), + [sym_simple_expansion] = STATE(1805), + [sym_string_expansion] = STATE(1805), + [sym_expansion] = STATE(1805), + [sym_command_substitution] = STATE(1805), + [sym_process_substitution] = STATE(1805), + [aux_sym_program_repeat1] = STATE(2143), + [aux_sym_command_repeat1] = STATE(1817), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(4242), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_esac] = ACTIONS(4933), + [anon_sym_SEMI_SEMI] = ACTIONS(5035), + [anon_sym_function] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4254), + [anon_sym_declare] = ACTIONS(4256), + [anon_sym_typeset] = ACTIONS(4256), + [anon_sym_export] = ACTIONS(4256), + [anon_sym_readonly] = ACTIONS(4256), + [anon_sym_local] = ACTIONS(4256), + [anon_sym_unset] = ACTIONS(4258), + [anon_sym_unsetenv] = ACTIONS(4258), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(4260), + [anon_sym_DQUOTE] = ACTIONS(4262), + [anon_sym_DOLLAR] = ACTIONS(4264), + [sym_raw_string] = ACTIONS(4266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4270), + [anon_sym_BQUOTE] = ACTIONS(4272), + [anon_sym_LT_LPAREN] = ACTIONS(4274), + [anon_sym_GT_LPAREN] = ACTIONS(4274), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4276), + }, + [1819] = { + [aux_sym_case_item_repeat1] = STATE(1819), + [anon_sym_PIPE] = ACTIONS(5039), + [anon_sym_RPAREN] = ACTIONS(4929), + [sym_comment] = ACTIONS(54), + }, + [1820] = { + [aux_sym_concatenation_repeat1] = STATE(1820), + [sym__concat] = ACTIONS(2444), + [anon_sym_PIPE] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + }, + [1821] = { + [anon_sym_esac] = ACTIONS(5042), + [sym__special_characters] = ACTIONS(5044), + [anon_sym_DQUOTE] = ACTIONS(5044), + [anon_sym_DOLLAR] = ACTIONS(5046), + [sym_raw_string] = ACTIONS(5044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5044), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5044), + [anon_sym_BQUOTE] = ACTIONS(5044), + [anon_sym_LT_LPAREN] = ACTIONS(5044), + [anon_sym_GT_LPAREN] = ACTIONS(5044), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5046), + }, + [1822] = { + [anon_sym_esac] = ACTIONS(5042), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_SEMI_SEMI] = ACTIONS(5048), + [anon_sym_PIPE_AMP] = ACTIONS(5003), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(5009), + [anon_sym_LF] = ACTIONS(5011), + [anon_sym_AMP] = ACTIONS(5009), + }, + [1823] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_esac] = ACTIONS(5042), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_SEMI_SEMI] = ACTIONS(5048), + [anon_sym_PIPE_AMP] = ACTIONS(5003), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(5009), + [anon_sym_LF] = ACTIONS(5011), + [anon_sym_AMP] = ACTIONS(5009), + }, + [1824] = { + [sym__terminated_statement] = STATE(2141), + [sym_for_statement] = STATE(2146), + [sym_while_statement] = STATE(2146), + [sym_if_statement] = STATE(2146), + [sym_case_statement] = STATE(2146), + [sym_function_definition] = STATE(2146), + [sym_subshell] = STATE(2146), + [sym_pipeline] = STATE(2146), + [sym_list] = STATE(2146), + [sym_command] = STATE(2146), + [sym_command_name] = STATE(1812), + [sym_bracket_command] = STATE(2146), + [sym_variable_assignment] = STATE(2147), + [sym_declaration_command] = STATE(2146), + [sym_unset_command] = STATE(2146), + [sym_subscript] = STATE(1814), + [sym_file_redirect] = STATE(1817), + [sym_concatenation] = STATE(1815), + [sym_string] = STATE(1805), + [sym_simple_expansion] = STATE(1805), + [sym_string_expansion] = STATE(1805), + [sym_expansion] = STATE(1805), + [sym_command_substitution] = STATE(1805), + [sym_process_substitution] = STATE(1805), + [aux_sym_program_repeat1] = STATE(2141), + [aux_sym_command_repeat1] = STATE(1817), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(4242), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_esac] = ACTIONS(5042), + [anon_sym_SEMI_SEMI] = ACTIONS(5050), + [anon_sym_function] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4254), + [anon_sym_declare] = ACTIONS(4256), + [anon_sym_typeset] = ACTIONS(4256), + [anon_sym_export] = ACTIONS(4256), + [anon_sym_readonly] = ACTIONS(4256), + [anon_sym_local] = ACTIONS(4256), + [anon_sym_unset] = ACTIONS(4258), + [anon_sym_unsetenv] = ACTIONS(4258), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(4260), + [anon_sym_DQUOTE] = ACTIONS(4262), + [anon_sym_DOLLAR] = ACTIONS(4264), + [sym_raw_string] = ACTIONS(4266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4270), + [anon_sym_BQUOTE] = ACTIONS(4272), + [anon_sym_LT_LPAREN] = ACTIONS(4274), + [anon_sym_GT_LPAREN] = ACTIONS(4274), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4276), + }, + [1825] = { + [sym__terminated_statement] = STATE(2148), + [sym_for_statement] = STATE(2146), + [sym_while_statement] = STATE(2146), + [sym_if_statement] = STATE(2146), + [sym_case_statement] = STATE(2146), + [sym_function_definition] = STATE(2146), + [sym_subshell] = STATE(2146), + [sym_pipeline] = STATE(2146), + [sym_list] = STATE(2146), + [sym_command] = STATE(2146), + [sym_command_name] = STATE(1812), + [sym_bracket_command] = STATE(2146), + [sym_variable_assignment] = STATE(2147), + [sym_declaration_command] = STATE(2146), + [sym_unset_command] = STATE(2146), + [sym_subscript] = STATE(1814), + [sym_file_redirect] = STATE(1817), + [sym_concatenation] = STATE(1815), + [sym_string] = STATE(1805), + [sym_simple_expansion] = STATE(1805), + [sym_string_expansion] = STATE(1805), + [sym_expansion] = STATE(1805), + [sym_command_substitution] = STATE(1805), + [sym_process_substitution] = STATE(1805), + [aux_sym_program_repeat1] = STATE(2148), + [aux_sym_command_repeat1] = STATE(1817), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(4242), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_esac] = ACTIONS(5042), + [anon_sym_SEMI_SEMI] = ACTIONS(5050), + [anon_sym_function] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4254), + [anon_sym_declare] = ACTIONS(4256), + [anon_sym_typeset] = ACTIONS(4256), + [anon_sym_export] = ACTIONS(4256), + [anon_sym_readonly] = ACTIONS(4256), + [anon_sym_local] = ACTIONS(4256), + [anon_sym_unset] = ACTIONS(4258), + [anon_sym_unsetenv] = ACTIONS(4258), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(4260), + [anon_sym_DQUOTE] = ACTIONS(4262), + [anon_sym_DOLLAR] = ACTIONS(4264), + [sym_raw_string] = ACTIONS(4266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4270), + [anon_sym_BQUOTE] = ACTIONS(4272), + [anon_sym_LT_LPAREN] = ACTIONS(4274), + [anon_sym_GT_LPAREN] = ACTIONS(4274), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4276), + }, + [1826] = { + [anon_sym_esac] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(5052), + [anon_sym_SEMI_SEMI] = ACTIONS(5052), + [anon_sym_PIPE_AMP] = ACTIONS(5052), + [anon_sym_AMP_AMP] = ACTIONS(5052), + [anon_sym_PIPE_PIPE] = ACTIONS(5052), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym_LF] = ACTIONS(5054), + [anon_sym_AMP] = ACTIONS(5052), + }, + [1827] = { + [aux_sym_case_item_repeat1] = STATE(2150), + [aux_sym_concatenation_repeat1] = STATE(1448), + [sym__concat] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_RPAREN] = ACTIONS(5056), + [sym_comment] = ACTIONS(54), + }, + [1828] = { + [aux_sym_case_item_repeat1] = STATE(2152), + [aux_sym_concatenation_repeat1] = STATE(1448), + [sym__concat] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_RPAREN] = ACTIONS(5058), + [sym_comment] = ACTIONS(54), + }, + [1829] = { + [aux_sym_case_item_repeat1] = STATE(2152), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_RPAREN] = ACTIONS(5058), + [sym_comment] = ACTIONS(54), + }, + [1830] = { + [anon_sym_esac] = ACTIONS(5060), + [sym_comment] = ACTIONS(54), + }, + [1831] = { + [anon_sym_esac] = ACTIONS(5062), + [anon_sym_PIPE] = ACTIONS(5062), + [anon_sym_RPAREN] = ACTIONS(5062), + [anon_sym_SEMI_SEMI] = ACTIONS(5062), + [anon_sym_PIPE_AMP] = ACTIONS(5062), + [anon_sym_AMP_AMP] = ACTIONS(5062), + [anon_sym_PIPE_PIPE] = ACTIONS(5062), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(5062), + [anon_sym_LF] = ACTIONS(5064), + [anon_sym_AMP] = ACTIONS(5062), + }, + [1832] = { + [anon_sym_esac] = ACTIONS(5066), + [sym_comment] = ACTIONS(54), + }, + [1833] = { + [sym__concat] = ACTIONS(4621), + [anon_sym_in] = ACTIONS(4623), + [anon_sym_SEMI_SEMI] = ACTIONS(4623), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_LF] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4623), + }, + [1834] = { + [sym__concat] = ACTIONS(4625), + [anon_sym_in] = ACTIONS(4627), + [anon_sym_SEMI_SEMI] = ACTIONS(4627), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_LF] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4627), + }, + [1835] = { + [sym__concat] = ACTIONS(4629), + [anon_sym_in] = ACTIONS(4631), + [anon_sym_SEMI_SEMI] = ACTIONS(4631), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4631), + [anon_sym_LF] = ACTIONS(4629), + [anon_sym_AMP] = ACTIONS(4631), + }, + [1836] = { + [sym__concat] = ACTIONS(4633), + [anon_sym_in] = ACTIONS(4635), + [anon_sym_SEMI_SEMI] = ACTIONS(4635), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_LF] = ACTIONS(4633), + [anon_sym_AMP] = ACTIONS(4635), + }, + [1837] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1838] = { + [sym__concat] = ACTIONS(4639), + [anon_sym_in] = ACTIONS(4641), + [anon_sym_SEMI_SEMI] = ACTIONS(4641), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4641), + [anon_sym_LF] = ACTIONS(4639), + [anon_sym_AMP] = ACTIONS(4641), + }, + [1839] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5070), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1840] = { + [sym__concat] = ACTIONS(4645), + [anon_sym_in] = ACTIONS(4647), + [anon_sym_SEMI_SEMI] = ACTIONS(4647), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4647), + [anon_sym_LF] = ACTIONS(4645), + [anon_sym_AMP] = ACTIONS(4647), + }, + [1841] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5072), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1842] = { + [sym__concat] = ACTIONS(4651), + [anon_sym_in] = ACTIONS(4653), + [anon_sym_SEMI_SEMI] = ACTIONS(4653), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4653), + [anon_sym_LF] = ACTIONS(4651), + [anon_sym_AMP] = ACTIONS(4653), + }, + [1843] = { + [sym__concat] = ACTIONS(4655), + [anon_sym_in] = ACTIONS(4657), + [anon_sym_SEMI_SEMI] = ACTIONS(4657), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4657), + [anon_sym_LF] = ACTIONS(4655), + [anon_sym_AMP] = ACTIONS(4657), + }, + [1844] = { + [aux_sym_concatenation_repeat1] = STATE(1844), + [sym__concat] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [1845] = { + [aux_sym_concatenation_repeat1] = STATE(1847), + [sym__concat] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1063), + [anon_sym_LF] = ACTIONS(1061), + [anon_sym_AMP] = ACTIONS(1063), + }, + [1846] = { + [aux_sym_concatenation_repeat1] = STATE(1847), + [sym__concat] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1067), + [anon_sym_SEMI_SEMI] = ACTIONS(1067), + [anon_sym_PIPE_AMP] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1067), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1067), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + }, + [1847] = { + [aux_sym_concatenation_repeat1] = STATE(2158), + [sym__concat] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(690), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), + }, + [1848] = { + [sym__concat] = ACTIONS(4621), + [anon_sym_EQ_TILDE] = ACTIONS(4623), + [anon_sym_EQ_EQ] = ACTIONS(4623), + [anon_sym_RBRACK] = ACTIONS(4621), + [sym__special_characters] = ACTIONS(4623), + [anon_sym_DQUOTE] = ACTIONS(4621), + [anon_sym_DOLLAR] = ACTIONS(4623), + [sym_raw_string] = ACTIONS(4621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4621), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4621), + [anon_sym_BQUOTE] = ACTIONS(4621), + [anon_sym_LT_LPAREN] = ACTIONS(4621), + [anon_sym_GT_LPAREN] = ACTIONS(4621), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4623), + }, + [1849] = { + [sym__concat] = ACTIONS(4625), + [anon_sym_EQ_TILDE] = ACTIONS(4627), + [anon_sym_EQ_EQ] = ACTIONS(4627), + [anon_sym_RBRACK] = ACTIONS(4625), + [sym__special_characters] = ACTIONS(4627), + [anon_sym_DQUOTE] = ACTIONS(4625), + [anon_sym_DOLLAR] = ACTIONS(4627), + [sym_raw_string] = ACTIONS(4625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4625), + [anon_sym_BQUOTE] = ACTIONS(4625), + [anon_sym_LT_LPAREN] = ACTIONS(4625), + [anon_sym_GT_LPAREN] = ACTIONS(4625), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4627), + }, + [1850] = { + [sym__concat] = ACTIONS(4629), + [anon_sym_EQ_TILDE] = ACTIONS(4631), + [anon_sym_EQ_EQ] = ACTIONS(4631), + [anon_sym_RBRACK] = ACTIONS(4629), + [sym__special_characters] = ACTIONS(4631), + [anon_sym_DQUOTE] = ACTIONS(4629), + [anon_sym_DOLLAR] = ACTIONS(4631), + [sym_raw_string] = ACTIONS(4629), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4629), + [anon_sym_BQUOTE] = ACTIONS(4629), + [anon_sym_LT_LPAREN] = ACTIONS(4629), + [anon_sym_GT_LPAREN] = ACTIONS(4629), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4631), + }, + [1851] = { + [sym__concat] = ACTIONS(4633), + [anon_sym_EQ_TILDE] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4635), + [anon_sym_RBRACK] = ACTIONS(4633), + [sym__special_characters] = ACTIONS(4635), + [anon_sym_DQUOTE] = ACTIONS(4633), + [anon_sym_DOLLAR] = ACTIONS(4635), + [sym_raw_string] = ACTIONS(4633), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4633), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4633), + [anon_sym_BQUOTE] = ACTIONS(4633), + [anon_sym_LT_LPAREN] = ACTIONS(4633), + [anon_sym_GT_LPAREN] = ACTIONS(4633), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4635), + }, + [1852] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5074), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1853] = { + [sym__concat] = ACTIONS(4639), + [anon_sym_EQ_TILDE] = ACTIONS(4641), + [anon_sym_EQ_EQ] = ACTIONS(4641), + [anon_sym_RBRACK] = ACTIONS(4639), + [sym__special_characters] = ACTIONS(4641), + [anon_sym_DQUOTE] = ACTIONS(4639), + [anon_sym_DOLLAR] = ACTIONS(4641), + [sym_raw_string] = ACTIONS(4639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4639), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4639), + [anon_sym_BQUOTE] = ACTIONS(4639), + [anon_sym_LT_LPAREN] = ACTIONS(4639), + [anon_sym_GT_LPAREN] = ACTIONS(4639), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4641), + }, + [1854] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5076), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1855] = { + [sym__concat] = ACTIONS(4645), + [anon_sym_EQ_TILDE] = ACTIONS(4647), + [anon_sym_EQ_EQ] = ACTIONS(4647), + [anon_sym_RBRACK] = ACTIONS(4645), + [sym__special_characters] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4645), + [anon_sym_DOLLAR] = ACTIONS(4647), + [sym_raw_string] = ACTIONS(4645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4645), + [anon_sym_BQUOTE] = ACTIONS(4645), + [anon_sym_LT_LPAREN] = ACTIONS(4645), + [anon_sym_GT_LPAREN] = ACTIONS(4645), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4647), + }, + [1856] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5078), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1857] = { + [sym__concat] = ACTIONS(4651), + [anon_sym_EQ_TILDE] = ACTIONS(4653), + [anon_sym_EQ_EQ] = ACTIONS(4653), + [anon_sym_RBRACK] = ACTIONS(4651), + [sym__special_characters] = ACTIONS(4653), + [anon_sym_DQUOTE] = ACTIONS(4651), + [anon_sym_DOLLAR] = ACTIONS(4653), + [sym_raw_string] = ACTIONS(4651), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4651), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4651), + [anon_sym_BQUOTE] = ACTIONS(4651), + [anon_sym_LT_LPAREN] = ACTIONS(4651), + [anon_sym_GT_LPAREN] = ACTIONS(4651), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4653), + }, + [1858] = { + [sym__concat] = ACTIONS(4655), + [anon_sym_EQ_TILDE] = ACTIONS(4657), + [anon_sym_EQ_EQ] = ACTIONS(4657), + [anon_sym_RBRACK] = ACTIONS(4655), + [sym__special_characters] = ACTIONS(4657), + [anon_sym_DQUOTE] = ACTIONS(4655), + [anon_sym_DOLLAR] = ACTIONS(4657), + [sym_raw_string] = ACTIONS(4655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4655), + [anon_sym_BQUOTE] = ACTIONS(4655), + [anon_sym_LT_LPAREN] = ACTIONS(4655), + [anon_sym_GT_LPAREN] = ACTIONS(4655), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4657), + }, + [1859] = { + [sym__concat] = ACTIONS(4621), + [anon_sym_PIPE] = ACTIONS(4621), + [anon_sym_RPAREN] = ACTIONS(4621), + [anon_sym_EQ_TILDE] = ACTIONS(4623), + [anon_sym_EQ_EQ] = ACTIONS(4623), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4621), + [sym__special_characters] = ACTIONS(4623), + [anon_sym_DQUOTE] = ACTIONS(4621), + [anon_sym_DOLLAR] = ACTIONS(4623), + [sym_raw_string] = ACTIONS(4621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4621), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4621), + [anon_sym_BQUOTE] = ACTIONS(4621), + [anon_sym_LT_LPAREN] = ACTIONS(4621), + [anon_sym_GT_LPAREN] = ACTIONS(4621), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4623), + }, + [1860] = { + [sym__concat] = ACTIONS(4625), + [anon_sym_PIPE] = ACTIONS(4625), + [anon_sym_RPAREN] = ACTIONS(4625), + [anon_sym_EQ_TILDE] = ACTIONS(4627), + [anon_sym_EQ_EQ] = ACTIONS(4627), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4625), + [sym__special_characters] = ACTIONS(4627), + [anon_sym_DQUOTE] = ACTIONS(4625), + [anon_sym_DOLLAR] = ACTIONS(4627), + [sym_raw_string] = ACTIONS(4625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4625), + [anon_sym_BQUOTE] = ACTIONS(4625), + [anon_sym_LT_LPAREN] = ACTIONS(4625), + [anon_sym_GT_LPAREN] = ACTIONS(4625), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4627), + }, + [1861] = { + [sym__concat] = ACTIONS(4629), + [anon_sym_PIPE] = ACTIONS(4629), + [anon_sym_RPAREN] = ACTIONS(4629), + [anon_sym_EQ_TILDE] = ACTIONS(4631), + [anon_sym_EQ_EQ] = ACTIONS(4631), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4629), + [sym__special_characters] = ACTIONS(4631), + [anon_sym_DQUOTE] = ACTIONS(4629), + [anon_sym_DOLLAR] = ACTIONS(4631), + [sym_raw_string] = ACTIONS(4629), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4629), + [anon_sym_BQUOTE] = ACTIONS(4629), + [anon_sym_LT_LPAREN] = ACTIONS(4629), + [anon_sym_GT_LPAREN] = ACTIONS(4629), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4631), + }, + [1862] = { + [sym__concat] = ACTIONS(4633), + [anon_sym_PIPE] = ACTIONS(4633), + [anon_sym_RPAREN] = ACTIONS(4633), + [anon_sym_EQ_TILDE] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4635), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4633), + [sym__special_characters] = ACTIONS(4635), + [anon_sym_DQUOTE] = ACTIONS(4633), + [anon_sym_DOLLAR] = ACTIONS(4635), + [sym_raw_string] = ACTIONS(4633), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4633), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4633), + [anon_sym_BQUOTE] = ACTIONS(4633), + [anon_sym_LT_LPAREN] = ACTIONS(4633), + [anon_sym_GT_LPAREN] = ACTIONS(4633), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4635), + }, + [1863] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5080), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1864] = { + [sym__concat] = ACTIONS(4639), + [anon_sym_PIPE] = ACTIONS(4639), + [anon_sym_RPAREN] = ACTIONS(4639), + [anon_sym_EQ_TILDE] = ACTIONS(4641), + [anon_sym_EQ_EQ] = ACTIONS(4641), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4639), + [sym__special_characters] = ACTIONS(4641), + [anon_sym_DQUOTE] = ACTIONS(4639), + [anon_sym_DOLLAR] = ACTIONS(4641), + [sym_raw_string] = ACTIONS(4639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4639), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4639), + [anon_sym_BQUOTE] = ACTIONS(4639), + [anon_sym_LT_LPAREN] = ACTIONS(4639), + [anon_sym_GT_LPAREN] = ACTIONS(4639), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4641), + }, + [1865] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5082), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1866] = { + [sym__concat] = ACTIONS(4645), + [anon_sym_PIPE] = ACTIONS(4645), + [anon_sym_RPAREN] = ACTIONS(4645), + [anon_sym_EQ_TILDE] = ACTIONS(4647), + [anon_sym_EQ_EQ] = ACTIONS(4647), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4645), + [sym__special_characters] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4645), + [anon_sym_DOLLAR] = ACTIONS(4647), + [sym_raw_string] = ACTIONS(4645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4645), + [anon_sym_BQUOTE] = ACTIONS(4645), + [anon_sym_LT_LPAREN] = ACTIONS(4645), + [anon_sym_GT_LPAREN] = ACTIONS(4645), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4647), + }, + [1867] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5084), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1868] = { + [sym__concat] = ACTIONS(4651), + [anon_sym_PIPE] = ACTIONS(4651), + [anon_sym_RPAREN] = ACTIONS(4651), + [anon_sym_EQ_TILDE] = ACTIONS(4653), + [anon_sym_EQ_EQ] = ACTIONS(4653), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4651), + [sym__special_characters] = ACTIONS(4653), + [anon_sym_DQUOTE] = ACTIONS(4651), + [anon_sym_DOLLAR] = ACTIONS(4653), + [sym_raw_string] = ACTIONS(4651), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4651), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4651), + [anon_sym_BQUOTE] = ACTIONS(4651), + [anon_sym_LT_LPAREN] = ACTIONS(4651), + [anon_sym_GT_LPAREN] = ACTIONS(4651), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4653), + }, + [1869] = { + [sym__concat] = ACTIONS(4655), + [anon_sym_PIPE] = ACTIONS(4655), + [anon_sym_RPAREN] = ACTIONS(4655), + [anon_sym_EQ_TILDE] = ACTIONS(4657), + [anon_sym_EQ_EQ] = ACTIONS(4657), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4655), + [sym__special_characters] = ACTIONS(4657), + [anon_sym_DQUOTE] = ACTIONS(4655), + [anon_sym_DOLLAR] = ACTIONS(4657), + [sym_raw_string] = ACTIONS(4655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4655), + [anon_sym_BQUOTE] = ACTIONS(4655), + [anon_sym_LT_LPAREN] = ACTIONS(4655), + [anon_sym_GT_LPAREN] = ACTIONS(4655), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4657), + }, + [1870] = { + [sym__concat] = ACTIONS(4621), + [sym_variable_name] = ACTIONS(4621), + [anon_sym_PIPE] = ACTIONS(4623), + [anon_sym_RPAREN] = ACTIONS(4623), + [anon_sym_SEMI_SEMI] = ACTIONS(4623), + [anon_sym_PIPE_AMP] = ACTIONS(4623), + [anon_sym_AMP_AMP] = ACTIONS(4623), + [anon_sym_PIPE_PIPE] = ACTIONS(4623), + [sym__special_characters] = ACTIONS(4623), + [anon_sym_DQUOTE] = ACTIONS(4623), + [anon_sym_DOLLAR] = ACTIONS(4623), + [sym_raw_string] = ACTIONS(4623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4623), + [anon_sym_BQUOTE] = ACTIONS(4623), + [anon_sym_LT_LPAREN] = ACTIONS(4623), + [anon_sym_GT_LPAREN] = ACTIONS(4623), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4623), + [sym_word] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_LF] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4623), + }, + [1871] = { + [sym__concat] = ACTIONS(4625), + [sym_variable_name] = ACTIONS(4625), + [anon_sym_PIPE] = ACTIONS(4627), + [anon_sym_RPAREN] = ACTIONS(4627), + [anon_sym_SEMI_SEMI] = ACTIONS(4627), + [anon_sym_PIPE_AMP] = ACTIONS(4627), + [anon_sym_AMP_AMP] = ACTIONS(4627), + [anon_sym_PIPE_PIPE] = ACTIONS(4627), + [sym__special_characters] = ACTIONS(4627), + [anon_sym_DQUOTE] = ACTIONS(4627), + [anon_sym_DOLLAR] = ACTIONS(4627), + [sym_raw_string] = ACTIONS(4627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4627), + [anon_sym_BQUOTE] = ACTIONS(4627), + [anon_sym_LT_LPAREN] = ACTIONS(4627), + [anon_sym_GT_LPAREN] = ACTIONS(4627), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4627), + [sym_word] = ACTIONS(4627), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_LF] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4627), + }, + [1872] = { + [sym__concat] = ACTIONS(4629), + [sym_variable_name] = ACTIONS(4629), + [anon_sym_PIPE] = ACTIONS(4631), + [anon_sym_RPAREN] = ACTIONS(4631), + [anon_sym_SEMI_SEMI] = ACTIONS(4631), + [anon_sym_PIPE_AMP] = ACTIONS(4631), + [anon_sym_AMP_AMP] = ACTIONS(4631), + [anon_sym_PIPE_PIPE] = ACTIONS(4631), + [sym__special_characters] = ACTIONS(4631), + [anon_sym_DQUOTE] = ACTIONS(4631), + [anon_sym_DOLLAR] = ACTIONS(4631), + [sym_raw_string] = ACTIONS(4631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4631), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4631), + [anon_sym_BQUOTE] = ACTIONS(4631), + [anon_sym_LT_LPAREN] = ACTIONS(4631), + [anon_sym_GT_LPAREN] = ACTIONS(4631), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4631), + [sym_word] = ACTIONS(4631), + [anon_sym_SEMI] = ACTIONS(4631), + [anon_sym_LF] = ACTIONS(4629), + [anon_sym_AMP] = ACTIONS(4631), + }, + [1873] = { + [sym__concat] = ACTIONS(4633), + [sym_variable_name] = ACTIONS(4633), + [anon_sym_PIPE] = ACTIONS(4635), + [anon_sym_RPAREN] = ACTIONS(4635), + [anon_sym_SEMI_SEMI] = ACTIONS(4635), + [anon_sym_PIPE_AMP] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [sym__special_characters] = ACTIONS(4635), + [anon_sym_DQUOTE] = ACTIONS(4635), + [anon_sym_DOLLAR] = ACTIONS(4635), + [sym_raw_string] = ACTIONS(4635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4635), + [anon_sym_BQUOTE] = ACTIONS(4635), + [anon_sym_LT_LPAREN] = ACTIONS(4635), + [anon_sym_GT_LPAREN] = ACTIONS(4635), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4635), + [sym_word] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_LF] = ACTIONS(4633), + [anon_sym_AMP] = ACTIONS(4635), + }, + [1874] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5086), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1875] = { + [sym__concat] = ACTIONS(4639), + [sym_variable_name] = ACTIONS(4639), + [anon_sym_PIPE] = ACTIONS(4641), + [anon_sym_RPAREN] = ACTIONS(4641), + [anon_sym_SEMI_SEMI] = ACTIONS(4641), + [anon_sym_PIPE_AMP] = ACTIONS(4641), + [anon_sym_AMP_AMP] = ACTIONS(4641), + [anon_sym_PIPE_PIPE] = ACTIONS(4641), + [sym__special_characters] = ACTIONS(4641), + [anon_sym_DQUOTE] = ACTIONS(4641), + [anon_sym_DOLLAR] = ACTIONS(4641), + [sym_raw_string] = ACTIONS(4641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4641), + [anon_sym_BQUOTE] = ACTIONS(4641), + [anon_sym_LT_LPAREN] = ACTIONS(4641), + [anon_sym_GT_LPAREN] = ACTIONS(4641), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4641), + [sym_word] = ACTIONS(4641), + [anon_sym_SEMI] = ACTIONS(4641), + [anon_sym_LF] = ACTIONS(4639), + [anon_sym_AMP] = ACTIONS(4641), + }, + [1876] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5088), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1877] = { + [sym__concat] = ACTIONS(4645), + [sym_variable_name] = ACTIONS(4645), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_RPAREN] = ACTIONS(4647), + [anon_sym_SEMI_SEMI] = ACTIONS(4647), + [anon_sym_PIPE_AMP] = ACTIONS(4647), + [anon_sym_AMP_AMP] = ACTIONS(4647), + [anon_sym_PIPE_PIPE] = ACTIONS(4647), + [sym__special_characters] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4647), + [anon_sym_DOLLAR] = ACTIONS(4647), + [sym_raw_string] = ACTIONS(4647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4647), + [anon_sym_BQUOTE] = ACTIONS(4647), + [anon_sym_LT_LPAREN] = ACTIONS(4647), + [anon_sym_GT_LPAREN] = ACTIONS(4647), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4647), + [sym_word] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4647), + [anon_sym_LF] = ACTIONS(4645), + [anon_sym_AMP] = ACTIONS(4647), + }, + [1878] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5090), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1879] = { + [sym__concat] = ACTIONS(4651), + [sym_variable_name] = ACTIONS(4651), + [anon_sym_PIPE] = ACTIONS(4653), + [anon_sym_RPAREN] = ACTIONS(4653), + [anon_sym_SEMI_SEMI] = ACTIONS(4653), + [anon_sym_PIPE_AMP] = ACTIONS(4653), + [anon_sym_AMP_AMP] = ACTIONS(4653), + [anon_sym_PIPE_PIPE] = ACTIONS(4653), + [sym__special_characters] = ACTIONS(4653), + [anon_sym_DQUOTE] = ACTIONS(4653), + [anon_sym_DOLLAR] = ACTIONS(4653), + [sym_raw_string] = ACTIONS(4653), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4653), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4653), + [anon_sym_BQUOTE] = ACTIONS(4653), + [anon_sym_LT_LPAREN] = ACTIONS(4653), + [anon_sym_GT_LPAREN] = ACTIONS(4653), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4653), + [sym_word] = ACTIONS(4653), + [anon_sym_SEMI] = ACTIONS(4653), + [anon_sym_LF] = ACTIONS(4651), + [anon_sym_AMP] = ACTIONS(4653), + }, + [1880] = { + [sym__concat] = ACTIONS(4655), + [sym_variable_name] = ACTIONS(4655), + [anon_sym_PIPE] = ACTIONS(4657), + [anon_sym_RPAREN] = ACTIONS(4657), + [anon_sym_SEMI_SEMI] = ACTIONS(4657), + [anon_sym_PIPE_AMP] = ACTIONS(4657), + [anon_sym_AMP_AMP] = ACTIONS(4657), + [anon_sym_PIPE_PIPE] = ACTIONS(4657), + [sym__special_characters] = ACTIONS(4657), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_DOLLAR] = ACTIONS(4657), + [sym_raw_string] = ACTIONS(4657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4657), + [anon_sym_BQUOTE] = ACTIONS(4657), + [anon_sym_LT_LPAREN] = ACTIONS(4657), + [anon_sym_GT_LPAREN] = ACTIONS(4657), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4657), + [sym_word] = ACTIONS(4657), + [anon_sym_SEMI] = ACTIONS(4657), + [anon_sym_LF] = ACTIONS(4655), + [anon_sym_AMP] = ACTIONS(4657), + }, + [1881] = { + [sym__concat] = ACTIONS(4621), + [anon_sym_PIPE] = ACTIONS(4623), + [anon_sym_RPAREN] = ACTIONS(4623), + [anon_sym_SEMI_SEMI] = ACTIONS(4623), + [anon_sym_PIPE_AMP] = ACTIONS(4623), + [anon_sym_AMP_AMP] = ACTIONS(4623), + [anon_sym_PIPE_PIPE] = ACTIONS(4623), + [sym__special_characters] = ACTIONS(4623), + [anon_sym_DQUOTE] = ACTIONS(4623), + [anon_sym_DOLLAR] = ACTIONS(4623), + [sym_raw_string] = ACTIONS(4623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4623), + [anon_sym_BQUOTE] = ACTIONS(4623), + [anon_sym_LT_LPAREN] = ACTIONS(4623), + [anon_sym_GT_LPAREN] = ACTIONS(4623), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4623), + [sym_word] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_LF] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4623), + }, + [1882] = { + [sym__concat] = ACTIONS(4625), + [anon_sym_PIPE] = ACTIONS(4627), + [anon_sym_RPAREN] = ACTIONS(4627), + [anon_sym_SEMI_SEMI] = ACTIONS(4627), + [anon_sym_PIPE_AMP] = ACTIONS(4627), + [anon_sym_AMP_AMP] = ACTIONS(4627), + [anon_sym_PIPE_PIPE] = ACTIONS(4627), + [sym__special_characters] = ACTIONS(4627), + [anon_sym_DQUOTE] = ACTIONS(4627), + [anon_sym_DOLLAR] = ACTIONS(4627), + [sym_raw_string] = ACTIONS(4627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4627), + [anon_sym_BQUOTE] = ACTIONS(4627), + [anon_sym_LT_LPAREN] = ACTIONS(4627), + [anon_sym_GT_LPAREN] = ACTIONS(4627), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4627), + [sym_word] = ACTIONS(4627), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_LF] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4627), + }, + [1883] = { + [sym__concat] = ACTIONS(4629), + [anon_sym_PIPE] = ACTIONS(4631), + [anon_sym_RPAREN] = ACTIONS(4631), + [anon_sym_SEMI_SEMI] = ACTIONS(4631), + [anon_sym_PIPE_AMP] = ACTIONS(4631), + [anon_sym_AMP_AMP] = ACTIONS(4631), + [anon_sym_PIPE_PIPE] = ACTIONS(4631), + [sym__special_characters] = ACTIONS(4631), + [anon_sym_DQUOTE] = ACTIONS(4631), + [anon_sym_DOLLAR] = ACTIONS(4631), + [sym_raw_string] = ACTIONS(4631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4631), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4631), + [anon_sym_BQUOTE] = ACTIONS(4631), + [anon_sym_LT_LPAREN] = ACTIONS(4631), + [anon_sym_GT_LPAREN] = ACTIONS(4631), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4631), + [sym_word] = ACTIONS(4631), + [anon_sym_SEMI] = ACTIONS(4631), + [anon_sym_LF] = ACTIONS(4629), + [anon_sym_AMP] = ACTIONS(4631), + }, + [1884] = { + [sym__concat] = ACTIONS(4633), + [anon_sym_PIPE] = ACTIONS(4635), + [anon_sym_RPAREN] = ACTIONS(4635), + [anon_sym_SEMI_SEMI] = ACTIONS(4635), + [anon_sym_PIPE_AMP] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [sym__special_characters] = ACTIONS(4635), + [anon_sym_DQUOTE] = ACTIONS(4635), + [anon_sym_DOLLAR] = ACTIONS(4635), + [sym_raw_string] = ACTIONS(4635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4635), + [anon_sym_BQUOTE] = ACTIONS(4635), + [anon_sym_LT_LPAREN] = ACTIONS(4635), + [anon_sym_GT_LPAREN] = ACTIONS(4635), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4635), + [sym_word] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_LF] = ACTIONS(4633), + [anon_sym_AMP] = ACTIONS(4635), + }, + [1885] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5092), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1886] = { + [sym__concat] = ACTIONS(4639), + [anon_sym_PIPE] = ACTIONS(4641), + [anon_sym_RPAREN] = ACTIONS(4641), + [anon_sym_SEMI_SEMI] = ACTIONS(4641), + [anon_sym_PIPE_AMP] = ACTIONS(4641), + [anon_sym_AMP_AMP] = ACTIONS(4641), + [anon_sym_PIPE_PIPE] = ACTIONS(4641), + [sym__special_characters] = ACTIONS(4641), + [anon_sym_DQUOTE] = ACTIONS(4641), + [anon_sym_DOLLAR] = ACTIONS(4641), + [sym_raw_string] = ACTIONS(4641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4641), + [anon_sym_BQUOTE] = ACTIONS(4641), + [anon_sym_LT_LPAREN] = ACTIONS(4641), + [anon_sym_GT_LPAREN] = ACTIONS(4641), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4641), + [sym_word] = ACTIONS(4641), + [anon_sym_SEMI] = ACTIONS(4641), + [anon_sym_LF] = ACTIONS(4639), + [anon_sym_AMP] = ACTIONS(4641), + }, + [1887] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5094), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1888] = { + [sym__concat] = ACTIONS(4645), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_RPAREN] = ACTIONS(4647), + [anon_sym_SEMI_SEMI] = ACTIONS(4647), + [anon_sym_PIPE_AMP] = ACTIONS(4647), + [anon_sym_AMP_AMP] = ACTIONS(4647), + [anon_sym_PIPE_PIPE] = ACTIONS(4647), + [sym__special_characters] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4647), + [anon_sym_DOLLAR] = ACTIONS(4647), + [sym_raw_string] = ACTIONS(4647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4647), + [anon_sym_BQUOTE] = ACTIONS(4647), + [anon_sym_LT_LPAREN] = ACTIONS(4647), + [anon_sym_GT_LPAREN] = ACTIONS(4647), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4647), + [sym_word] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4647), + [anon_sym_LF] = ACTIONS(4645), + [anon_sym_AMP] = ACTIONS(4647), + }, + [1889] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5096), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1890] = { + [sym__concat] = ACTIONS(4651), + [anon_sym_PIPE] = ACTIONS(4653), + [anon_sym_RPAREN] = ACTIONS(4653), + [anon_sym_SEMI_SEMI] = ACTIONS(4653), + [anon_sym_PIPE_AMP] = ACTIONS(4653), + [anon_sym_AMP_AMP] = ACTIONS(4653), + [anon_sym_PIPE_PIPE] = ACTIONS(4653), + [sym__special_characters] = ACTIONS(4653), + [anon_sym_DQUOTE] = ACTIONS(4653), + [anon_sym_DOLLAR] = ACTIONS(4653), + [sym_raw_string] = ACTIONS(4653), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4653), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4653), + [anon_sym_BQUOTE] = ACTIONS(4653), + [anon_sym_LT_LPAREN] = ACTIONS(4653), + [anon_sym_GT_LPAREN] = ACTIONS(4653), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4653), + [sym_word] = ACTIONS(4653), + [anon_sym_SEMI] = ACTIONS(4653), + [anon_sym_LF] = ACTIONS(4651), + [anon_sym_AMP] = ACTIONS(4653), + }, + [1891] = { + [sym__concat] = ACTIONS(4655), + [anon_sym_PIPE] = ACTIONS(4657), + [anon_sym_RPAREN] = ACTIONS(4657), + [anon_sym_SEMI_SEMI] = ACTIONS(4657), + [anon_sym_PIPE_AMP] = ACTIONS(4657), + [anon_sym_AMP_AMP] = ACTIONS(4657), + [anon_sym_PIPE_PIPE] = ACTIONS(4657), + [sym__special_characters] = ACTIONS(4657), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_DOLLAR] = ACTIONS(4657), + [sym_raw_string] = ACTIONS(4657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4657), + [anon_sym_BQUOTE] = ACTIONS(4657), + [anon_sym_LT_LPAREN] = ACTIONS(4657), + [anon_sym_GT_LPAREN] = ACTIONS(4657), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4657), + [sym_word] = ACTIONS(4657), + [anon_sym_SEMI] = ACTIONS(4657), + [anon_sym_LF] = ACTIONS(4655), + [anon_sym_AMP] = ACTIONS(4657), + }, + [1892] = { + [sym_file_descriptor] = ACTIONS(4621), + [sym__concat] = ACTIONS(4621), + [sym_variable_name] = ACTIONS(4621), + [anon_sym_PIPE] = ACTIONS(4623), + [anon_sym_RPAREN] = ACTIONS(4621), + [anon_sym_PIPE_AMP] = ACTIONS(4621), + [anon_sym_AMP_AMP] = ACTIONS(4621), + [anon_sym_PIPE_PIPE] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_GT_GT] = ACTIONS(4621), + [anon_sym_AMP_GT] = ACTIONS(4623), + [anon_sym_AMP_GT_GT] = ACTIONS(4621), + [anon_sym_LT_AMP] = ACTIONS(4621), + [anon_sym_GT_AMP] = ACTIONS(4621), + [sym__special_characters] = ACTIONS(4621), + [anon_sym_DQUOTE] = ACTIONS(4621), + [anon_sym_DOLLAR] = ACTIONS(4623), + [sym_raw_string] = ACTIONS(4621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4621), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4621), + [anon_sym_BQUOTE] = ACTIONS(4621), + [anon_sym_LT_LPAREN] = ACTIONS(4621), + [anon_sym_GT_LPAREN] = ACTIONS(4621), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4621), + }, + [1893] = { + [sym_file_descriptor] = ACTIONS(4625), + [sym__concat] = ACTIONS(4625), + [sym_variable_name] = ACTIONS(4625), + [anon_sym_PIPE] = ACTIONS(4627), + [anon_sym_RPAREN] = ACTIONS(4625), + [anon_sym_PIPE_AMP] = ACTIONS(4625), + [anon_sym_AMP_AMP] = ACTIONS(4625), + [anon_sym_PIPE_PIPE] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4627), + [anon_sym_GT_GT] = ACTIONS(4625), + [anon_sym_AMP_GT] = ACTIONS(4627), + [anon_sym_AMP_GT_GT] = ACTIONS(4625), + [anon_sym_LT_AMP] = ACTIONS(4625), + [anon_sym_GT_AMP] = ACTIONS(4625), + [sym__special_characters] = ACTIONS(4625), + [anon_sym_DQUOTE] = ACTIONS(4625), + [anon_sym_DOLLAR] = ACTIONS(4627), + [sym_raw_string] = ACTIONS(4625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4625), + [anon_sym_BQUOTE] = ACTIONS(4625), + [anon_sym_LT_LPAREN] = ACTIONS(4625), + [anon_sym_GT_LPAREN] = ACTIONS(4625), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4625), + }, + [1894] = { + [sym_file_descriptor] = ACTIONS(4629), + [sym__concat] = ACTIONS(4629), + [sym_variable_name] = ACTIONS(4629), + [anon_sym_PIPE] = ACTIONS(4631), + [anon_sym_RPAREN] = ACTIONS(4629), + [anon_sym_PIPE_AMP] = ACTIONS(4629), + [anon_sym_AMP_AMP] = ACTIONS(4629), + [anon_sym_PIPE_PIPE] = ACTIONS(4629), + [anon_sym_LT] = ACTIONS(4631), + [anon_sym_GT] = ACTIONS(4631), + [anon_sym_GT_GT] = ACTIONS(4629), + [anon_sym_AMP_GT] = ACTIONS(4631), + [anon_sym_AMP_GT_GT] = ACTIONS(4629), + [anon_sym_LT_AMP] = ACTIONS(4629), + [anon_sym_GT_AMP] = ACTIONS(4629), + [sym__special_characters] = ACTIONS(4629), + [anon_sym_DQUOTE] = ACTIONS(4629), + [anon_sym_DOLLAR] = ACTIONS(4631), + [sym_raw_string] = ACTIONS(4629), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4629), + [anon_sym_BQUOTE] = ACTIONS(4629), + [anon_sym_LT_LPAREN] = ACTIONS(4629), + [anon_sym_GT_LPAREN] = ACTIONS(4629), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4629), + }, + [1895] = { + [sym_file_descriptor] = ACTIONS(4633), + [sym__concat] = ACTIONS(4633), + [sym_variable_name] = ACTIONS(4633), + [anon_sym_PIPE] = ACTIONS(4635), + [anon_sym_RPAREN] = ACTIONS(4633), + [anon_sym_PIPE_AMP] = ACTIONS(4633), + [anon_sym_AMP_AMP] = ACTIONS(4633), + [anon_sym_PIPE_PIPE] = ACTIONS(4633), + [anon_sym_LT] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_GT_GT] = ACTIONS(4633), + [anon_sym_AMP_GT] = ACTIONS(4635), + [anon_sym_AMP_GT_GT] = ACTIONS(4633), + [anon_sym_LT_AMP] = ACTIONS(4633), + [anon_sym_GT_AMP] = ACTIONS(4633), + [sym__special_characters] = ACTIONS(4633), + [anon_sym_DQUOTE] = ACTIONS(4633), + [anon_sym_DOLLAR] = ACTIONS(4635), + [sym_raw_string] = ACTIONS(4633), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4633), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4633), + [anon_sym_BQUOTE] = ACTIONS(4633), + [anon_sym_LT_LPAREN] = ACTIONS(4633), + [anon_sym_GT_LPAREN] = ACTIONS(4633), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4633), + }, + [1896] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5098), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1897] = { + [sym_file_descriptor] = ACTIONS(4639), + [sym__concat] = ACTIONS(4639), + [sym_variable_name] = ACTIONS(4639), + [anon_sym_PIPE] = ACTIONS(4641), + [anon_sym_RPAREN] = ACTIONS(4639), + [anon_sym_PIPE_AMP] = ACTIONS(4639), + [anon_sym_AMP_AMP] = ACTIONS(4639), + [anon_sym_PIPE_PIPE] = ACTIONS(4639), + [anon_sym_LT] = ACTIONS(4641), + [anon_sym_GT] = ACTIONS(4641), + [anon_sym_GT_GT] = ACTIONS(4639), + [anon_sym_AMP_GT] = ACTIONS(4641), + [anon_sym_AMP_GT_GT] = ACTIONS(4639), + [anon_sym_LT_AMP] = ACTIONS(4639), + [anon_sym_GT_AMP] = ACTIONS(4639), + [sym__special_characters] = ACTIONS(4639), + [anon_sym_DQUOTE] = ACTIONS(4639), + [anon_sym_DOLLAR] = ACTIONS(4641), + [sym_raw_string] = ACTIONS(4639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4639), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4639), + [anon_sym_BQUOTE] = ACTIONS(4639), + [anon_sym_LT_LPAREN] = ACTIONS(4639), + [anon_sym_GT_LPAREN] = ACTIONS(4639), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4639), + }, + [1898] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5100), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1899] = { + [sym_file_descriptor] = ACTIONS(4645), + [sym__concat] = ACTIONS(4645), + [sym_variable_name] = ACTIONS(4645), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_RPAREN] = ACTIONS(4645), + [anon_sym_PIPE_AMP] = ACTIONS(4645), + [anon_sym_AMP_AMP] = ACTIONS(4645), + [anon_sym_PIPE_PIPE] = ACTIONS(4645), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_GT] = ACTIONS(4645), + [anon_sym_AMP_GT] = ACTIONS(4647), + [anon_sym_AMP_GT_GT] = ACTIONS(4645), + [anon_sym_LT_AMP] = ACTIONS(4645), + [anon_sym_GT_AMP] = ACTIONS(4645), + [sym__special_characters] = ACTIONS(4645), + [anon_sym_DQUOTE] = ACTIONS(4645), + [anon_sym_DOLLAR] = ACTIONS(4647), + [sym_raw_string] = ACTIONS(4645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4645), + [anon_sym_BQUOTE] = ACTIONS(4645), + [anon_sym_LT_LPAREN] = ACTIONS(4645), + [anon_sym_GT_LPAREN] = ACTIONS(4645), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4645), + }, + [1900] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5102), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1901] = { + [sym_file_descriptor] = ACTIONS(4651), + [sym__concat] = ACTIONS(4651), + [sym_variable_name] = ACTIONS(4651), + [anon_sym_PIPE] = ACTIONS(4653), + [anon_sym_RPAREN] = ACTIONS(4651), + [anon_sym_PIPE_AMP] = ACTIONS(4651), + [anon_sym_AMP_AMP] = ACTIONS(4651), + [anon_sym_PIPE_PIPE] = ACTIONS(4651), + [anon_sym_LT] = ACTIONS(4653), + [anon_sym_GT] = ACTIONS(4653), + [anon_sym_GT_GT] = ACTIONS(4651), + [anon_sym_AMP_GT] = ACTIONS(4653), + [anon_sym_AMP_GT_GT] = ACTIONS(4651), + [anon_sym_LT_AMP] = ACTIONS(4651), + [anon_sym_GT_AMP] = ACTIONS(4651), + [sym__special_characters] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(4651), + [anon_sym_DOLLAR] = ACTIONS(4653), + [sym_raw_string] = ACTIONS(4651), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4651), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4651), + [anon_sym_BQUOTE] = ACTIONS(4651), + [anon_sym_LT_LPAREN] = ACTIONS(4651), + [anon_sym_GT_LPAREN] = ACTIONS(4651), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4651), + }, + [1902] = { + [sym_file_descriptor] = ACTIONS(4655), + [sym__concat] = ACTIONS(4655), + [sym_variable_name] = ACTIONS(4655), + [anon_sym_PIPE] = ACTIONS(4657), + [anon_sym_RPAREN] = ACTIONS(4655), + [anon_sym_PIPE_AMP] = ACTIONS(4655), + [anon_sym_AMP_AMP] = ACTIONS(4655), + [anon_sym_PIPE_PIPE] = ACTIONS(4655), + [anon_sym_LT] = ACTIONS(4657), + [anon_sym_GT] = ACTIONS(4657), + [anon_sym_GT_GT] = ACTIONS(4655), + [anon_sym_AMP_GT] = ACTIONS(4657), + [anon_sym_AMP_GT_GT] = ACTIONS(4655), + [anon_sym_LT_AMP] = ACTIONS(4655), + [anon_sym_GT_AMP] = ACTIONS(4655), + [sym__special_characters] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4655), + [anon_sym_DOLLAR] = ACTIONS(4657), + [sym_raw_string] = ACTIONS(4655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4655), + [anon_sym_BQUOTE] = ACTIONS(4655), + [anon_sym_LT_LPAREN] = ACTIONS(4655), + [anon_sym_GT_LPAREN] = ACTIONS(4655), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4655), + }, + [1903] = { + [sym__concat] = ACTIONS(4621), + [anon_sym_DQUOTE] = ACTIONS(4623), + [anon_sym_DOLLAR] = ACTIONS(4623), + [sym__string_content] = ACTIONS(4621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4623), + [anon_sym_BQUOTE] = ACTIONS(4623), + [sym_comment] = ACTIONS(166), + }, + [1904] = { + [sym__concat] = ACTIONS(4625), + [anon_sym_DQUOTE] = ACTIONS(4627), + [anon_sym_DOLLAR] = ACTIONS(4627), + [sym__string_content] = ACTIONS(4625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4627), + [anon_sym_BQUOTE] = ACTIONS(4627), + [sym_comment] = ACTIONS(166), + }, + [1905] = { + [sym__concat] = ACTIONS(4629), + [anon_sym_DQUOTE] = ACTIONS(4631), + [anon_sym_DOLLAR] = ACTIONS(4631), + [sym__string_content] = ACTIONS(4629), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4631), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4631), + [anon_sym_BQUOTE] = ACTIONS(4631), + [sym_comment] = ACTIONS(166), + }, + [1906] = { + [sym__concat] = ACTIONS(4633), + [anon_sym_DQUOTE] = ACTIONS(4635), + [anon_sym_DOLLAR] = ACTIONS(4635), + [sym__string_content] = ACTIONS(4633), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4635), + [anon_sym_BQUOTE] = ACTIONS(4635), + [sym_comment] = ACTIONS(166), + }, + [1907] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5104), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1908] = { + [sym__concat] = ACTIONS(4639), + [anon_sym_DQUOTE] = ACTIONS(4641), + [anon_sym_DOLLAR] = ACTIONS(4641), + [sym__string_content] = ACTIONS(4639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4641), + [anon_sym_BQUOTE] = ACTIONS(4641), + [sym_comment] = ACTIONS(166), + }, + [1909] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5106), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1910] = { + [sym__concat] = ACTIONS(4645), + [anon_sym_DQUOTE] = ACTIONS(4647), + [anon_sym_DOLLAR] = ACTIONS(4647), + [sym__string_content] = ACTIONS(4645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4647), + [anon_sym_BQUOTE] = ACTIONS(4647), + [sym_comment] = ACTIONS(166), + }, + [1911] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5108), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1912] = { + [sym__concat] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(4653), + [anon_sym_DOLLAR] = ACTIONS(4653), + [sym__string_content] = ACTIONS(4651), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4653), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4653), + [anon_sym_BQUOTE] = ACTIONS(4653), + [sym_comment] = ACTIONS(166), + }, + [1913] = { + [sym__concat] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_DOLLAR] = ACTIONS(4657), + [sym__string_content] = ACTIONS(4655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4657), + [anon_sym_BQUOTE] = ACTIONS(4657), + [sym_comment] = ACTIONS(166), + }, + [1914] = { + [anon_sym_RBRACE] = ACTIONS(4100), + [anon_sym_EQ] = ACTIONS(5110), + [sym__special_characters] = ACTIONS(5110), + [anon_sym_DQUOTE] = ACTIONS(4100), + [anon_sym_DOLLAR] = ACTIONS(5110), + [sym_raw_string] = ACTIONS(4100), + [anon_sym_POUND] = ACTIONS(4100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4100), + [aux_sym_SLASH] = ACTIONS(4100), + [anon_sym_COLON] = ACTIONS(5110), + [anon_sym_COLON_QMARK] = ACTIONS(5110), + [anon_sym_COLON_DASH] = ACTIONS(5110), + [anon_sym_PERCENT] = ACTIONS(5110), + [anon_sym_DASH] = ACTIONS(5110), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4100), + [anon_sym_BQUOTE] = ACTIONS(4100), + [anon_sym_LT_LPAREN] = ACTIONS(4100), + [anon_sym_GT_LPAREN] = ACTIONS(4100), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5110), + }, + [1915] = { + [anon_sym_RBRACE] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(5112), + [sym__special_characters] = ACTIONS(5112), + [anon_sym_DQUOTE] = ACTIONS(4102), + [anon_sym_DOLLAR] = ACTIONS(5112), + [sym_raw_string] = ACTIONS(4102), + [anon_sym_POUND] = ACTIONS(4102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4102), + [aux_sym_SLASH] = ACTIONS(4102), + [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(4102), + [anon_sym_BQUOTE] = ACTIONS(4102), + [anon_sym_LT_LPAREN] = ACTIONS(4102), + [anon_sym_GT_LPAREN] = ACTIONS(4102), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5112), + }, + [1916] = { + [sym__concat] = ACTIONS(2672), + [anon_sym_RBRACE] = ACTIONS(2672), + [sym_comment] = ACTIONS(54), + }, + [1917] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(5114), + [sym_comment] = ACTIONS(54), + }, + [1918] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(5116), + [sym_comment] = ACTIONS(54), + }, + [1919] = { + [anon_sym_RBRACE] = ACTIONS(5116), + [sym_comment] = ACTIONS(54), + }, + [1920] = { + [sym_concatenation] = STATE(2180), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2180), + [anon_sym_RBRACE] = ACTIONS(5118), + [anon_sym_EQ] = ACTIONS(5120), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5122), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(5120), + [anon_sym_COLON_QMARK] = ACTIONS(5120), + [anon_sym_COLON_DASH] = ACTIONS(5120), + [anon_sym_PERCENT] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1921] = { + [sym__concat] = ACTIONS(2750), + [anon_sym_RBRACE] = ACTIONS(2750), + [sym_comment] = ACTIONS(54), + }, + [1922] = { + [sym_concatenation] = STATE(2183), + [sym_string] = STATE(2182), + [sym_simple_expansion] = STATE(2182), + [sym_string_expansion] = STATE(2182), + [sym_expansion] = STATE(2182), + [sym_command_substitution] = STATE(2182), + [sym_process_substitution] = STATE(2182), + [anon_sym_RBRACE] = ACTIONS(5116), + [sym__special_characters] = ACTIONS(5124), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(5126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5126), + }, + [1923] = { + [sym__concat] = ACTIONS(2793), + [anon_sym_RBRACE] = ACTIONS(2793), + [sym_comment] = ACTIONS(54), + }, + [1924] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(5128), + }, + [1925] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5130), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1926] = { + [sym__concat] = ACTIONS(2801), + [anon_sym_RBRACE] = ACTIONS(2801), + [sym_comment] = ACTIONS(54), + }, + [1927] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(5132), + }, + [1928] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5134), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1929] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(5136), + }, + [1930] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5116), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1931] = { + [sym_concatenation] = STATE(2190), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2190), + [anon_sym_RBRACE] = ACTIONS(5138), + [anon_sym_EQ] = ACTIONS(5140), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5142), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(5140), + [anon_sym_COLON_QMARK] = ACTIONS(5140), + [anon_sym_COLON_DASH] = ACTIONS(5140), + [anon_sym_PERCENT] = ACTIONS(5140), + [anon_sym_DASH] = ACTIONS(5140), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1932] = { + [sym__concat] = ACTIONS(2817), + [anon_sym_RBRACE] = ACTIONS(2817), + [sym_comment] = ACTIONS(54), + }, + [1933] = { + [sym_concatenation] = STATE(2192), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2192), + [anon_sym_RBRACE] = ACTIONS(5144), + [anon_sym_EQ] = ACTIONS(5146), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(5146), + [anon_sym_COLON_QMARK] = ACTIONS(5146), + [anon_sym_COLON_DASH] = ACTIONS(5146), + [anon_sym_PERCENT] = ACTIONS(5146), + [anon_sym_DASH] = ACTIONS(5146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1934] = { + [sym__concat] = ACTIONS(3740), + [anon_sym_RBRACE] = ACTIONS(3740), + [anon_sym_EQ] = ACTIONS(3742), + [sym__special_characters] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3742), + [sym_raw_string] = ACTIONS(3740), + [anon_sym_POUND] = ACTIONS(3740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3740), + [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(3740), + [anon_sym_BQUOTE] = ACTIONS(3740), + [anon_sym_LT_LPAREN] = ACTIONS(3740), + [anon_sym_GT_LPAREN] = ACTIONS(3740), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3742), + }, + [1935] = { + [sym__concat] = ACTIONS(3746), + [anon_sym_RBRACE] = ACTIONS(3746), + [anon_sym_EQ] = ACTIONS(3748), + [sym__special_characters] = ACTIONS(3748), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_DOLLAR] = ACTIONS(3748), + [sym_raw_string] = ACTIONS(3746), + [anon_sym_POUND] = ACTIONS(3746), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3746), + [anon_sym_COLON] = ACTIONS(3748), + [anon_sym_COLON_QMARK] = ACTIONS(3748), + [anon_sym_COLON_DASH] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_DASH] = ACTIONS(3748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3746), + [anon_sym_BQUOTE] = ACTIONS(3746), + [anon_sym_LT_LPAREN] = ACTIONS(3746), + [anon_sym_GT_LPAREN] = ACTIONS(3746), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3748), + }, + [1936] = { + [sym__concat] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(3831), + [anon_sym_EQ] = ACTIONS(3833), + [sym__special_characters] = ACTIONS(3833), + [anon_sym_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3833), + [sym_raw_string] = ACTIONS(3831), + [anon_sym_POUND] = ACTIONS(3831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3831), + [anon_sym_COLON] = ACTIONS(3833), + [anon_sym_COLON_QMARK] = ACTIONS(3833), + [anon_sym_COLON_DASH] = ACTIONS(3833), + [anon_sym_PERCENT] = ACTIONS(3833), + [anon_sym_DASH] = ACTIONS(3833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3831), + [anon_sym_BQUOTE] = ACTIONS(3831), + [anon_sym_LT_LPAREN] = ACTIONS(3831), + [anon_sym_GT_LPAREN] = ACTIONS(3831), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3833), + }, + [1937] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5150), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1938] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(5152), + [sym_comment] = ACTIONS(54), + }, + [1939] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(5154), + [sym_comment] = ACTIONS(54), + }, + [1940] = { + [anon_sym_RBRACE] = ACTIONS(5154), + [sym_comment] = ACTIONS(54), + }, + [1941] = { + [sym_concatenation] = STATE(2197), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2197), + [anon_sym_RBRACE] = ACTIONS(5156), + [anon_sym_EQ] = ACTIONS(5158), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5160), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1942] = { + [sym__concat] = ACTIONS(3847), + [anon_sym_RBRACE] = ACTIONS(3847), + [anon_sym_EQ] = ACTIONS(3849), + [sym__special_characters] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_DOLLAR] = ACTIONS(3849), + [sym_raw_string] = ACTIONS(3847), + [anon_sym_POUND] = ACTIONS(3847), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3847), + [anon_sym_COLON] = ACTIONS(3849), + [anon_sym_COLON_QMARK] = ACTIONS(3849), + [anon_sym_COLON_DASH] = ACTIONS(3849), + [anon_sym_PERCENT] = ACTIONS(3849), + [anon_sym_DASH] = ACTIONS(3849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3847), + [anon_sym_BQUOTE] = ACTIONS(3847), + [anon_sym_LT_LPAREN] = ACTIONS(3847), + [anon_sym_GT_LPAREN] = ACTIONS(3847), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3849), + }, + [1943] = { + [sym_concatenation] = STATE(2199), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2199), + [anon_sym_RBRACE] = ACTIONS(5162), + [anon_sym_EQ] = ACTIONS(5164), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5166), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(5164), + [anon_sym_COLON_QMARK] = ACTIONS(5164), + [anon_sym_COLON_DASH] = ACTIONS(5164), + [anon_sym_PERCENT] = ACTIONS(5164), + [anon_sym_DASH] = ACTIONS(5164), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1944] = { + [sym__concat] = ACTIONS(3857), + [anon_sym_RBRACE] = ACTIONS(3857), + [anon_sym_EQ] = ACTIONS(3859), + [sym__special_characters] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3857), + [anon_sym_DOLLAR] = ACTIONS(3859), + [sym_raw_string] = ACTIONS(3857), + [anon_sym_POUND] = ACTIONS(3857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3857), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_COLON_QMARK] = ACTIONS(3859), + [anon_sym_COLON_DASH] = ACTIONS(3859), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3857), + [anon_sym_BQUOTE] = ACTIONS(3857), + [anon_sym_LT_LPAREN] = ACTIONS(3857), + [anon_sym_GT_LPAREN] = ACTIONS(3857), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3859), + }, + [1945] = { + [sym_concatenation] = STATE(2201), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2201), + [anon_sym_RBRACE] = ACTIONS(5168), + [anon_sym_EQ] = ACTIONS(5170), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(5170), + [anon_sym_COLON_QMARK] = ACTIONS(5170), + [anon_sym_COLON_DASH] = ACTIONS(5170), + [anon_sym_PERCENT] = ACTIONS(5170), + [anon_sym_DASH] = ACTIONS(5170), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1946] = { + [sym__concat] = ACTIONS(3867), + [anon_sym_RBRACE] = ACTIONS(3867), + [anon_sym_EQ] = ACTIONS(3869), + [sym__special_characters] = ACTIONS(3869), + [anon_sym_DQUOTE] = ACTIONS(3867), + [anon_sym_DOLLAR] = ACTIONS(3869), + [sym_raw_string] = ACTIONS(3867), + [anon_sym_POUND] = ACTIONS(3867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3867), + [anon_sym_COLON] = ACTIONS(3869), + [anon_sym_COLON_QMARK] = ACTIONS(3869), + [anon_sym_COLON_DASH] = ACTIONS(3869), + [anon_sym_PERCENT] = ACTIONS(3869), + [anon_sym_DASH] = ACTIONS(3869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3867), + [anon_sym_BQUOTE] = ACTIONS(3867), + [anon_sym_LT_LPAREN] = ACTIONS(3867), + [anon_sym_GT_LPAREN] = ACTIONS(3867), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3869), + }, + [1947] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5174), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1948] = { + [sym__concat] = ACTIONS(3873), + [anon_sym_RBRACE] = ACTIONS(3873), + [anon_sym_EQ] = ACTIONS(3875), + [sym__special_characters] = ACTIONS(3875), + [anon_sym_DQUOTE] = ACTIONS(3873), + [anon_sym_DOLLAR] = ACTIONS(3875), + [sym_raw_string] = ACTIONS(3873), + [anon_sym_POUND] = ACTIONS(3873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3873), + [anon_sym_COLON] = ACTIONS(3875), + [anon_sym_COLON_QMARK] = ACTIONS(3875), + [anon_sym_COLON_DASH] = ACTIONS(3875), + [anon_sym_PERCENT] = ACTIONS(3875), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3873), + [anon_sym_BQUOTE] = ACTIONS(3873), + [anon_sym_LT_LPAREN] = ACTIONS(3873), + [anon_sym_GT_LPAREN] = ACTIONS(3873), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3875), + }, + [1949] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5176), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1950] = { + [sym_file_descriptor] = ACTIONS(5178), + [sym__concat] = ACTIONS(5178), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_RPAREN] = ACTIONS(5180), + [anon_sym_SEMI_SEMI] = ACTIONS(5180), + [anon_sym_PIPE_AMP] = ACTIONS(5180), + [anon_sym_AMP_AMP] = ACTIONS(5180), + [anon_sym_PIPE_PIPE] = ACTIONS(5180), + [anon_sym_EQ_TILDE] = ACTIONS(5180), + [anon_sym_EQ_EQ] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5180), + [anon_sym_GT_GT] = ACTIONS(5180), + [anon_sym_AMP_GT] = ACTIONS(5180), + [anon_sym_AMP_GT_GT] = ACTIONS(5180), + [anon_sym_LT_AMP] = ACTIONS(5180), + [anon_sym_GT_AMP] = ACTIONS(5180), + [anon_sym_LT_LT] = ACTIONS(5180), + [anon_sym_LT_LT_DASH] = ACTIONS(5180), + [anon_sym_LT_LT_LT] = ACTIONS(5180), + [sym__special_characters] = ACTIONS(5180), + [anon_sym_DQUOTE] = ACTIONS(5180), + [anon_sym_DOLLAR] = ACTIONS(5180), + [sym_raw_string] = ACTIONS(5180), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5180), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5180), + [anon_sym_BQUOTE] = ACTIONS(5180), + [anon_sym_LT_LPAREN] = ACTIONS(5180), + [anon_sym_GT_LPAREN] = ACTIONS(5180), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5180), + [anon_sym_LF] = ACTIONS(5178), + [anon_sym_AMP] = ACTIONS(5180), + }, + [1951] = { + [sym_file_descriptor] = ACTIONS(5182), + [sym__concat] = ACTIONS(5182), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_RPAREN] = ACTIONS(5184), + [anon_sym_SEMI_SEMI] = ACTIONS(5184), + [anon_sym_PIPE_AMP] = ACTIONS(5184), + [anon_sym_AMP_AMP] = ACTIONS(5184), + [anon_sym_PIPE_PIPE] = ACTIONS(5184), + [anon_sym_EQ_TILDE] = ACTIONS(5184), + [anon_sym_EQ_EQ] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5184), + [anon_sym_GT_GT] = ACTIONS(5184), + [anon_sym_AMP_GT] = ACTIONS(5184), + [anon_sym_AMP_GT_GT] = ACTIONS(5184), + [anon_sym_LT_AMP] = ACTIONS(5184), + [anon_sym_GT_AMP] = ACTIONS(5184), + [anon_sym_LT_LT] = ACTIONS(5184), + [anon_sym_LT_LT_DASH] = ACTIONS(5184), + [anon_sym_LT_LT_LT] = ACTIONS(5184), + [sym__special_characters] = ACTIONS(5184), + [anon_sym_DQUOTE] = ACTIONS(5184), + [anon_sym_DOLLAR] = ACTIONS(5184), + [sym_raw_string] = ACTIONS(5184), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5184), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5184), + [anon_sym_BQUOTE] = ACTIONS(5184), + [anon_sym_LT_LPAREN] = ACTIONS(5184), + [anon_sym_GT_LPAREN] = ACTIONS(5184), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5184), + [anon_sym_SEMI] = ACTIONS(5184), + [anon_sym_LF] = ACTIONS(5182), + [anon_sym_AMP] = ACTIONS(5184), + }, + [1952] = { + [sym_file_descriptor] = ACTIONS(5186), + [sym__concat] = ACTIONS(5186), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_RPAREN] = ACTIONS(5188), + [anon_sym_SEMI_SEMI] = ACTIONS(5188), + [anon_sym_PIPE_AMP] = ACTIONS(5188), + [anon_sym_AMP_AMP] = ACTIONS(5188), + [anon_sym_PIPE_PIPE] = ACTIONS(5188), + [anon_sym_EQ_TILDE] = ACTIONS(5188), + [anon_sym_EQ_EQ] = ACTIONS(5188), + [anon_sym_LT] = ACTIONS(5188), + [anon_sym_GT] = ACTIONS(5188), + [anon_sym_GT_GT] = ACTIONS(5188), + [anon_sym_AMP_GT] = ACTIONS(5188), + [anon_sym_AMP_GT_GT] = ACTIONS(5188), + [anon_sym_LT_AMP] = ACTIONS(5188), + [anon_sym_GT_AMP] = ACTIONS(5188), + [anon_sym_LT_LT] = ACTIONS(5188), + [anon_sym_LT_LT_DASH] = ACTIONS(5188), + [anon_sym_LT_LT_LT] = ACTIONS(5188), + [sym__special_characters] = ACTIONS(5188), + [anon_sym_DQUOTE] = ACTIONS(5188), + [anon_sym_DOLLAR] = ACTIONS(5188), + [sym_raw_string] = ACTIONS(5188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5188), + [anon_sym_BQUOTE] = ACTIONS(5188), + [anon_sym_LT_LPAREN] = ACTIONS(5188), + [anon_sym_GT_LPAREN] = ACTIONS(5188), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5188), + [anon_sym_SEMI] = ACTIONS(5188), + [anon_sym_LF] = ACTIONS(5186), + [anon_sym_AMP] = ACTIONS(5188), + }, + [1953] = { + [anon_sym_PIPE] = ACTIONS(4226), + [anon_sym_RPAREN] = ACTIONS(4228), + [anon_sym_PIPE_AMP] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_BQUOTE] = ACTIONS(4228), + [sym_comment] = ACTIONS(54), + }, + [1954] = { + [anon_sym_PIPE] = ACTIONS(3403), + [anon_sym_RPAREN] = ACTIONS(3401), + [anon_sym_PIPE_AMP] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_PIPE_PIPE] = ACTIONS(3401), + [anon_sym_BQUOTE] = ACTIONS(3401), + [sym_comment] = ACTIONS(54), + }, + [1955] = { + [anon_sym_PIPE] = ACTIONS(4232), + [anon_sym_RPAREN] = ACTIONS(4234), + [anon_sym_PIPE_AMP] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_BQUOTE] = ACTIONS(4234), + [sym_comment] = ACTIONS(54), + }, + [1956] = { + [anon_sym_fi] = ACTIONS(5190), + [sym_comment] = ACTIONS(54), + }, + [1957] = { + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_RPAREN] = ACTIONS(4288), + [anon_sym_PIPE_AMP] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_BQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(54), + }, + [1958] = { + [anon_sym_esac] = ACTIONS(5192), + [sym_comment] = ACTIONS(54), + }, + [1959] = { + [anon_sym_PIPE] = ACTIONS(4316), + [anon_sym_RPAREN] = ACTIONS(4318), + [anon_sym_PIPE_AMP] = ACTIONS(4318), + [anon_sym_AMP_AMP] = ACTIONS(4318), + [anon_sym_PIPE_PIPE] = ACTIONS(4318), + [anon_sym_BQUOTE] = ACTIONS(4318), + [sym_comment] = ACTIONS(54), + }, + [1960] = { + [sym_case_item] = STATE(1453), + [sym_last_case_item] = STATE(2206), + [sym_concatenation] = STATE(1043), + [sym_string] = STATE(1041), + [sym_simple_expansion] = STATE(1041), + [sym_string_expansion] = STATE(1041), + [sym_expansion] = STATE(1041), + [sym_command_substitution] = STATE(1041), + [sym_process_substitution] = STATE(1041), + [aux_sym_case_statement_repeat1] = STATE(1453), + [sym__special_characters] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(2265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2265), + }, + [1961] = { + [anon_sym_PIPE] = ACTIONS(4320), + [anon_sym_RPAREN] = ACTIONS(4322), + [anon_sym_PIPE_AMP] = ACTIONS(4322), + [anon_sym_AMP_AMP] = ACTIONS(4322), + [anon_sym_PIPE_PIPE] = ACTIONS(4322), + [anon_sym_BQUOTE] = ACTIONS(4322), + [sym_comment] = ACTIONS(54), + }, + [1962] = { + [anon_sym_esac] = ACTIONS(5194), + [sym_comment] = ACTIONS(54), + }, + [1963] = { + [anon_sym_PIPE] = ACTIONS(4326), + [anon_sym_RPAREN] = ACTIONS(4328), + [anon_sym_PIPE_AMP] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_BQUOTE] = ACTIONS(4328), + [sym_comment] = ACTIONS(54), + }, + [1964] = { + [sym_case_item] = STATE(1453), + [sym_last_case_item] = STATE(2208), + [sym_concatenation] = STATE(1043), + [sym_string] = STATE(1041), + [sym_simple_expansion] = STATE(1041), + [sym_string_expansion] = STATE(1041), + [sym_expansion] = STATE(1041), + [sym_command_substitution] = STATE(1041), + [sym_process_substitution] = STATE(1041), + [aux_sym_case_statement_repeat1] = STATE(1453), + [sym__special_characters] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(2265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(2265), + }, + [1965] = { + [anon_sym_PIPE] = ACTIONS(4358), + [anon_sym_RPAREN] = 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(54), + }, + [1966] = { + [aux_sym_concatenation_repeat1] = STATE(1969), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1061), + [anon_sym_PIPE_AMP] = ACTIONS(1061), + [anon_sym_AMP_AMP] = ACTIONS(1061), + [anon_sym_PIPE_PIPE] = ACTIONS(1061), + [sym_comment] = ACTIONS(54), + }, + [1967] = { + [aux_sym_concatenation_repeat1] = STATE(1969), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1065), + [anon_sym_PIPE_AMP] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [sym_comment] = ACTIONS(54), + }, + [1968] = { + [anon_sym_PIPE] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1065), + [anon_sym_PIPE_AMP] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [sym_comment] = ACTIONS(54), + }, + [1969] = { + [aux_sym_concatenation_repeat1] = STATE(2209), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(688), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [sym_comment] = ACTIONS(54), + }, + [1970] = { + [sym_variable_name] = ACTIONS(3258), + [anon_sym_PIPE] = ACTIONS(3260), + [anon_sym_RPAREN] = ACTIONS(3258), + [anon_sym_PIPE_AMP] = ACTIONS(3258), + [anon_sym_AMP_AMP] = ACTIONS(3258), + [anon_sym_PIPE_PIPE] = ACTIONS(3258), + [sym__special_characters] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [anon_sym_DOLLAR] = ACTIONS(3260), + [sym_raw_string] = ACTIONS(3258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3258), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3258), + [anon_sym_BQUOTE] = ACTIONS(3258), + [anon_sym_LT_LPAREN] = ACTIONS(3258), + [anon_sym_GT_LPAREN] = ACTIONS(3258), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3260), + [sym_word] = ACTIONS(3260), + }, + [1971] = { + [sym__concat] = ACTIONS(3740), + [sym_variable_name] = ACTIONS(3740), + [anon_sym_PIPE] = ACTIONS(3742), + [anon_sym_RPAREN] = ACTIONS(3740), + [anon_sym_PIPE_AMP] = ACTIONS(3740), + [anon_sym_AMP_AMP] = ACTIONS(3740), + [anon_sym_PIPE_PIPE] = ACTIONS(3740), + [sym__special_characters] = ACTIONS(3740), + [anon_sym_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3742), + [sym_raw_string] = ACTIONS(3740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3740), + [anon_sym_BQUOTE] = ACTIONS(3740), + [anon_sym_LT_LPAREN] = ACTIONS(3740), + [anon_sym_GT_LPAREN] = ACTIONS(3740), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3742), + [sym_word] = ACTIONS(3742), + }, + [1972] = { + [sym__concat] = ACTIONS(3746), + [sym_variable_name] = ACTIONS(3746), + [anon_sym_PIPE] = ACTIONS(3748), + [anon_sym_RPAREN] = ACTIONS(3746), + [anon_sym_PIPE_AMP] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [sym__special_characters] = ACTIONS(3746), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_DOLLAR] = ACTIONS(3748), + [sym_raw_string] = ACTIONS(3746), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3746), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3746), + [anon_sym_BQUOTE] = ACTIONS(3746), + [anon_sym_LT_LPAREN] = ACTIONS(3746), + [anon_sym_GT_LPAREN] = ACTIONS(3746), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3748), + [sym_word] = ACTIONS(3748), + }, + [1973] = { + [sym__concat] = ACTIONS(3831), + [sym_variable_name] = ACTIONS(3831), + [anon_sym_PIPE] = ACTIONS(3833), + [anon_sym_RPAREN] = ACTIONS(3831), + [anon_sym_PIPE_AMP] = ACTIONS(3831), + [anon_sym_AMP_AMP] = ACTIONS(3831), + [anon_sym_PIPE_PIPE] = ACTIONS(3831), + [sym__special_characters] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3833), + [sym_raw_string] = ACTIONS(3831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3831), + [anon_sym_BQUOTE] = ACTIONS(3831), + [anon_sym_LT_LPAREN] = ACTIONS(3831), + [anon_sym_GT_LPAREN] = ACTIONS(3831), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3833), + [sym_word] = ACTIONS(3833), + }, + [1974] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5196), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1975] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(5198), + [sym_comment] = ACTIONS(54), + }, + [1976] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(5200), + [sym_comment] = ACTIONS(54), + }, + [1977] = { + [anon_sym_RBRACE] = ACTIONS(5200), + [sym_comment] = ACTIONS(54), + }, + [1978] = { + [sym_concatenation] = STATE(2214), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2214), + [anon_sym_RBRACE] = ACTIONS(5202), + [anon_sym_EQ] = ACTIONS(5204), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1979] = { + [sym__concat] = ACTIONS(3847), + [sym_variable_name] = ACTIONS(3847), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_RPAREN] = ACTIONS(3847), + [anon_sym_PIPE_AMP] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3847), + [anon_sym_PIPE_PIPE] = ACTIONS(3847), + [sym__special_characters] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_DOLLAR] = ACTIONS(3849), + [sym_raw_string] = ACTIONS(3847), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3847), + [anon_sym_BQUOTE] = ACTIONS(3847), + [anon_sym_LT_LPAREN] = ACTIONS(3847), + [anon_sym_GT_LPAREN] = ACTIONS(3847), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3849), + [sym_word] = ACTIONS(3849), + }, + [1980] = { + [sym_concatenation] = STATE(2216), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2216), + [anon_sym_RBRACE] = ACTIONS(5208), + [anon_sym_EQ] = ACTIONS(5210), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5212), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1981] = { + [sym__concat] = ACTIONS(3857), + [sym_variable_name] = ACTIONS(3857), + [anon_sym_PIPE] = ACTIONS(3859), + [anon_sym_RPAREN] = ACTIONS(3857), + [anon_sym_PIPE_AMP] = ACTIONS(3857), + [anon_sym_AMP_AMP] = ACTIONS(3857), + [anon_sym_PIPE_PIPE] = ACTIONS(3857), + [sym__special_characters] = ACTIONS(3857), + [anon_sym_DQUOTE] = ACTIONS(3857), + [anon_sym_DOLLAR] = ACTIONS(3859), + [sym_raw_string] = ACTIONS(3857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3857), + [anon_sym_BQUOTE] = ACTIONS(3857), + [anon_sym_LT_LPAREN] = ACTIONS(3857), + [anon_sym_GT_LPAREN] = ACTIONS(3857), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3859), + [sym_word] = ACTIONS(3859), + }, + [1982] = { + [sym_concatenation] = STATE(2218), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2218), + [anon_sym_RBRACE] = ACTIONS(5214), + [anon_sym_EQ] = ACTIONS(5216), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1983] = { + [sym__concat] = ACTIONS(3867), + [sym_variable_name] = ACTIONS(3867), + [anon_sym_PIPE] = ACTIONS(3869), + [anon_sym_RPAREN] = ACTIONS(3867), + [anon_sym_PIPE_AMP] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3867), + [anon_sym_PIPE_PIPE] = ACTIONS(3867), + [sym__special_characters] = ACTIONS(3867), + [anon_sym_DQUOTE] = ACTIONS(3867), + [anon_sym_DOLLAR] = ACTIONS(3869), + [sym_raw_string] = ACTIONS(3867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3867), + [anon_sym_BQUOTE] = ACTIONS(3867), + [anon_sym_LT_LPAREN] = ACTIONS(3867), + [anon_sym_GT_LPAREN] = ACTIONS(3867), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3869), + [sym_word] = ACTIONS(3869), + }, + [1984] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5220), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1985] = { + [sym__concat] = ACTIONS(3873), + [sym_variable_name] = ACTIONS(3873), + [anon_sym_PIPE] = ACTIONS(3875), + [anon_sym_RPAREN] = ACTIONS(3873), + [anon_sym_PIPE_AMP] = ACTIONS(3873), + [anon_sym_AMP_AMP] = ACTIONS(3873), + [anon_sym_PIPE_PIPE] = ACTIONS(3873), + [sym__special_characters] = ACTIONS(3873), + [anon_sym_DQUOTE] = ACTIONS(3873), + [anon_sym_DOLLAR] = ACTIONS(3875), + [sym_raw_string] = ACTIONS(3873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3873), + [anon_sym_BQUOTE] = ACTIONS(3873), + [anon_sym_LT_LPAREN] = ACTIONS(3873), + [anon_sym_GT_LPAREN] = ACTIONS(3873), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3875), + [sym_word] = ACTIONS(3875), + }, + [1986] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5222), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1987] = { + [sym__concat] = ACTIONS(3740), + [anon_sym_PIPE] = ACTIONS(3742), + [anon_sym_RPAREN] = ACTIONS(3740), + [anon_sym_PIPE_AMP] = ACTIONS(3740), + [anon_sym_AMP_AMP] = ACTIONS(3740), + [anon_sym_PIPE_PIPE] = ACTIONS(3740), + [sym__special_characters] = ACTIONS(3740), + [anon_sym_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3742), + [sym_raw_string] = ACTIONS(3740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3740), + [anon_sym_BQUOTE] = ACTIONS(3740), + [anon_sym_LT_LPAREN] = ACTIONS(3740), + [anon_sym_GT_LPAREN] = ACTIONS(3740), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3742), + [sym_word] = ACTIONS(3742), + }, + [1988] = { + [sym__concat] = ACTIONS(3746), + [anon_sym_PIPE] = ACTIONS(3748), + [anon_sym_RPAREN] = ACTIONS(3746), + [anon_sym_PIPE_AMP] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [sym__special_characters] = ACTIONS(3746), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_DOLLAR] = ACTIONS(3748), + [sym_raw_string] = ACTIONS(3746), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3746), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3746), + [anon_sym_BQUOTE] = ACTIONS(3746), + [anon_sym_LT_LPAREN] = ACTIONS(3746), + [anon_sym_GT_LPAREN] = ACTIONS(3746), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3748), + [sym_word] = ACTIONS(3748), + }, + [1989] = { + [sym__concat] = ACTIONS(3831), + [anon_sym_PIPE] = ACTIONS(3833), + [anon_sym_RPAREN] = ACTIONS(3831), + [anon_sym_PIPE_AMP] = ACTIONS(3831), + [anon_sym_AMP_AMP] = ACTIONS(3831), + [anon_sym_PIPE_PIPE] = ACTIONS(3831), + [sym__special_characters] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3833), + [sym_raw_string] = ACTIONS(3831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3831), + [anon_sym_BQUOTE] = ACTIONS(3831), + [anon_sym_LT_LPAREN] = ACTIONS(3831), + [anon_sym_GT_LPAREN] = ACTIONS(3831), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3833), + [sym_word] = ACTIONS(3833), + }, + [1990] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5224), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1991] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(5226), + [sym_comment] = ACTIONS(54), + }, + [1992] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(5228), + [sym_comment] = ACTIONS(54), + }, + [1993] = { + [anon_sym_RBRACE] = ACTIONS(5228), + [sym_comment] = ACTIONS(54), + }, + [1994] = { + [sym_concatenation] = STATE(2225), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2225), + [anon_sym_RBRACE] = ACTIONS(5230), + [anon_sym_EQ] = ACTIONS(5232), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(5232), + [anon_sym_COLON_QMARK] = ACTIONS(5232), + [anon_sym_COLON_DASH] = ACTIONS(5232), + [anon_sym_PERCENT] = ACTIONS(5232), + [anon_sym_DASH] = ACTIONS(5232), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1995] = { + [sym__concat] = ACTIONS(3847), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_RPAREN] = ACTIONS(3847), + [anon_sym_PIPE_AMP] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3847), + [anon_sym_PIPE_PIPE] = ACTIONS(3847), + [sym__special_characters] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_DOLLAR] = ACTIONS(3849), + [sym_raw_string] = ACTIONS(3847), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3847), + [anon_sym_BQUOTE] = ACTIONS(3847), + [anon_sym_LT_LPAREN] = ACTIONS(3847), + [anon_sym_GT_LPAREN] = ACTIONS(3847), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3849), + [sym_word] = ACTIONS(3849), + }, + [1996] = { + [sym_concatenation] = STATE(2227), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2227), + [anon_sym_RBRACE] = ACTIONS(5236), + [anon_sym_EQ] = ACTIONS(5238), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1997] = { + [sym__concat] = ACTIONS(3857), + [anon_sym_PIPE] = ACTIONS(3859), + [anon_sym_RPAREN] = ACTIONS(3857), + [anon_sym_PIPE_AMP] = ACTIONS(3857), + [anon_sym_AMP_AMP] = ACTIONS(3857), + [anon_sym_PIPE_PIPE] = ACTIONS(3857), + [sym__special_characters] = ACTIONS(3857), + [anon_sym_DQUOTE] = ACTIONS(3857), + [anon_sym_DOLLAR] = ACTIONS(3859), + [sym_raw_string] = ACTIONS(3857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3857), + [anon_sym_BQUOTE] = ACTIONS(3857), + [anon_sym_LT_LPAREN] = ACTIONS(3857), + [anon_sym_GT_LPAREN] = ACTIONS(3857), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3859), + [sym_word] = ACTIONS(3859), + }, + [1998] = { + [sym_concatenation] = STATE(2229), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2229), + [anon_sym_RBRACE] = ACTIONS(5242), + [anon_sym_EQ] = ACTIONS(5244), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5246), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(5244), + [anon_sym_COLON_QMARK] = ACTIONS(5244), + [anon_sym_COLON_DASH] = ACTIONS(5244), + [anon_sym_PERCENT] = ACTIONS(5244), + [anon_sym_DASH] = ACTIONS(5244), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [1999] = { + [sym__concat] = ACTIONS(3867), + [anon_sym_PIPE] = ACTIONS(3869), + [anon_sym_RPAREN] = ACTIONS(3867), + [anon_sym_PIPE_AMP] = ACTIONS(3867), + [anon_sym_AMP_AMP] = ACTIONS(3867), + [anon_sym_PIPE_PIPE] = ACTIONS(3867), + [sym__special_characters] = ACTIONS(3867), + [anon_sym_DQUOTE] = ACTIONS(3867), + [anon_sym_DOLLAR] = ACTIONS(3869), + [sym_raw_string] = ACTIONS(3867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3867), + [anon_sym_BQUOTE] = ACTIONS(3867), + [anon_sym_LT_LPAREN] = ACTIONS(3867), + [anon_sym_GT_LPAREN] = ACTIONS(3867), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3869), + [sym_word] = ACTIONS(3869), + }, + [2000] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5248), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2001] = { + [sym__concat] = ACTIONS(3873), + [anon_sym_PIPE] = ACTIONS(3875), + [anon_sym_RPAREN] = ACTIONS(3873), + [anon_sym_PIPE_AMP] = ACTIONS(3873), + [anon_sym_AMP_AMP] = ACTIONS(3873), + [anon_sym_PIPE_PIPE] = ACTIONS(3873), + [sym__special_characters] = ACTIONS(3873), + [anon_sym_DQUOTE] = ACTIONS(3873), + [anon_sym_DOLLAR] = ACTIONS(3875), + [sym_raw_string] = ACTIONS(3873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3873), + [anon_sym_BQUOTE] = ACTIONS(3873), + [anon_sym_LT_LPAREN] = ACTIONS(3873), + [anon_sym_GT_LPAREN] = ACTIONS(3873), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3875), + [sym_word] = ACTIONS(3875), + }, + [2002] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5250), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2003] = { + [sym_file_descriptor] = ACTIONS(4621), + [sym__concat] = ACTIONS(4621), + [anon_sym_PIPE] = ACTIONS(4623), + [anon_sym_RPAREN] = ACTIONS(4621), + [anon_sym_PIPE_AMP] = ACTIONS(4621), + [anon_sym_AMP_AMP] = ACTIONS(4621), + [anon_sym_PIPE_PIPE] = ACTIONS(4621), + [anon_sym_EQ_TILDE] = ACTIONS(4623), + [anon_sym_EQ_EQ] = ACTIONS(4623), + [anon_sym_LT] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_GT_GT] = ACTIONS(4621), + [anon_sym_AMP_GT] = ACTIONS(4623), + [anon_sym_AMP_GT_GT] = ACTIONS(4621), + [anon_sym_LT_AMP] = ACTIONS(4621), + [anon_sym_GT_AMP] = ACTIONS(4621), + [anon_sym_LT_LT] = ACTIONS(4623), + [anon_sym_LT_LT_DASH] = ACTIONS(4621), + [anon_sym_LT_LT_LT] = ACTIONS(4621), + [sym__special_characters] = ACTIONS(4621), + [anon_sym_DQUOTE] = ACTIONS(4621), + [anon_sym_DOLLAR] = ACTIONS(4623), + [sym_raw_string] = ACTIONS(4621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4621), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4621), + [anon_sym_BQUOTE] = ACTIONS(4621), + [anon_sym_LT_LPAREN] = ACTIONS(4621), + [anon_sym_GT_LPAREN] = ACTIONS(4621), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4623), + }, + [2004] = { + [sym_file_descriptor] = ACTIONS(4625), + [sym__concat] = ACTIONS(4625), + [anon_sym_PIPE] = ACTIONS(4627), + [anon_sym_RPAREN] = ACTIONS(4625), + [anon_sym_PIPE_AMP] = ACTIONS(4625), + [anon_sym_AMP_AMP] = ACTIONS(4625), + [anon_sym_PIPE_PIPE] = ACTIONS(4625), + [anon_sym_EQ_TILDE] = ACTIONS(4627), + [anon_sym_EQ_EQ] = ACTIONS(4627), + [anon_sym_LT] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4627), + [anon_sym_GT_GT] = ACTIONS(4625), + [anon_sym_AMP_GT] = ACTIONS(4627), + [anon_sym_AMP_GT_GT] = ACTIONS(4625), + [anon_sym_LT_AMP] = ACTIONS(4625), + [anon_sym_GT_AMP] = ACTIONS(4625), + [anon_sym_LT_LT] = ACTIONS(4627), + [anon_sym_LT_LT_DASH] = ACTIONS(4625), + [anon_sym_LT_LT_LT] = ACTIONS(4625), + [sym__special_characters] = ACTIONS(4625), + [anon_sym_DQUOTE] = ACTIONS(4625), + [anon_sym_DOLLAR] = ACTIONS(4627), + [sym_raw_string] = ACTIONS(4625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4625), + [anon_sym_BQUOTE] = ACTIONS(4625), + [anon_sym_LT_LPAREN] = ACTIONS(4625), + [anon_sym_GT_LPAREN] = ACTIONS(4625), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4627), + }, + [2005] = { + [sym_file_descriptor] = ACTIONS(4629), + [sym__concat] = ACTIONS(4629), + [anon_sym_PIPE] = ACTIONS(4631), + [anon_sym_RPAREN] = ACTIONS(4629), + [anon_sym_PIPE_AMP] = ACTIONS(4629), + [anon_sym_AMP_AMP] = ACTIONS(4629), + [anon_sym_PIPE_PIPE] = ACTIONS(4629), + [anon_sym_EQ_TILDE] = ACTIONS(4631), + [anon_sym_EQ_EQ] = ACTIONS(4631), + [anon_sym_LT] = ACTIONS(4631), + [anon_sym_GT] = ACTIONS(4631), + [anon_sym_GT_GT] = ACTIONS(4629), + [anon_sym_AMP_GT] = ACTIONS(4631), + [anon_sym_AMP_GT_GT] = ACTIONS(4629), + [anon_sym_LT_AMP] = ACTIONS(4629), + [anon_sym_GT_AMP] = ACTIONS(4629), + [anon_sym_LT_LT] = ACTIONS(4631), + [anon_sym_LT_LT_DASH] = ACTIONS(4629), + [anon_sym_LT_LT_LT] = ACTIONS(4629), + [sym__special_characters] = ACTIONS(4629), + [anon_sym_DQUOTE] = ACTIONS(4629), + [anon_sym_DOLLAR] = ACTIONS(4631), + [sym_raw_string] = ACTIONS(4629), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4629), + [anon_sym_BQUOTE] = ACTIONS(4629), + [anon_sym_LT_LPAREN] = ACTIONS(4629), + [anon_sym_GT_LPAREN] = ACTIONS(4629), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4631), + }, + [2006] = { + [sym_file_descriptor] = ACTIONS(4633), + [sym__concat] = ACTIONS(4633), + [anon_sym_PIPE] = ACTIONS(4635), + [anon_sym_RPAREN] = ACTIONS(4633), + [anon_sym_PIPE_AMP] = ACTIONS(4633), + [anon_sym_AMP_AMP] = ACTIONS(4633), + [anon_sym_PIPE_PIPE] = ACTIONS(4633), + [anon_sym_EQ_TILDE] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_GT_GT] = ACTIONS(4633), + [anon_sym_AMP_GT] = ACTIONS(4635), + [anon_sym_AMP_GT_GT] = ACTIONS(4633), + [anon_sym_LT_AMP] = ACTIONS(4633), + [anon_sym_GT_AMP] = ACTIONS(4633), + [anon_sym_LT_LT] = ACTIONS(4635), + [anon_sym_LT_LT_DASH] = ACTIONS(4633), + [anon_sym_LT_LT_LT] = ACTIONS(4633), + [sym__special_characters] = ACTIONS(4633), + [anon_sym_DQUOTE] = ACTIONS(4633), + [anon_sym_DOLLAR] = ACTIONS(4635), + [sym_raw_string] = ACTIONS(4633), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4633), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4633), + [anon_sym_BQUOTE] = ACTIONS(4633), + [anon_sym_LT_LPAREN] = ACTIONS(4633), + [anon_sym_GT_LPAREN] = ACTIONS(4633), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4635), + }, + [2007] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5252), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2008] = { + [sym_file_descriptor] = ACTIONS(4639), + [sym__concat] = ACTIONS(4639), + [anon_sym_PIPE] = ACTIONS(4641), + [anon_sym_RPAREN] = ACTIONS(4639), + [anon_sym_PIPE_AMP] = ACTIONS(4639), + [anon_sym_AMP_AMP] = ACTIONS(4639), + [anon_sym_PIPE_PIPE] = ACTIONS(4639), + [anon_sym_EQ_TILDE] = ACTIONS(4641), + [anon_sym_EQ_EQ] = ACTIONS(4641), + [anon_sym_LT] = ACTIONS(4641), + [anon_sym_GT] = ACTIONS(4641), + [anon_sym_GT_GT] = ACTIONS(4639), + [anon_sym_AMP_GT] = ACTIONS(4641), + [anon_sym_AMP_GT_GT] = ACTIONS(4639), + [anon_sym_LT_AMP] = ACTIONS(4639), + [anon_sym_GT_AMP] = ACTIONS(4639), + [anon_sym_LT_LT] = ACTIONS(4641), + [anon_sym_LT_LT_DASH] = ACTIONS(4639), + [anon_sym_LT_LT_LT] = ACTIONS(4639), + [sym__special_characters] = ACTIONS(4639), + [anon_sym_DQUOTE] = ACTIONS(4639), + [anon_sym_DOLLAR] = ACTIONS(4641), + [sym_raw_string] = ACTIONS(4639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4639), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4639), + [anon_sym_BQUOTE] = ACTIONS(4639), + [anon_sym_LT_LPAREN] = ACTIONS(4639), + [anon_sym_GT_LPAREN] = ACTIONS(4639), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4641), + }, + [2009] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5254), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2010] = { + [sym_file_descriptor] = ACTIONS(4645), + [sym__concat] = ACTIONS(4645), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_RPAREN] = ACTIONS(4645), + [anon_sym_PIPE_AMP] = ACTIONS(4645), + [anon_sym_AMP_AMP] = ACTIONS(4645), + [anon_sym_PIPE_PIPE] = ACTIONS(4645), + [anon_sym_EQ_TILDE] = ACTIONS(4647), + [anon_sym_EQ_EQ] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_GT] = ACTIONS(4645), + [anon_sym_AMP_GT] = ACTIONS(4647), + [anon_sym_AMP_GT_GT] = ACTIONS(4645), + [anon_sym_LT_AMP] = ACTIONS(4645), + [anon_sym_GT_AMP] = ACTIONS(4645), + [anon_sym_LT_LT] = ACTIONS(4647), + [anon_sym_LT_LT_DASH] = ACTIONS(4645), + [anon_sym_LT_LT_LT] = ACTIONS(4645), + [sym__special_characters] = ACTIONS(4645), + [anon_sym_DQUOTE] = ACTIONS(4645), + [anon_sym_DOLLAR] = ACTIONS(4647), + [sym_raw_string] = ACTIONS(4645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4645), + [anon_sym_BQUOTE] = ACTIONS(4645), + [anon_sym_LT_LPAREN] = ACTIONS(4645), + [anon_sym_GT_LPAREN] = ACTIONS(4645), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4647), + }, + [2011] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5256), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2012] = { + [sym_file_descriptor] = ACTIONS(4651), + [sym__concat] = ACTIONS(4651), + [anon_sym_PIPE] = ACTIONS(4653), + [anon_sym_RPAREN] = ACTIONS(4651), + [anon_sym_PIPE_AMP] = ACTIONS(4651), + [anon_sym_AMP_AMP] = ACTIONS(4651), + [anon_sym_PIPE_PIPE] = ACTIONS(4651), + [anon_sym_EQ_TILDE] = ACTIONS(4653), + [anon_sym_EQ_EQ] = ACTIONS(4653), + [anon_sym_LT] = ACTIONS(4653), + [anon_sym_GT] = ACTIONS(4653), + [anon_sym_GT_GT] = ACTIONS(4651), + [anon_sym_AMP_GT] = ACTIONS(4653), + [anon_sym_AMP_GT_GT] = ACTIONS(4651), + [anon_sym_LT_AMP] = ACTIONS(4651), + [anon_sym_GT_AMP] = ACTIONS(4651), + [anon_sym_LT_LT] = ACTIONS(4653), + [anon_sym_LT_LT_DASH] = ACTIONS(4651), + [anon_sym_LT_LT_LT] = ACTIONS(4651), + [sym__special_characters] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(4651), + [anon_sym_DOLLAR] = ACTIONS(4653), + [sym_raw_string] = ACTIONS(4651), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4651), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4651), + [anon_sym_BQUOTE] = ACTIONS(4651), + [anon_sym_LT_LPAREN] = ACTIONS(4651), + [anon_sym_GT_LPAREN] = ACTIONS(4651), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4653), + }, + [2013] = { + [sym_file_descriptor] = ACTIONS(4655), + [sym__concat] = ACTIONS(4655), + [anon_sym_PIPE] = ACTIONS(4657), + [anon_sym_RPAREN] = ACTIONS(4655), + [anon_sym_PIPE_AMP] = ACTIONS(4655), + [anon_sym_AMP_AMP] = ACTIONS(4655), + [anon_sym_PIPE_PIPE] = ACTIONS(4655), + [anon_sym_EQ_TILDE] = ACTIONS(4657), + [anon_sym_EQ_EQ] = ACTIONS(4657), + [anon_sym_LT] = ACTIONS(4657), + [anon_sym_GT] = ACTIONS(4657), + [anon_sym_GT_GT] = ACTIONS(4655), + [anon_sym_AMP_GT] = ACTIONS(4657), + [anon_sym_AMP_GT_GT] = ACTIONS(4655), + [anon_sym_LT_AMP] = ACTIONS(4655), + [anon_sym_GT_AMP] = ACTIONS(4655), + [anon_sym_LT_LT] = ACTIONS(4657), + [anon_sym_LT_LT_DASH] = ACTIONS(4655), + [anon_sym_LT_LT_LT] = ACTIONS(4655), + [sym__special_characters] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4655), + [anon_sym_DOLLAR] = ACTIONS(4657), + [sym_raw_string] = ACTIONS(4655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4655), + [anon_sym_BQUOTE] = ACTIONS(4655), + [anon_sym_LT_LPAREN] = ACTIONS(4655), + [anon_sym_GT_LPAREN] = ACTIONS(4655), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4657), + }, + [2014] = { + [aux_sym_concatenation_repeat1] = STATE(2016), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(1061), + [anon_sym_AMP_AMP] = ACTIONS(1061), + [anon_sym_PIPE_PIPE] = ACTIONS(1061), + [anon_sym_BQUOTE] = ACTIONS(1061), + [sym_comment] = ACTIONS(54), + }, + [2015] = { + [aux_sym_concatenation_repeat1] = STATE(2016), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1067), + [anon_sym_PIPE_AMP] = ACTIONS(1065), + [anon_sym_AMP_AMP] = ACTIONS(1065), + [anon_sym_PIPE_PIPE] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [sym_comment] = ACTIONS(54), + }, + [2016] = { + [aux_sym_concatenation_repeat1] = STATE(2235), + [sym__concat] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(688), + [sym_comment] = ACTIONS(54), + }, + [2017] = { + [sym__heredoc_middle] = ACTIONS(2672), + [sym__heredoc_end] = ACTIONS(2672), + [anon_sym_DOLLAR] = ACTIONS(2674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2672), + [sym_comment] = ACTIONS(54), + }, + [2018] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(5258), + [sym_comment] = ACTIONS(54), + }, + [2019] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(5260), + [sym_comment] = ACTIONS(54), + }, + [2020] = { + [anon_sym_RBRACE] = ACTIONS(5260), + [sym_comment] = ACTIONS(54), + }, + [2021] = { + [sym_concatenation] = STATE(2239), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2239), + [anon_sym_RBRACE] = ACTIONS(5262), + [anon_sym_EQ] = ACTIONS(5264), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(5264), + [anon_sym_COLON_QMARK] = ACTIONS(5264), + [anon_sym_COLON_DASH] = ACTIONS(5264), + [anon_sym_PERCENT] = ACTIONS(5264), + [anon_sym_DASH] = ACTIONS(5264), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2022] = { + [sym__heredoc_middle] = ACTIONS(2750), + [sym__heredoc_end] = ACTIONS(2750), + [anon_sym_DOLLAR] = ACTIONS(2752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2750), + [sym_comment] = ACTIONS(54), + }, + [2023] = { + [sym_concatenation] = STATE(2242), + [sym_string] = STATE(2241), + [sym_simple_expansion] = STATE(2241), + [sym_string_expansion] = STATE(2241), + [sym_expansion] = STATE(2241), + [sym_command_substitution] = STATE(2241), + [sym_process_substitution] = STATE(2241), + [anon_sym_RBRACE] = ACTIONS(5260), + [sym__special_characters] = ACTIONS(5268), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(5270), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5270), + }, + [2024] = { + [sym__heredoc_middle] = ACTIONS(2793), + [sym__heredoc_end] = ACTIONS(2793), + [anon_sym_DOLLAR] = ACTIONS(2795), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2793), + [sym_comment] = ACTIONS(54), + }, + [2025] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(5272), + }, + [2026] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5274), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2027] = { + [sym__heredoc_middle] = ACTIONS(2801), + [sym__heredoc_end] = ACTIONS(2801), + [anon_sym_DOLLAR] = ACTIONS(2803), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2801), + [sym_comment] = ACTIONS(54), + }, + [2028] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(5276), + }, + [2029] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5278), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2030] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(5280), + }, + [2031] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5260), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2032] = { + [sym_concatenation] = STATE(2249), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2249), + [anon_sym_RBRACE] = ACTIONS(5282), + [anon_sym_EQ] = ACTIONS(5284), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5286), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2033] = { + [sym__heredoc_middle] = ACTIONS(2817), + [sym__heredoc_end] = ACTIONS(2817), + [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2817), + [sym_comment] = ACTIONS(54), + }, + [2034] = { + [sym_concatenation] = STATE(2251), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2251), + [anon_sym_RBRACE] = ACTIONS(5288), + [anon_sym_EQ] = ACTIONS(5290), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(5290), + [anon_sym_COLON_QMARK] = ACTIONS(5290), + [anon_sym_COLON_DASH] = ACTIONS(5290), + [anon_sym_PERCENT] = ACTIONS(5290), + [anon_sym_DASH] = ACTIONS(5290), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2035] = { + [sym__concat] = ACTIONS(3740), + [anon_sym_RPAREN] = ACTIONS(3740), + [sym__special_characters] = ACTIONS(3740), + [anon_sym_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3742), + [sym_raw_string] = ACTIONS(3740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3740), + [anon_sym_BQUOTE] = ACTIONS(3740), + [anon_sym_LT_LPAREN] = ACTIONS(3740), + [anon_sym_GT_LPAREN] = ACTIONS(3740), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3740), + }, + [2036] = { + [sym__concat] = ACTIONS(3746), + [anon_sym_RPAREN] = ACTIONS(3746), + [sym__special_characters] = ACTIONS(3746), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_DOLLAR] = ACTIONS(3748), + [sym_raw_string] = ACTIONS(3746), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3746), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3746), + [anon_sym_BQUOTE] = ACTIONS(3746), + [anon_sym_LT_LPAREN] = ACTIONS(3746), + [anon_sym_GT_LPAREN] = ACTIONS(3746), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3746), + }, + [2037] = { + [sym__concat] = ACTIONS(3831), + [anon_sym_RPAREN] = ACTIONS(3831), + [sym__special_characters] = ACTIONS(3831), + [anon_sym_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3833), + [sym_raw_string] = ACTIONS(3831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3831), + [anon_sym_BQUOTE] = ACTIONS(3831), + [anon_sym_LT_LPAREN] = ACTIONS(3831), + [anon_sym_GT_LPAREN] = ACTIONS(3831), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3831), + }, + [2038] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5294), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2039] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(5296), + [sym_comment] = ACTIONS(54), + }, + [2040] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(5298), + [sym_comment] = ACTIONS(54), + }, + [2041] = { + [anon_sym_RBRACE] = ACTIONS(5298), + [sym_comment] = ACTIONS(54), + }, + [2042] = { + [sym_concatenation] = STATE(2256), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2256), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_EQ] = ACTIONS(5302), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(5302), + [anon_sym_COLON_QMARK] = ACTIONS(5302), + [anon_sym_COLON_DASH] = ACTIONS(5302), + [anon_sym_PERCENT] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2043] = { + [sym__concat] = ACTIONS(3847), + [anon_sym_RPAREN] = ACTIONS(3847), + [sym__special_characters] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_DOLLAR] = ACTIONS(3849), + [sym_raw_string] = ACTIONS(3847), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3847), + [anon_sym_BQUOTE] = ACTIONS(3847), + [anon_sym_LT_LPAREN] = ACTIONS(3847), + [anon_sym_GT_LPAREN] = ACTIONS(3847), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3847), + }, + [2044] = { + [sym_concatenation] = STATE(2258), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2258), + [anon_sym_RBRACE] = ACTIONS(5306), + [anon_sym_EQ] = ACTIONS(5308), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(5308), + [anon_sym_COLON_QMARK] = ACTIONS(5308), + [anon_sym_COLON_DASH] = ACTIONS(5308), + [anon_sym_PERCENT] = ACTIONS(5308), + [anon_sym_DASH] = ACTIONS(5308), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2045] = { + [sym__concat] = ACTIONS(3857), + [anon_sym_RPAREN] = ACTIONS(3857), + [sym__special_characters] = ACTIONS(3857), + [anon_sym_DQUOTE] = ACTIONS(3857), + [anon_sym_DOLLAR] = ACTIONS(3859), + [sym_raw_string] = ACTIONS(3857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3857), + [anon_sym_BQUOTE] = ACTIONS(3857), + [anon_sym_LT_LPAREN] = ACTIONS(3857), + [anon_sym_GT_LPAREN] = ACTIONS(3857), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3857), + }, + [2046] = { + [sym_concatenation] = STATE(2260), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2260), + [anon_sym_RBRACE] = ACTIONS(5312), + [anon_sym_EQ] = ACTIONS(5314), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(5314), + [anon_sym_COLON_QMARK] = ACTIONS(5314), + [anon_sym_COLON_DASH] = ACTIONS(5314), + [anon_sym_PERCENT] = ACTIONS(5314), + [anon_sym_DASH] = ACTIONS(5314), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2047] = { + [sym__concat] = ACTIONS(3867), + [anon_sym_RPAREN] = ACTIONS(3867), + [sym__special_characters] = ACTIONS(3867), + [anon_sym_DQUOTE] = ACTIONS(3867), + [anon_sym_DOLLAR] = ACTIONS(3869), + [sym_raw_string] = ACTIONS(3867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3867), + [anon_sym_BQUOTE] = ACTIONS(3867), + [anon_sym_LT_LPAREN] = ACTIONS(3867), + [anon_sym_GT_LPAREN] = ACTIONS(3867), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3867), + }, + [2048] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5318), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2049] = { + [sym__concat] = ACTIONS(3873), + [anon_sym_RPAREN] = ACTIONS(3873), + [sym__special_characters] = ACTIONS(3873), + [anon_sym_DQUOTE] = ACTIONS(3873), + [anon_sym_DOLLAR] = ACTIONS(3875), + [sym_raw_string] = ACTIONS(3873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3873), + [anon_sym_BQUOTE] = ACTIONS(3873), + [anon_sym_LT_LPAREN] = ACTIONS(3873), + [anon_sym_GT_LPAREN] = ACTIONS(3873), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(3873), + }, + [2050] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5320), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2051] = { + [sym_file_descriptor] = ACTIONS(4621), + [sym__concat] = ACTIONS(4621), + [sym_variable_name] = ACTIONS(4621), + [anon_sym_PIPE] = ACTIONS(4623), + [anon_sym_RPAREN] = ACTIONS(4623), + [anon_sym_SEMI_SEMI] = ACTIONS(4623), + [anon_sym_PIPE_AMP] = ACTIONS(4623), + [anon_sym_AMP_AMP] = ACTIONS(4623), + [anon_sym_PIPE_PIPE] = ACTIONS(4623), + [anon_sym_LT] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_GT_GT] = ACTIONS(4623), + [anon_sym_AMP_GT] = ACTIONS(4623), + [anon_sym_AMP_GT_GT] = ACTIONS(4623), + [anon_sym_LT_AMP] = ACTIONS(4623), + [anon_sym_GT_AMP] = ACTIONS(4623), + [sym__special_characters] = ACTIONS(4623), + [anon_sym_DQUOTE] = ACTIONS(4623), + [anon_sym_DOLLAR] = ACTIONS(4623), + [sym_raw_string] = ACTIONS(4623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4623), + [anon_sym_BQUOTE] = ACTIONS(4623), + [anon_sym_LT_LPAREN] = ACTIONS(4623), + [anon_sym_GT_LPAREN] = ACTIONS(4623), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_LF] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4623), + }, + [2052] = { + [sym_file_descriptor] = ACTIONS(4625), + [sym__concat] = ACTIONS(4625), + [sym_variable_name] = ACTIONS(4625), + [anon_sym_PIPE] = ACTIONS(4627), + [anon_sym_RPAREN] = ACTIONS(4627), + [anon_sym_SEMI_SEMI] = ACTIONS(4627), + [anon_sym_PIPE_AMP] = ACTIONS(4627), + [anon_sym_AMP_AMP] = ACTIONS(4627), + [anon_sym_PIPE_PIPE] = ACTIONS(4627), + [anon_sym_LT] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4627), + [anon_sym_GT_GT] = ACTIONS(4627), + [anon_sym_AMP_GT] = ACTIONS(4627), + [anon_sym_AMP_GT_GT] = ACTIONS(4627), + [anon_sym_LT_AMP] = ACTIONS(4627), + [anon_sym_GT_AMP] = ACTIONS(4627), + [sym__special_characters] = ACTIONS(4627), + [anon_sym_DQUOTE] = ACTIONS(4627), + [anon_sym_DOLLAR] = ACTIONS(4627), + [sym_raw_string] = ACTIONS(4627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4627), + [anon_sym_BQUOTE] = ACTIONS(4627), + [anon_sym_LT_LPAREN] = ACTIONS(4627), + [anon_sym_GT_LPAREN] = ACTIONS(4627), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4627), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_LF] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4627), + }, + [2053] = { + [sym_file_descriptor] = ACTIONS(4629), + [sym__concat] = ACTIONS(4629), + [sym_variable_name] = ACTIONS(4629), + [anon_sym_PIPE] = ACTIONS(4631), + [anon_sym_RPAREN] = ACTIONS(4631), + [anon_sym_SEMI_SEMI] = ACTIONS(4631), + [anon_sym_PIPE_AMP] = ACTIONS(4631), + [anon_sym_AMP_AMP] = ACTIONS(4631), + [anon_sym_PIPE_PIPE] = ACTIONS(4631), + [anon_sym_LT] = ACTIONS(4631), + [anon_sym_GT] = ACTIONS(4631), + [anon_sym_GT_GT] = ACTIONS(4631), + [anon_sym_AMP_GT] = ACTIONS(4631), + [anon_sym_AMP_GT_GT] = ACTIONS(4631), + [anon_sym_LT_AMP] = ACTIONS(4631), + [anon_sym_GT_AMP] = ACTIONS(4631), + [sym__special_characters] = ACTIONS(4631), + [anon_sym_DQUOTE] = ACTIONS(4631), + [anon_sym_DOLLAR] = ACTIONS(4631), + [sym_raw_string] = ACTIONS(4631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4631), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4631), + [anon_sym_BQUOTE] = ACTIONS(4631), + [anon_sym_LT_LPAREN] = ACTIONS(4631), + [anon_sym_GT_LPAREN] = ACTIONS(4631), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4631), + [anon_sym_SEMI] = ACTIONS(4631), + [anon_sym_LF] = ACTIONS(4629), + [anon_sym_AMP] = ACTIONS(4631), + }, + [2054] = { + [sym_file_descriptor] = ACTIONS(4633), + [sym__concat] = ACTIONS(4633), + [sym_variable_name] = ACTIONS(4633), + [anon_sym_PIPE] = ACTIONS(4635), + [anon_sym_RPAREN] = ACTIONS(4635), + [anon_sym_SEMI_SEMI] = ACTIONS(4635), + [anon_sym_PIPE_AMP] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_GT_GT] = ACTIONS(4635), + [anon_sym_AMP_GT] = ACTIONS(4635), + [anon_sym_AMP_GT_GT] = ACTIONS(4635), + [anon_sym_LT_AMP] = ACTIONS(4635), + [anon_sym_GT_AMP] = ACTIONS(4635), + [sym__special_characters] = ACTIONS(4635), + [anon_sym_DQUOTE] = ACTIONS(4635), + [anon_sym_DOLLAR] = ACTIONS(4635), + [sym_raw_string] = ACTIONS(4635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4635), + [anon_sym_BQUOTE] = ACTIONS(4635), + [anon_sym_LT_LPAREN] = ACTIONS(4635), + [anon_sym_GT_LPAREN] = ACTIONS(4635), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_LF] = ACTIONS(4633), + [anon_sym_AMP] = ACTIONS(4635), + }, + [2055] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5322), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2056] = { + [sym_file_descriptor] = ACTIONS(4639), + [sym__concat] = ACTIONS(4639), + [sym_variable_name] = ACTIONS(4639), + [anon_sym_PIPE] = ACTIONS(4641), + [anon_sym_RPAREN] = ACTIONS(4641), + [anon_sym_SEMI_SEMI] = ACTIONS(4641), + [anon_sym_PIPE_AMP] = ACTIONS(4641), + [anon_sym_AMP_AMP] = ACTIONS(4641), + [anon_sym_PIPE_PIPE] = ACTIONS(4641), + [anon_sym_LT] = ACTIONS(4641), + [anon_sym_GT] = ACTIONS(4641), + [anon_sym_GT_GT] = ACTIONS(4641), + [anon_sym_AMP_GT] = ACTIONS(4641), + [anon_sym_AMP_GT_GT] = ACTIONS(4641), + [anon_sym_LT_AMP] = ACTIONS(4641), + [anon_sym_GT_AMP] = ACTIONS(4641), + [sym__special_characters] = ACTIONS(4641), + [anon_sym_DQUOTE] = ACTIONS(4641), + [anon_sym_DOLLAR] = ACTIONS(4641), + [sym_raw_string] = ACTIONS(4641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4641), + [anon_sym_BQUOTE] = ACTIONS(4641), + [anon_sym_LT_LPAREN] = ACTIONS(4641), + [anon_sym_GT_LPAREN] = ACTIONS(4641), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4641), + [anon_sym_SEMI] = ACTIONS(4641), + [anon_sym_LF] = ACTIONS(4639), + [anon_sym_AMP] = ACTIONS(4641), + }, + [2057] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5324), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2058] = { + [sym_file_descriptor] = ACTIONS(4645), + [sym__concat] = ACTIONS(4645), + [sym_variable_name] = ACTIONS(4645), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_RPAREN] = ACTIONS(4647), + [anon_sym_SEMI_SEMI] = ACTIONS(4647), + [anon_sym_PIPE_AMP] = ACTIONS(4647), + [anon_sym_AMP_AMP] = ACTIONS(4647), + [anon_sym_PIPE_PIPE] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_GT] = ACTIONS(4647), + [anon_sym_AMP_GT] = ACTIONS(4647), + [anon_sym_AMP_GT_GT] = ACTIONS(4647), + [anon_sym_LT_AMP] = ACTIONS(4647), + [anon_sym_GT_AMP] = ACTIONS(4647), + [sym__special_characters] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4647), + [anon_sym_DOLLAR] = ACTIONS(4647), + [sym_raw_string] = ACTIONS(4647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4647), + [anon_sym_BQUOTE] = ACTIONS(4647), + [anon_sym_LT_LPAREN] = ACTIONS(4647), + [anon_sym_GT_LPAREN] = ACTIONS(4647), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4647), + [anon_sym_LF] = ACTIONS(4645), + [anon_sym_AMP] = ACTIONS(4647), + }, + [2059] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5326), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2060] = { + [sym_file_descriptor] = ACTIONS(4651), + [sym__concat] = ACTIONS(4651), + [sym_variable_name] = ACTIONS(4651), + [anon_sym_PIPE] = ACTIONS(4653), + [anon_sym_RPAREN] = ACTIONS(4653), + [anon_sym_SEMI_SEMI] = ACTIONS(4653), + [anon_sym_PIPE_AMP] = ACTIONS(4653), + [anon_sym_AMP_AMP] = ACTIONS(4653), + [anon_sym_PIPE_PIPE] = ACTIONS(4653), + [anon_sym_LT] = ACTIONS(4653), + [anon_sym_GT] = ACTIONS(4653), + [anon_sym_GT_GT] = ACTIONS(4653), + [anon_sym_AMP_GT] = ACTIONS(4653), + [anon_sym_AMP_GT_GT] = ACTIONS(4653), + [anon_sym_LT_AMP] = ACTIONS(4653), + [anon_sym_GT_AMP] = ACTIONS(4653), + [sym__special_characters] = ACTIONS(4653), + [anon_sym_DQUOTE] = ACTIONS(4653), + [anon_sym_DOLLAR] = ACTIONS(4653), + [sym_raw_string] = ACTIONS(4653), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4653), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4653), + [anon_sym_BQUOTE] = ACTIONS(4653), + [anon_sym_LT_LPAREN] = ACTIONS(4653), + [anon_sym_GT_LPAREN] = ACTIONS(4653), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4653), + [anon_sym_SEMI] = ACTIONS(4653), + [anon_sym_LF] = ACTIONS(4651), + [anon_sym_AMP] = ACTIONS(4653), + }, + [2061] = { + [sym_file_descriptor] = ACTIONS(4655), + [sym__concat] = ACTIONS(4655), + [sym_variable_name] = ACTIONS(4655), + [anon_sym_PIPE] = ACTIONS(4657), + [anon_sym_RPAREN] = ACTIONS(4657), + [anon_sym_SEMI_SEMI] = ACTIONS(4657), + [anon_sym_PIPE_AMP] = ACTIONS(4657), + [anon_sym_AMP_AMP] = ACTIONS(4657), + [anon_sym_PIPE_PIPE] = ACTIONS(4657), + [anon_sym_LT] = ACTIONS(4657), + [anon_sym_GT] = ACTIONS(4657), + [anon_sym_GT_GT] = ACTIONS(4657), + [anon_sym_AMP_GT] = ACTIONS(4657), + [anon_sym_AMP_GT_GT] = ACTIONS(4657), + [anon_sym_LT_AMP] = ACTIONS(4657), + [anon_sym_GT_AMP] = ACTIONS(4657), + [sym__special_characters] = ACTIONS(4657), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_DOLLAR] = ACTIONS(4657), + [sym_raw_string] = ACTIONS(4657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4657), + [anon_sym_BQUOTE] = ACTIONS(4657), + [anon_sym_LT_LPAREN] = ACTIONS(4657), + [anon_sym_GT_LPAREN] = ACTIONS(4657), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4657), + [anon_sym_SEMI] = ACTIONS(4657), + [anon_sym_LF] = ACTIONS(4655), + [anon_sym_AMP] = ACTIONS(4657), + }, + [2062] = { + [sym__concat] = ACTIONS(3740), + [anon_sym_SEMI_SEMI] = ACTIONS(3742), + [sym__special_characters] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_DOLLAR] = ACTIONS(3742), + [sym_raw_string] = ACTIONS(3742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3742), + [anon_sym_BQUOTE] = ACTIONS(3742), + [anon_sym_LT_LPAREN] = ACTIONS(3742), + [anon_sym_GT_LPAREN] = ACTIONS(3742), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_LF] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3742), + }, + [2063] = { + [sym__concat] = ACTIONS(3746), + [anon_sym_SEMI_SEMI] = ACTIONS(3748), + [sym__special_characters] = ACTIONS(3748), + [anon_sym_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3748), + [sym_raw_string] = ACTIONS(3748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3748), + [anon_sym_BQUOTE] = ACTIONS(3748), + [anon_sym_LT_LPAREN] = ACTIONS(3748), + [anon_sym_GT_LPAREN] = ACTIONS(3748), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3748), + [anon_sym_SEMI] = ACTIONS(3748), + [anon_sym_LF] = ACTIONS(3746), + [anon_sym_AMP] = ACTIONS(3748), + }, + [2064] = { + [sym__concat] = ACTIONS(3831), + [anon_sym_SEMI_SEMI] = ACTIONS(3833), + [sym__special_characters] = ACTIONS(3833), + [anon_sym_DQUOTE] = ACTIONS(3833), + [anon_sym_DOLLAR] = ACTIONS(3833), + [sym_raw_string] = ACTIONS(3833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3833), + [anon_sym_BQUOTE] = ACTIONS(3833), + [anon_sym_LT_LPAREN] = ACTIONS(3833), + [anon_sym_GT_LPAREN] = ACTIONS(3833), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3833), + [anon_sym_SEMI] = ACTIONS(3833), + [anon_sym_LF] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3833), + }, + [2065] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5328), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2066] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(5330), + [sym_comment] = ACTIONS(54), + }, + [2067] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(5332), + [sym_comment] = ACTIONS(54), + }, + [2068] = { + [anon_sym_RBRACE] = ACTIONS(5332), + [sym_comment] = ACTIONS(54), + }, + [2069] = { + [sym_concatenation] = STATE(2270), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2270), + [anon_sym_RBRACE] = ACTIONS(5334), + [anon_sym_EQ] = ACTIONS(5336), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(5336), + [anon_sym_COLON_QMARK] = ACTIONS(5336), + [anon_sym_COLON_DASH] = ACTIONS(5336), + [anon_sym_PERCENT] = ACTIONS(5336), + [anon_sym_DASH] = ACTIONS(5336), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2070] = { + [sym__concat] = ACTIONS(3847), + [anon_sym_SEMI_SEMI] = ACTIONS(3849), + [sym__special_characters] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3849), + [sym_raw_string] = ACTIONS(3849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3849), + [anon_sym_BQUOTE] = ACTIONS(3849), + [anon_sym_LT_LPAREN] = ACTIONS(3849), + [anon_sym_GT_LPAREN] = ACTIONS(3849), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3849), + [anon_sym_SEMI] = ACTIONS(3849), + [anon_sym_LF] = ACTIONS(3847), + [anon_sym_AMP] = ACTIONS(3849), + }, + [2071] = { + [sym_concatenation] = STATE(2272), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2272), + [anon_sym_RBRACE] = ACTIONS(5340), + [anon_sym_EQ] = ACTIONS(5342), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5344), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(5342), + [anon_sym_COLON_QMARK] = ACTIONS(5342), + [anon_sym_COLON_DASH] = ACTIONS(5342), + [anon_sym_PERCENT] = ACTIONS(5342), + [anon_sym_DASH] = ACTIONS(5342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2072] = { + [sym__concat] = ACTIONS(3857), + [anon_sym_SEMI_SEMI] = ACTIONS(3859), + [sym__special_characters] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_DOLLAR] = ACTIONS(3859), + [sym_raw_string] = ACTIONS(3859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3859), + [anon_sym_BQUOTE] = ACTIONS(3859), + [anon_sym_LT_LPAREN] = ACTIONS(3859), + [anon_sym_GT_LPAREN] = ACTIONS(3859), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3859), + [anon_sym_SEMI] = ACTIONS(3859), + [anon_sym_LF] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(3859), + }, + [2073] = { + [sym_concatenation] = STATE(2274), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2274), + [anon_sym_RBRACE] = ACTIONS(5346), + [anon_sym_EQ] = ACTIONS(5348), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(5348), + [anon_sym_COLON_QMARK] = ACTIONS(5348), + [anon_sym_COLON_DASH] = ACTIONS(5348), + [anon_sym_PERCENT] = ACTIONS(5348), + [anon_sym_DASH] = ACTIONS(5348), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2074] = { + [sym__concat] = ACTIONS(3867), + [anon_sym_SEMI_SEMI] = ACTIONS(3869), + [sym__special_characters] = ACTIONS(3869), + [anon_sym_DQUOTE] = ACTIONS(3869), + [anon_sym_DOLLAR] = ACTIONS(3869), + [sym_raw_string] = ACTIONS(3869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3869), + [anon_sym_BQUOTE] = ACTIONS(3869), + [anon_sym_LT_LPAREN] = ACTIONS(3869), + [anon_sym_GT_LPAREN] = ACTIONS(3869), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3869), + [anon_sym_SEMI] = ACTIONS(3869), + [anon_sym_LF] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3869), + }, + [2075] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5352), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2076] = { + [sym__concat] = ACTIONS(3873), + [anon_sym_SEMI_SEMI] = ACTIONS(3875), + [sym__special_characters] = ACTIONS(3875), + [anon_sym_DQUOTE] = ACTIONS(3875), + [anon_sym_DOLLAR] = ACTIONS(3875), + [sym_raw_string] = ACTIONS(3875), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3875), + [anon_sym_BQUOTE] = ACTIONS(3875), + [anon_sym_LT_LPAREN] = ACTIONS(3875), + [anon_sym_GT_LPAREN] = ACTIONS(3875), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3875), + [anon_sym_SEMI] = ACTIONS(3875), + [anon_sym_LF] = ACTIONS(3873), + [anon_sym_AMP] = ACTIONS(3875), + }, + [2077] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5354), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2078] = { + [sym_concatenation] = STATE(2277), + [sym_string] = STATE(2282), + [sym_array] = STATE(2277), + [sym_simple_expansion] = STATE(2282), + [sym_string_expansion] = STATE(2282), + [sym_expansion] = STATE(2282), + [sym_command_substitution] = STATE(2282), + [sym_process_substitution] = STATE(2282), + [sym__empty_value] = ACTIONS(5356), + [anon_sym_LPAREN] = ACTIONS(5358), + [sym__special_characters] = ACTIONS(5360), + [anon_sym_DQUOTE] = ACTIONS(5362), + [anon_sym_DOLLAR] = ACTIONS(5364), + [sym_raw_string] = ACTIONS(5366), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5370), + [anon_sym_BQUOTE] = ACTIONS(5372), + [anon_sym_LT_LPAREN] = ACTIONS(5374), + [anon_sym_GT_LPAREN] = ACTIONS(5374), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5366), + }, + [2079] = { + [sym_file_descriptor] = ACTIONS(388), + [sym_variable_name] = ACTIONS(388), + [anon_sym_esac] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(390), + [anon_sym_SEMI_SEMI] = ACTIONS(390), + [anon_sym_PIPE_AMP] = ACTIONS(390), + [anon_sym_AMP_AMP] = ACTIONS(390), + [anon_sym_PIPE_PIPE] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(390), + [anon_sym_GT_GT] = ACTIONS(390), + [anon_sym_AMP_GT] = ACTIONS(390), + [anon_sym_AMP_GT_GT] = ACTIONS(390), + [anon_sym_LT_AMP] = ACTIONS(390), + [anon_sym_GT_AMP] = ACTIONS(390), + [sym__special_characters] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(390), + [sym_raw_string] = ACTIONS(390), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(390), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_BQUOTE] = ACTIONS(390), + [anon_sym_LT_LPAREN] = ACTIONS(390), + [anon_sym_GT_LPAREN] = ACTIONS(390), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(390), + [anon_sym_SEMI] = ACTIONS(390), + [anon_sym_LF] = ACTIONS(388), + [anon_sym_AMP] = ACTIONS(390), + }, + [2080] = { + [sym_do_group] = STATE(2287), + [anon_sym_do] = ACTIONS(398), + [sym_comment] = ACTIONS(54), + }, + [2081] = { + [sym_compound_statement] = STATE(2289), + [anon_sym_LPAREN] = ACTIONS(5376), + [anon_sym_LBRACE] = ACTIONS(442), + [sym_comment] = ACTIONS(54), + }, + [2082] = { + [sym_concatenation] = STATE(76), + [sym_string] = STATE(71), + [sym_simple_expansion] = STATE(71), + [sym_string_expansion] = STATE(71), + [sym_expansion] = STATE(71), + [sym_command_substitution] = STATE(71), + [sym_process_substitution] = STATE(71), + [aux_sym_command_repeat2] = STATE(299), + [anon_sym_EQ_TILDE] = ACTIONS(106), + [anon_sym_EQ_EQ] = ACTIONS(106), + [anon_sym_RBRACK] = ACTIONS(5378), + [sym__special_characters] = ACTIONS(532), + [anon_sym_DQUOTE] = ACTIONS(110), + [anon_sym_DOLLAR] = ACTIONS(112), + [sym_raw_string] = ACTIONS(114), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(118), + [anon_sym_BQUOTE] = ACTIONS(120), + [anon_sym_LT_LPAREN] = ACTIONS(122), + [anon_sym_GT_LPAREN] = ACTIONS(122), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(124), + }, + [2083] = { + [sym_concatenation] = STATE(87), + [sym_string] = STATE(82), + [sym_simple_expansion] = STATE(82), + [sym_string_expansion] = STATE(82), + [sym_expansion] = STATE(82), + [sym_command_substitution] = STATE(82), + [sym_process_substitution] = STATE(82), + [aux_sym_command_repeat2] = STATE(321), + [anon_sym_EQ_TILDE] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(126), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5378), + [sym__special_characters] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(130), + [anon_sym_DOLLAR] = ACTIONS(132), + [sym_raw_string] = ACTIONS(134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(140), + [anon_sym_LT_LPAREN] = ACTIONS(142), + [anon_sym_GT_LPAREN] = ACTIONS(142), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(144), + }, + [2084] = { + [sym__assignment] = STATE(2292), + [anon_sym_LBRACK] = ACTIONS(62), + [anon_sym_EQ] = ACTIONS(5380), + [anon_sym_PLUS_EQ] = ACTIONS(5380), + [sym_comment] = ACTIONS(54), + }, + [2085] = { + [aux_sym_concatenation_repeat1] = STATE(2294), + [sym__concat] = ACTIONS(5382), + [sym_variable_name] = ACTIONS(578), + [anon_sym_esac] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_SEMI_SEMI] = ACTIONS(580), + [anon_sym_PIPE_AMP] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(580), + [anon_sym_PIPE_PIPE] = ACTIONS(580), + [sym__special_characters] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_DOLLAR] = ACTIONS(580), + [sym_raw_string] = ACTIONS(580), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(580), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(580), + [anon_sym_BQUOTE] = ACTIONS(580), [anon_sym_LT_LPAREN] = ACTIONS(580), [anon_sym_GT_LPAREN] = ACTIONS(580), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1525), - [sym_regex] = ACTIONS(1116), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(580), + [sym_word] = ACTIONS(580), + [anon_sym_SEMI] = ACTIONS(580), + [anon_sym_LF] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(580), }, - [319] = { - [sym_concatenation] = STATE(618), - [sym_string] = STATE(821), - [sym_simple_expansion] = STATE(821), - [sym_string_expansion] = STATE(821), - [sym_expansion] = STATE(821), - [sym_command_substitution] = STATE(821), - [sym_process_substitution] = STATE(821), - [sym__special_characters] = ACTIONS(1527), - [anon_sym_DQUOTE] = ACTIONS(1529), - [anon_sym_DOLLAR] = ACTIONS(1531), - [sym_raw_string] = ACTIONS(1533), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1535), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1537), - [anon_sym_BQUOTE] = ACTIONS(1539), - [anon_sym_LT_LPAREN] = ACTIONS(1541), - [anon_sym_GT_LPAREN] = ACTIONS(1541), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1543), + [2086] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(2296), + [anon_sym_DQUOTE] = ACTIONS(5384), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), }, - [320] = { - [sym_concatenation] = STATE(624), - [sym_string] = STATE(827), - [sym_simple_expansion] = STATE(827), - [sym_string_expansion] = STATE(827), - [sym_expansion] = STATE(827), - [sym_command_substitution] = STATE(827), - [sym_process_substitution] = STATE(827), - [sym__special_characters] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1529), - [anon_sym_DOLLAR] = ACTIONS(1531), - [sym_raw_string] = ACTIONS(1547), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1535), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1537), - [anon_sym_BQUOTE] = ACTIONS(1539), - [anon_sym_LT_LPAREN] = ACTIONS(1541), - [anon_sym_GT_LPAREN] = ACTIONS(1541), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1549), + [2087] = { + [sym_string] = STATE(2298), + [anon_sym_DQUOTE] = ACTIONS(5386), + [anon_sym_DOLLAR] = ACTIONS(5388), + [sym_raw_string] = ACTIONS(5390), + [anon_sym_POUND] = ACTIONS(5388), + [anon_sym_DASH] = ACTIONS(5388), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5392), + [anon_sym_STAR] = ACTIONS(5388), + [anon_sym_AT] = ACTIONS(5388), + [anon_sym_QMARK] = ACTIONS(5388), + [anon_sym_0] = ACTIONS(5394), + [anon_sym__] = ACTIONS(5394), }, - [321] = { - [aux_sym_concatenation_repeat1] = STATE(295), - [sym_file_descriptor] = ACTIONS(608), - [sym__concat] = ACTIONS(526), + [2088] = { + [aux_sym_concatenation_repeat1] = STATE(2294), + [sym__concat] = ACTIONS(5382), + [sym_variable_name] = ACTIONS(594), + [anon_sym_esac] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_SEMI_SEMI] = ACTIONS(596), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [sym__special_characters] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(596), + [sym_raw_string] = ACTIONS(596), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_LT_LPAREN] = ACTIONS(596), + [anon_sym_GT_LPAREN] = ACTIONS(596), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(596), + [sym_word] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_LF] = ACTIONS(594), + [anon_sym_AMP] = ACTIONS(596), + }, + [2089] = { + [sym_subscript] = STATE(2304), + [sym_variable_name] = ACTIONS(5396), + [anon_sym_DOLLAR] = ACTIONS(5398), + [anon_sym_POUND] = ACTIONS(5400), + [anon_sym_DASH] = ACTIONS(5398), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5402), + [anon_sym_STAR] = ACTIONS(5398), + [anon_sym_AT] = ACTIONS(5398), + [anon_sym_QMARK] = ACTIONS(5398), + [anon_sym_0] = ACTIONS(5404), + [anon_sym__] = ACTIONS(5404), + }, + [2090] = { + [sym_for_statement] = STATE(2305), + [sym_while_statement] = STATE(2305), + [sym_if_statement] = STATE(2305), + [sym_case_statement] = STATE(2305), + [sym_function_definition] = STATE(2305), + [sym_subshell] = STATE(2305), + [sym_pipeline] = STATE(2305), + [sym_list] = STATE(2305), + [sym_command] = STATE(2305), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(2305), + [sym_variable_assignment] = STATE(2306), + [sym_declaration_command] = STATE(2305), + [sym_unset_command] = STATE(2305), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [2091] = { + [sym_for_statement] = STATE(2307), + [sym_while_statement] = STATE(2307), + [sym_if_statement] = STATE(2307), + [sym_case_statement] = STATE(2307), + [sym_function_definition] = STATE(2307), + [sym_subshell] = STATE(2307), + [sym_pipeline] = STATE(2307), + [sym_list] = STATE(2307), + [sym_command] = STATE(2307), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(2307), + [sym_variable_assignment] = STATE(2308), + [sym_declaration_command] = STATE(2307), + [sym_unset_command] = STATE(2307), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), + }, + [2092] = { + [sym_for_statement] = STATE(2309), + [sym_while_statement] = STATE(2309), + [sym_if_statement] = STATE(2309), + [sym_case_statement] = STATE(2309), + [sym_function_definition] = STATE(2309), + [sym_subshell] = STATE(2309), + [sym_pipeline] = STATE(2309), + [sym_list] = STATE(2309), + [sym_command] = STATE(2309), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(2309), + [sym_variable_assignment] = STATE(2310), + [sym_declaration_command] = STATE(2309), + [sym_unset_command] = STATE(2309), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [2093] = { + [sym_variable_name] = ACTIONS(608), + [anon_sym_esac] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_RPAREN] = ACTIONS(610), [anon_sym_SEMI_SEMI] = ACTIONS(610), [anon_sym_PIPE_AMP] = ACTIONS(610), [anon_sym_AMP_AMP] = ACTIONS(610), [anon_sym_PIPE_PIPE] = ACTIONS(610), - [anon_sym_EQ_TILDE] = ACTIONS(610), - [anon_sym_EQ_EQ] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(610), - [anon_sym_GT] = ACTIONS(610), - [anon_sym_GT_GT] = ACTIONS(610), - [anon_sym_AMP_GT] = ACTIONS(610), - [anon_sym_AMP_GT_GT] = ACTIONS(610), - [anon_sym_LT_AMP] = ACTIONS(610), - [anon_sym_GT_AMP] = ACTIONS(610), - [anon_sym_LT_LT] = ACTIONS(610), - [anon_sym_LT_LT_DASH] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(610), [sym__special_characters] = ACTIONS(610), [anon_sym_DQUOTE] = ACTIONS(610), [anon_sym_DOLLAR] = ACTIONS(610), @@ -20799,25566 +56908,1222 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(610), [anon_sym_LT_LPAREN] = ACTIONS(610), [anon_sym_GT_LPAREN] = ACTIONS(610), - [sym_comment] = ACTIONS(182), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(610), [sym_word] = ACTIONS(610), [anon_sym_SEMI] = ACTIONS(610), - [anon_sym_LF] = ACTIONS(610), + [anon_sym_LF] = ACTIONS(608), [anon_sym_AMP] = ACTIONS(610), }, - [322] = { - [aux_sym_concatenation_repeat1] = STATE(295), - [sym_file_descriptor] = ACTIONS(624), - [sym__concat] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(626), - [anon_sym_RPAREN] = ACTIONS(626), - [anon_sym_SEMI_SEMI] = ACTIONS(626), - [anon_sym_PIPE_AMP] = ACTIONS(626), - [anon_sym_AMP_AMP] = ACTIONS(626), - [anon_sym_PIPE_PIPE] = ACTIONS(626), - [anon_sym_EQ_TILDE] = ACTIONS(626), - [anon_sym_EQ_EQ] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_GT] = ACTIONS(626), - [anon_sym_GT_GT] = ACTIONS(626), - [anon_sym_AMP_GT] = ACTIONS(626), - [anon_sym_AMP_GT_GT] = ACTIONS(626), - [anon_sym_LT_AMP] = ACTIONS(626), - [anon_sym_GT_AMP] = ACTIONS(626), - [anon_sym_LT_LT] = ACTIONS(626), - [anon_sym_LT_LT_DASH] = ACTIONS(626), - [anon_sym_LT_LT_LT] = ACTIONS(626), - [sym__special_characters] = ACTIONS(626), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_DOLLAR] = ACTIONS(626), - [sym_raw_string] = ACTIONS(626), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(626), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(626), - [anon_sym_BQUOTE] = ACTIONS(626), - [anon_sym_LT_LPAREN] = ACTIONS(626), - [anon_sym_GT_LPAREN] = ACTIONS(626), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(626), - [anon_sym_LF] = ACTIONS(626), - [anon_sym_AMP] = ACTIONS(626), - }, - [323] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(828), - [sym_file_descriptor] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_RPAREN] = ACTIONS(1150), - [anon_sym_SEMI_SEMI] = ACTIONS(1150), - [anon_sym_PIPE_AMP] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(562), - [anon_sym_AMP_GT] = ACTIONS(562), - [anon_sym_AMP_GT_GT] = ACTIONS(562), - [anon_sym_LT_AMP] = ACTIONS(562), - [anon_sym_GT_AMP] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(564), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), - }, - [324] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [sym_concatenation] = STATE(208), - [sym_string] = STATE(322), - [sym_simple_expansion] = STATE(322), - [sym_string_expansion] = STATE(322), - [sym_expansion] = STATE(322), - [sym_command_substitution] = STATE(322), - [sym_process_substitution] = STATE(322), - [aux_sym_while_statement_repeat1] = STATE(829), - [aux_sym_command_repeat2] = STATE(830), - [sym_file_descriptor] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_RPAREN] = ACTIONS(1150), - [anon_sym_SEMI_SEMI] = ACTIONS(1150), - [anon_sym_PIPE_AMP] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_EQ_TILDE] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(562), - [anon_sym_AMP_GT] = ACTIONS(562), - [anon_sym_AMP_GT_GT] = ACTIONS(562), - [anon_sym_LT_AMP] = ACTIONS(562), - [anon_sym_GT_AMP] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(564), - [sym__special_characters] = ACTIONS(566), - [anon_sym_DQUOTE] = ACTIONS(568), - [anon_sym_DOLLAR] = ACTIONS(570), - [sym_raw_string] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_LT_LPAREN] = ACTIONS(580), - [anon_sym_GT_LPAREN] = ACTIONS(580), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(572), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), - }, - [325] = { - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_RPAREN] = ACTIONS(1551), - [anon_sym_SEMI_SEMI] = ACTIONS(1553), - [anon_sym_PIPE_AMP] = ACTIONS(550), - [anon_sym_AMP_AMP] = ACTIONS(556), - [anon_sym_PIPE_PIPE] = ACTIONS(556), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_LF] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1553), - }, - [326] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_RPAREN] = ACTIONS(1551), - [anon_sym_SEMI_SEMI] = ACTIONS(1553), - [anon_sym_PIPE_AMP] = ACTIONS(550), - [anon_sym_AMP_AMP] = ACTIONS(556), - [anon_sym_PIPE_PIPE] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_LF] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1553), - }, - [327] = { - [sym__terminated_statement] = STATE(25), - [sym_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_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(26), - [sym_variable_assignment] = STATE(28), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(327), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1152), - [sym_variable_name] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1166), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_function] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), - [anon_sym_declare] = ACTIONS(1184), - [anon_sym_typeset] = ACTIONS(1184), - [anon_sym_export] = ACTIONS(1184), - [anon_sym_readonly] = ACTIONS(1184), - [anon_sym_local] = ACTIONS(1184), - [anon_sym_unset] = ACTIONS(1187), - [anon_sym_unsetenv] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1193), - [anon_sym_AMP_GT] = ACTIONS(1190), - [anon_sym_AMP_GT_GT] = ACTIONS(1193), - [anon_sym_LT_AMP] = ACTIONS(1193), - [anon_sym_GT_AMP] = ACTIONS(1193), - [sym__special_characters] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1199), - [anon_sym_DOLLAR] = ACTIONS(1202), - [sym_raw_string] = ACTIONS(1205), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1211), - [anon_sym_BQUOTE] = ACTIONS(1214), - [anon_sym_LT_LPAREN] = ACTIONS(1217), - [anon_sym_GT_LPAREN] = ACTIONS(1217), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1220), - }, - [328] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [sym_concatenation] = STATE(208), - [sym_string] = STATE(322), - [sym_simple_expansion] = STATE(322), - [sym_string_expansion] = STATE(322), - [sym_expansion] = STATE(322), - [sym_command_substitution] = STATE(322), - [sym_process_substitution] = STATE(322), - [aux_sym_while_statement_repeat1] = STATE(829), - [aux_sym_command_repeat2] = STATE(832), - [sym_file_descriptor] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_RPAREN] = ACTIONS(1150), - [anon_sym_SEMI_SEMI] = ACTIONS(1150), - [anon_sym_PIPE_AMP] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_EQ_TILDE] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(562), - [anon_sym_AMP_GT] = ACTIONS(562), - [anon_sym_AMP_GT_GT] = ACTIONS(562), - [anon_sym_LT_AMP] = ACTIONS(562), - [anon_sym_GT_AMP] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(564), - [sym__special_characters] = ACTIONS(566), - [anon_sym_DQUOTE] = ACTIONS(568), - [anon_sym_DOLLAR] = ACTIONS(570), - [sym_raw_string] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_LT_LPAREN] = ACTIONS(580), - [anon_sym_GT_LPAREN] = ACTIONS(580), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(572), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), - }, - [329] = { - [aux_sym_concatenation_repeat1] = STATE(333), - [sym__concat] = ACTIONS(604), - [anon_sym_EQ_TILDE] = ACTIONS(1555), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_RBRACK] = ACTIONS(1557), - [sym__special_characters] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_DOLLAR] = ACTIONS(1555), - [sym_raw_string] = ACTIONS(1557), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1557), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1557), - [anon_sym_BQUOTE] = ACTIONS(1557), - [anon_sym_LT_LPAREN] = ACTIONS(1557), - [anon_sym_GT_LPAREN] = ACTIONS(1557), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1559), - }, - [330] = { - [aux_sym_concatenation_repeat1] = STATE(333), - [sym__concat] = ACTIONS(604), - [anon_sym_EQ_TILDE] = ACTIONS(1561), - [anon_sym_EQ_EQ] = ACTIONS(1561), - [anon_sym_RBRACK] = ACTIONS(1563), - [sym__special_characters] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1563), - [anon_sym_DOLLAR] = ACTIONS(1561), - [sym_raw_string] = ACTIONS(1563), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1563), - [anon_sym_BQUOTE] = ACTIONS(1563), - [anon_sym_LT_LPAREN] = ACTIONS(1563), - [anon_sym_GT_LPAREN] = ACTIONS(1563), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1565), - }, - [331] = { - [anon_sym_EQ_TILDE] = ACTIONS(1561), - [anon_sym_EQ_EQ] = ACTIONS(1561), - [anon_sym_RBRACK] = ACTIONS(1563), - [sym__special_characters] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1563), - [anon_sym_DOLLAR] = ACTIONS(1561), - [sym_raw_string] = ACTIONS(1563), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1563), - [anon_sym_BQUOTE] = ACTIONS(1563), - [anon_sym_LT_LPAREN] = ACTIONS(1563), - [anon_sym_GT_LPAREN] = ACTIONS(1563), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1565), - }, - [332] = { - [sym_string] = STATE(833), - [sym_simple_expansion] = STATE(833), - [sym_string_expansion] = STATE(833), - [sym_expansion] = STATE(833), - [sym_command_substitution] = STATE(833), - [sym_process_substitution] = STATE(833), - [sym__special_characters] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(126), - [anon_sym_DOLLAR] = ACTIONS(128), - [sym_raw_string] = ACTIONS(1569), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), - [anon_sym_BQUOTE] = ACTIONS(136), - [anon_sym_LT_LPAREN] = ACTIONS(138), - [anon_sym_GT_LPAREN] = ACTIONS(138), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1567), - }, - [333] = { - [aux_sym_concatenation_repeat1] = STATE(834), - [sym__concat] = ACTIONS(604), - [anon_sym_EQ_TILDE] = ACTIONS(1571), - [anon_sym_EQ_EQ] = ACTIONS(1571), - [anon_sym_RBRACK] = ACTIONS(790), - [sym__special_characters] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(1571), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(792), - }, - [334] = { - [sym__concat] = ACTIONS(794), - [anon_sym_EQ_TILDE] = ACTIONS(1573), - [anon_sym_EQ_EQ] = ACTIONS(1573), - [anon_sym_RBRACK] = ACTIONS(794), - [sym__special_characters] = ACTIONS(796), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(796), - }, - [335] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(1575), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [336] = { - [sym__concat] = ACTIONS(826), - [anon_sym_EQ_TILDE] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(828), - }, - [337] = { - [sym__concat] = ACTIONS(830), - [anon_sym_EQ_TILDE] = ACTIONS(1579), - [anon_sym_EQ_EQ] = ACTIONS(1579), - [anon_sym_RBRACK] = ACTIONS(830), - [sym__special_characters] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(1579), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(832), - }, - [338] = { - [sym__concat] = ACTIONS(834), - [anon_sym_EQ_TILDE] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_RBRACK] = ACTIONS(834), - [sym__special_characters] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(1581), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(836), - }, - [339] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(1583), - [sym_comment] = ACTIONS(56), - }, - [340] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(839), - [anon_sym_RBRACE] = ACTIONS(1585), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1587), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [341] = { - [sym_subscript] = STATE(843), - [sym_variable_name] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1591), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1591), - [anon_sym_AT] = ACTIONS(1591), - [anon_sym_QMARK] = ACTIONS(1591), - [anon_sym_0] = ACTIONS(1595), - [anon_sym__] = ACTIONS(1595), - }, - [342] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(846), - [anon_sym_RBRACE] = ACTIONS(1597), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1599), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [343] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(849), - [anon_sym_RBRACE] = ACTIONS(1601), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1603), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [344] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1605), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [345] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1605), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [346] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(1605), - [sym_comment] = ACTIONS(56), - }, - [347] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(1605), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [348] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1607), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [349] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1607), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [350] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(852), - [sym_file_descriptor] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_SEMI_SEMI] = ACTIONS(1609), - [anon_sym_PIPE_AMP] = ACTIONS(1609), - [anon_sym_AMP_AMP] = ACTIONS(1609), - [anon_sym_PIPE_PIPE] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(358), - [anon_sym_GT] = ACTIONS(358), - [anon_sym_GT_GT] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(358), - [anon_sym_AMP_GT_GT] = ACTIONS(358), - [anon_sym_LT_AMP] = ACTIONS(358), - [anon_sym_GT_AMP] = ACTIONS(358), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(362), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_LF] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1609), - }, - [351] = { - [sym_concatenation] = STATE(84), - [sym_string] = STATE(79), - [sym_simple_expansion] = STATE(79), - [sym_string_expansion] = STATE(79), - [sym_expansion] = STATE(79), - [sym_command_substitution] = STATE(79), - [sym_process_substitution] = STATE(79), - [aux_sym_command_repeat2] = STATE(351), - [anon_sym_EQ_TILDE] = ACTIONS(1611), - [anon_sym_EQ_EQ] = ACTIONS(1611), - [anon_sym_RBRACK] = ACTIONS(1563), - [sym__special_characters] = ACTIONS(1614), - [anon_sym_DQUOTE] = ACTIONS(1617), - [anon_sym_DOLLAR] = ACTIONS(1620), - [sym_raw_string] = ACTIONS(1623), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1626), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1629), - [anon_sym_BQUOTE] = ACTIONS(1632), - [anon_sym_LT_LPAREN] = ACTIONS(1635), - [anon_sym_GT_LPAREN] = ACTIONS(1635), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1638), - }, - [352] = { - [aux_sym_concatenation_repeat1] = STATE(356), - [sym__concat] = ACTIONS(660), - [anon_sym_EQ_TILDE] = ACTIONS(1555), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1557), - [sym__special_characters] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_DOLLAR] = ACTIONS(1555), - [sym_raw_string] = ACTIONS(1557), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1557), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1557), - [anon_sym_BQUOTE] = ACTIONS(1557), - [anon_sym_LT_LPAREN] = ACTIONS(1557), - [anon_sym_GT_LPAREN] = ACTIONS(1557), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1559), - }, - [353] = { - [aux_sym_concatenation_repeat1] = STATE(356), - [sym__concat] = ACTIONS(660), - [anon_sym_EQ_TILDE] = ACTIONS(1561), - [anon_sym_EQ_EQ] = ACTIONS(1561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1563), - [sym__special_characters] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1563), - [anon_sym_DOLLAR] = ACTIONS(1561), - [sym_raw_string] = ACTIONS(1563), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1563), - [anon_sym_BQUOTE] = ACTIONS(1563), - [anon_sym_LT_LPAREN] = ACTIONS(1563), - [anon_sym_GT_LPAREN] = ACTIONS(1563), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1565), - }, - [354] = { - [anon_sym_EQ_TILDE] = ACTIONS(1561), - [anon_sym_EQ_EQ] = ACTIONS(1561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1563), - [sym__special_characters] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1563), - [anon_sym_DOLLAR] = ACTIONS(1561), - [sym_raw_string] = ACTIONS(1563), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1563), - [anon_sym_BQUOTE] = ACTIONS(1563), - [anon_sym_LT_LPAREN] = ACTIONS(1563), - [anon_sym_GT_LPAREN] = ACTIONS(1563), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1565), - }, - [355] = { - [sym_string] = STATE(853), - [sym_simple_expansion] = STATE(853), - [sym_string_expansion] = STATE(853), - [sym_expansion] = STATE(853), - [sym_command_substitution] = STATE(853), - [sym_process_substitution] = STATE(853), - [sym__special_characters] = ACTIONS(1641), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(148), - [sym_raw_string] = ACTIONS(1643), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(156), - [anon_sym_LT_LPAREN] = ACTIONS(158), - [anon_sym_GT_LPAREN] = ACTIONS(158), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1641), - }, - [356] = { - [aux_sym_concatenation_repeat1] = STATE(854), - [sym__concat] = ACTIONS(660), - [anon_sym_EQ_TILDE] = ACTIONS(1571), - [anon_sym_EQ_EQ] = ACTIONS(1571), - [anon_sym_RBRACK_RBRACK] = ACTIONS(790), - [sym__special_characters] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(1571), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(792), - }, - [357] = { - [sym__concat] = ACTIONS(794), - [anon_sym_EQ_TILDE] = ACTIONS(1573), - [anon_sym_EQ_EQ] = ACTIONS(1573), - [anon_sym_RBRACK_RBRACK] = ACTIONS(794), - [sym__special_characters] = ACTIONS(796), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(796), - }, - [358] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [359] = { - [sym__concat] = ACTIONS(826), - [anon_sym_EQ_TILDE] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_RBRACK_RBRACK] = ACTIONS(826), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(828), - }, - [360] = { - [sym__concat] = ACTIONS(830), - [anon_sym_EQ_TILDE] = ACTIONS(1579), - [anon_sym_EQ_EQ] = ACTIONS(1579), - [anon_sym_RBRACK_RBRACK] = ACTIONS(830), - [sym__special_characters] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(1579), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(832), - }, - [361] = { - [sym__concat] = ACTIONS(834), - [anon_sym_EQ_TILDE] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_RBRACK_RBRACK] = ACTIONS(834), - [sym__special_characters] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(1581), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(836), - }, - [362] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(1647), - [sym_comment] = ACTIONS(56), - }, - [363] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(859), - [anon_sym_RBRACE] = ACTIONS(1649), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1651), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [364] = { - [sym_subscript] = STATE(863), - [sym_variable_name] = ACTIONS(1653), - [anon_sym_DOLLAR] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1657), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_AT] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1655), - [anon_sym_0] = ACTIONS(1659), - [anon_sym__] = ACTIONS(1659), - }, - [365] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(866), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1663), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [366] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(869), - [anon_sym_RBRACE] = ACTIONS(1665), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1667), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [367] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [368] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [369] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(1669), - [sym_comment] = ACTIONS(56), - }, - [370] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(1669), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [371] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [372] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [373] = { - [sym_concatenation] = STATE(95), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_string_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat2] = STATE(373), - [anon_sym_EQ_TILDE] = ACTIONS(1673), - [anon_sym_EQ_EQ] = ACTIONS(1673), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1563), - [sym__special_characters] = ACTIONS(1676), - [anon_sym_DQUOTE] = ACTIONS(1679), - [anon_sym_DOLLAR] = ACTIONS(1682), - [sym_raw_string] = ACTIONS(1685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), - [anon_sym_BQUOTE] = ACTIONS(1694), - [anon_sym_LT_LPAREN] = ACTIONS(1697), - [anon_sym_GT_LPAREN] = ACTIONS(1697), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1700), - }, - [374] = { - [sym_concatenation] = STATE(872), - [sym_string] = STATE(875), - [sym_array] = STATE(872), - [sym_simple_expansion] = STATE(875), - [sym_string_expansion] = STATE(875), - [sym_expansion] = STATE(875), - [sym_command_substitution] = STATE(875), - [sym_process_substitution] = STATE(875), - [sym__empty_value] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1705), - [sym__special_characters] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_DOLLAR] = ACTIONS(1709), - [sym_raw_string] = ACTIONS(1711), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1713), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1715), - [anon_sym_BQUOTE] = ACTIONS(1717), - [anon_sym_LT_LPAREN] = ACTIONS(1719), - [anon_sym_GT_LPAREN] = ACTIONS(1719), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1721), - }, - [375] = { - [sym_variable_name] = ACTIONS(440), - [anon_sym_PIPE] = ACTIONS(442), - [anon_sym_RPAREN] = ACTIONS(442), - [anon_sym_SEMI_SEMI] = ACTIONS(442), - [anon_sym_PIPE_AMP] = ACTIONS(442), - [anon_sym_AMP_AMP] = ACTIONS(442), - [anon_sym_PIPE_PIPE] = ACTIONS(442), - [sym__special_characters] = ACTIONS(442), - [anon_sym_DQUOTE] = ACTIONS(442), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym_raw_string] = ACTIONS(442), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(442), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(442), - [anon_sym_BQUOTE] = ACTIONS(442), - [anon_sym_LT_LPAREN] = ACTIONS(442), - [anon_sym_GT_LPAREN] = ACTIONS(442), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(442), - [sym_word] = ACTIONS(442), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_LF] = ACTIONS(442), - [anon_sym_AMP] = ACTIONS(442), - }, - [376] = { - [sym_string] = STATE(876), - [sym_simple_expansion] = STATE(876), - [sym_string_expansion] = STATE(876), - [sym_expansion] = STATE(876), - [sym_command_substitution] = STATE(876), - [sym_process_substitution] = STATE(876), - [sym__special_characters] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_DOLLAR] = ACTIONS(1709), - [sym_raw_string] = ACTIONS(1725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1713), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1715), - [anon_sym_BQUOTE] = ACTIONS(1717), - [anon_sym_LT_LPAREN] = ACTIONS(1719), - [anon_sym_GT_LPAREN] = ACTIONS(1719), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1723), - }, - [377] = { - [aux_sym_concatenation_repeat1] = STATE(877), - [sym__concat] = ACTIONS(686), - [sym_variable_name] = ACTIONS(790), - [anon_sym_PIPE] = ACTIONS(792), - [anon_sym_SEMI_SEMI] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [sym__special_characters] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(792), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(792), - [sym_word] = ACTIONS(792), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LF] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(792), - }, - [378] = { - [sym__concat] = ACTIONS(794), - [sym_variable_name] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_SEMI_SEMI] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [sym__special_characters] = ACTIONS(796), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(796), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(796), - [sym_word] = ACTIONS(796), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_LF] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - }, - [379] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [380] = { - [sym__concat] = ACTIONS(826), - [sym_variable_name] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_SEMI_SEMI] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(828), - [sym_word] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(828), - }, - [381] = { - [sym__concat] = ACTIONS(830), - [sym_variable_name] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [sym__special_characters] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(832), - [sym_word] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(832), - [anon_sym_AMP] = ACTIONS(832), - }, - [382] = { - [sym__concat] = ACTIONS(834), - [sym_variable_name] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_SEMI_SEMI] = ACTIONS(836), - [anon_sym_PIPE_AMP] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [sym__special_characters] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [sym_raw_string] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), - [anon_sym_BQUOTE] = ACTIONS(836), - [anon_sym_LT_LPAREN] = ACTIONS(836), - [anon_sym_GT_LPAREN] = ACTIONS(836), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(836), - [sym_word] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(836), - }, - [383] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(1729), - [sym_comment] = ACTIONS(56), - }, - [384] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(882), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1733), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [385] = { - [sym_subscript] = STATE(886), - [sym_variable_name] = ACTIONS(1735), - [anon_sym_DOLLAR] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1737), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_AT] = ACTIONS(1737), - [anon_sym_QMARK] = ACTIONS(1737), - [anon_sym_0] = ACTIONS(1741), - [anon_sym__] = ACTIONS(1741), - }, - [386] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(889), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1745), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [387] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(892), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1749), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [388] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1751), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [389] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1751), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [390] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(1751), - [sym_comment] = ACTIONS(56), - }, - [391] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(1751), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [392] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1753), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [393] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1753), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [394] = { - [sym_variable_assignment] = STATE(107), - [sym_subscript] = STATE(108), - [sym_concatenation] = STATE(107), - [sym_string] = STATE(101), - [sym_simple_expansion] = STATE(101), - [sym_string_expansion] = STATE(101), - [sym_expansion] = STATE(101), - [sym_command_substitution] = STATE(101), - [sym_process_substitution] = STATE(101), - [aux_sym_declaration_command_repeat1] = STATE(394), - [sym_variable_name] = ACTIONS(1755), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_SEMI_SEMI] = ACTIONS(1758), - [anon_sym_PIPE_AMP] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1758), - [anon_sym_PIPE_PIPE] = ACTIONS(1758), - [sym__special_characters] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1766), - [sym_raw_string] = ACTIONS(1769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1775), - [anon_sym_BQUOTE] = ACTIONS(1778), - [anon_sym_LT_LPAREN] = ACTIONS(1781), - [anon_sym_GT_LPAREN] = ACTIONS(1781), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1784), - [sym_word] = ACTIONS(1769), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_LF] = ACTIONS(1758), - [anon_sym_AMP] = ACTIONS(1758), - }, - [395] = { - [sym_string] = STATE(895), - [sym_simple_expansion] = STATE(895), - [sym_string_expansion] = STATE(895), - [sym_expansion] = STATE(895), - [sym_command_substitution] = STATE(895), - [sym_process_substitution] = STATE(895), - [sym__special_characters] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(730), - [anon_sym_DOLLAR] = ACTIONS(1789), - [sym_raw_string] = ACTIONS(1791), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1793), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1795), - [anon_sym_BQUOTE] = ACTIONS(1797), - [anon_sym_LT_LPAREN] = ACTIONS(1799), - [anon_sym_GT_LPAREN] = ACTIONS(1799), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1787), - }, - [396] = { - [aux_sym_concatenation_repeat1] = STATE(896), - [sym__concat] = ACTIONS(724), - [anon_sym_PIPE] = ACTIONS(792), - [anon_sym_SEMI_SEMI] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [sym__special_characters] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(792), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(792), - [sym_word] = ACTIONS(792), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LF] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(792), - }, - [397] = { - [sym__concat] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_SEMI_SEMI] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [sym__special_characters] = ACTIONS(796), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(796), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(796), - [sym_word] = ACTIONS(796), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_LF] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - }, - [398] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [399] = { - [sym__concat] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_SEMI_SEMI] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(828), - [sym_word] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(828), - }, - [400] = { - [sym__concat] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [sym__special_characters] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(832), - [sym_word] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(832), - [anon_sym_AMP] = ACTIONS(832), - }, - [401] = { - [sym__concat] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_SEMI_SEMI] = ACTIONS(836), - [anon_sym_PIPE_AMP] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [sym__special_characters] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [sym_raw_string] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), - [anon_sym_BQUOTE] = ACTIONS(836), - [anon_sym_LT_LPAREN] = ACTIONS(836), - [anon_sym_GT_LPAREN] = ACTIONS(836), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(836), - [sym_word] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(836), - }, - [402] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(1803), - [sym_comment] = ACTIONS(56), - }, - [403] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(901), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1807), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [404] = { - [sym_subscript] = STATE(905), - [sym_variable_name] = ACTIONS(1809), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(1811), - [anon_sym_QMARK] = ACTIONS(1811), - [anon_sym_0] = ACTIONS(1815), - [anon_sym__] = ACTIONS(1815), - }, - [405] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(908), - [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1819), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [406] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1823), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [407] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1825), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [408] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1825), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [409] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(1825), - [sym_comment] = ACTIONS(56), - }, - [410] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(1825), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [411] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1827), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [412] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1827), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [413] = { - [sym_concatenation] = STATE(119), - [sym_string] = STATE(113), - [sym_simple_expansion] = STATE(113), - [sym_string_expansion] = STATE(113), - [sym_expansion] = STATE(113), - [sym_command_substitution] = STATE(113), - [sym_process_substitution] = STATE(113), - [aux_sym_unset_command_repeat1] = STATE(413), - [anon_sym_PIPE] = ACTIONS(1829), - [anon_sym_SEMI_SEMI] = ACTIONS(1829), - [anon_sym_PIPE_AMP] = ACTIONS(1829), - [anon_sym_AMP_AMP] = ACTIONS(1829), - [anon_sym_PIPE_PIPE] = ACTIONS(1829), - [sym__special_characters] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1837), - [sym_raw_string] = ACTIONS(1840), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1843), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1846), - [anon_sym_BQUOTE] = ACTIONS(1849), - [anon_sym_LT_LPAREN] = ACTIONS(1852), - [anon_sym_GT_LPAREN] = ACTIONS(1852), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1855), - [sym_word] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_LF] = ACTIONS(1829), - [anon_sym_AMP] = ACTIONS(1829), - }, - [414] = { - [sym_string] = STATE(914), - [sym_simple_expansion] = STATE(914), - [sym_string_expansion] = STATE(914), - [sym_expansion] = STATE(914), - [sym_command_substitution] = STATE(914), - [sym_process_substitution] = STATE(914), - [sym__special_characters] = ACTIONS(1858), - [anon_sym_DQUOTE] = ACTIONS(208), - [anon_sym_DOLLAR] = ACTIONS(210), - [sym_raw_string] = ACTIONS(1860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), - [anon_sym_BQUOTE] = ACTIONS(218), - [anon_sym_LT_LPAREN] = ACTIONS(220), - [anon_sym_GT_LPAREN] = ACTIONS(220), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1858), - }, - [415] = { - [aux_sym_concatenation_repeat1] = STATE(915), - [sym_file_descriptor] = ACTIONS(790), - [sym__concat] = ACTIONS(758), - [sym_variable_name] = ACTIONS(790), - [anon_sym_LT] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(1571), - [anon_sym_GT_GT] = ACTIONS(790), - [anon_sym_AMP_GT] = ACTIONS(1571), - [anon_sym_AMP_GT_GT] = ACTIONS(790), - [anon_sym_LT_AMP] = ACTIONS(790), - [anon_sym_GT_AMP] = ACTIONS(790), - [sym__special_characters] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(1571), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1571), - }, - [416] = { - [sym_file_descriptor] = ACTIONS(794), - [sym__concat] = ACTIONS(794), - [sym_variable_name] = ACTIONS(794), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(794), - [anon_sym_AMP_GT] = ACTIONS(1573), - [anon_sym_AMP_GT_GT] = ACTIONS(794), - [anon_sym_LT_AMP] = ACTIONS(794), - [anon_sym_GT_AMP] = ACTIONS(794), - [sym__special_characters] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1573), - }, - [417] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(1862), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [418] = { - [sym_file_descriptor] = ACTIONS(826), - [sym__concat] = ACTIONS(826), - [sym_variable_name] = ACTIONS(826), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1577), - [anon_sym_GT_GT] = ACTIONS(826), - [anon_sym_AMP_GT] = ACTIONS(1577), - [anon_sym_AMP_GT_GT] = ACTIONS(826), - [anon_sym_LT_AMP] = ACTIONS(826), - [anon_sym_GT_AMP] = ACTIONS(826), - [sym__special_characters] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1577), - }, - [419] = { - [sym_file_descriptor] = ACTIONS(830), - [sym__concat] = ACTIONS(830), - [sym_variable_name] = ACTIONS(830), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(830), - [anon_sym_AMP_GT] = ACTIONS(1579), - [anon_sym_AMP_GT_GT] = ACTIONS(830), - [anon_sym_LT_AMP] = ACTIONS(830), - [anon_sym_GT_AMP] = ACTIONS(830), - [sym__special_characters] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(1579), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1579), - }, - [420] = { - [sym_file_descriptor] = ACTIONS(834), - [sym__concat] = ACTIONS(834), - [sym_variable_name] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1581), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_AMP_GT] = ACTIONS(1581), - [anon_sym_AMP_GT_GT] = ACTIONS(834), - [anon_sym_LT_AMP] = ACTIONS(834), - [anon_sym_GT_AMP] = ACTIONS(834), - [sym__special_characters] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(1581), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1581), - }, - [421] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(1864), - [sym_comment] = ACTIONS(56), - }, - [422] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(920), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [423] = { - [sym_subscript] = STATE(924), - [sym_variable_name] = ACTIONS(1870), - [anon_sym_DOLLAR] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1872), - [anon_sym_AT] = ACTIONS(1872), - [anon_sym_QMARK] = ACTIONS(1872), - [anon_sym_0] = ACTIONS(1876), - [anon_sym__] = ACTIONS(1876), - }, - [424] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(927), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1880), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [425] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(930), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1884), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [426] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [427] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [428] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - }, - [429] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [430] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [431] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [432] = { - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [anon_sym_EQ_TILDE] = ACTIONS(1892), - [anon_sym_EQ_EQ] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_AMP_GT] = ACTIONS(1892), - [anon_sym_AMP_GT_GT] = ACTIONS(1892), - [anon_sym_LT_AMP] = ACTIONS(1892), - [anon_sym_GT_AMP] = ACTIONS(1892), - [anon_sym_LT_LT] = ACTIONS(1892), - [anon_sym_LT_LT_DASH] = ACTIONS(1892), - [anon_sym_LT_LT_LT] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [433] = { - [aux_sym_concatenation_repeat1] = STATE(433), - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(1894), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [anon_sym_EQ_TILDE] = ACTIONS(1892), - [anon_sym_EQ_EQ] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_AMP_GT] = ACTIONS(1892), - [anon_sym_AMP_GT_GT] = ACTIONS(1892), - [anon_sym_LT_AMP] = ACTIONS(1892), - [anon_sym_GT_AMP] = ACTIONS(1892), - [anon_sym_LT_LT] = ACTIONS(1892), - [anon_sym_LT_LT_DASH] = ACTIONS(1892), - [anon_sym_LT_LT_LT] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [434] = { - [sym__concat] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [sym__string_content] = ACTIONS(1577), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - }, - [435] = { - [sym__concat] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1899), - [anon_sym_DOLLAR] = ACTIONS(1899), - [sym__string_content] = ACTIONS(1901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1899), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1899), - [anon_sym_BQUOTE] = ACTIONS(1899), - [sym_comment] = ACTIONS(182), - }, - [436] = { - [sym__concat] = ACTIONS(834), - [anon_sym_DQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [sym__string_content] = ACTIONS(1581), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), - [anon_sym_BQUOTE] = ACTIONS(836), - [sym_comment] = ACTIONS(182), - }, - [437] = { - [anon_sym_DQUOTE] = ACTIONS(1899), - [anon_sym_DOLLAR] = ACTIONS(1899), - [sym__string_content] = ACTIONS(1901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1899), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1899), - [anon_sym_BQUOTE] = ACTIONS(1899), - [sym_comment] = ACTIONS(182), - }, - [438] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(1903), - [sym_comment] = ACTIONS(56), - }, - [439] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(937), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1907), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [440] = { - [sym_subscript] = STATE(941), - [sym_variable_name] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1913), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_AT] = ACTIONS(1911), - [anon_sym_QMARK] = ACTIONS(1911), - [anon_sym_0] = ACTIONS(1915), - [anon_sym__] = ACTIONS(1915), - }, - [441] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(944), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [442] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(947), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(1923), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [443] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1925), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [444] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1925), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [445] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(56), - }, - [446] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(1925), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [447] = { - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1929), - [anon_sym_PIPE_AMP] = ACTIONS(1929), - [anon_sym_AMP_AMP] = ACTIONS(1929), - [anon_sym_PIPE_PIPE] = ACTIONS(1929), - [anon_sym_EQ_TILDE] = ACTIONS(1929), - [anon_sym_EQ_EQ] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_GT_GT] = ACTIONS(1929), - [anon_sym_AMP_GT] = ACTIONS(1929), - [anon_sym_AMP_GT_GT] = ACTIONS(1929), - [anon_sym_LT_AMP] = ACTIONS(1929), - [anon_sym_GT_AMP] = ACTIONS(1929), - [anon_sym_LT_LT] = ACTIONS(1929), - [anon_sym_LT_LT_DASH] = ACTIONS(1929), - [anon_sym_LT_LT_LT] = ACTIONS(1929), - [sym__special_characters] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1929), - [sym_raw_string] = ACTIONS(1929), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), - [anon_sym_BQUOTE] = ACTIONS(1929), - [anon_sym_LT_LPAREN] = ACTIONS(1929), - [anon_sym_GT_LPAREN] = ACTIONS(1929), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1929), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - }, - [448] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(1899), - [anon_sym_DOLLAR] = ACTIONS(1931), - [sym__string_content] = ACTIONS(1934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1937), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), - [anon_sym_BQUOTE] = ACTIONS(1943), - [sym_comment] = ACTIONS(182), - }, - [449] = { - [sym_concatenation] = STATE(951), - [sym_string] = STATE(950), - [sym_simple_expansion] = STATE(950), - [sym_string_expansion] = STATE(950), - [sym_expansion] = STATE(950), - [sym_command_substitution] = STATE(950), - [sym_process_substitution] = STATE(950), - [sym__special_characters] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_raw_string] = ACTIONS(1948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), - [anon_sym_BQUOTE] = ACTIONS(412), - [anon_sym_LT_LPAREN] = ACTIONS(414), - [anon_sym_GT_LPAREN] = ACTIONS(414), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1950), - }, - [450] = { - [sym_concatenation] = STATE(961), - [sym_string] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_string_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [anon_sym_RBRACE] = ACTIONS(1952), - [sym__special_characters] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(1960), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1970), - }, - [451] = { - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(1974), - [anon_sym_EQ_TILDE] = ACTIONS(1974), - [anon_sym_EQ_EQ] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1974), - [anon_sym_GT_GT] = ACTIONS(1974), - [anon_sym_AMP_GT] = ACTIONS(1974), - [anon_sym_AMP_GT_GT] = ACTIONS(1974), - [anon_sym_LT_AMP] = ACTIONS(1974), - [anon_sym_GT_AMP] = ACTIONS(1974), - [anon_sym_LT_LT] = ACTIONS(1974), - [anon_sym_LT_LT_DASH] = ACTIONS(1974), - [anon_sym_LT_LT_LT] = ACTIONS(1974), - [sym__special_characters] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(1974), - [sym_raw_string] = ACTIONS(1974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_BQUOTE] = ACTIONS(1974), - [anon_sym_LT_LPAREN] = ACTIONS(1974), - [anon_sym_GT_LPAREN] = ACTIONS(1974), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_LF] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - }, - [452] = { - [anon_sym_RBRACE] = ACTIONS(1976), - [anon_sym_EQ] = ACTIONS(1978), - [sym__special_characters] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(1976), - [anon_sym_DOLLAR] = ACTIONS(1978), - [sym_raw_string] = ACTIONS(1976), - [anon_sym_POUND] = ACTIONS(1976), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1976), - [anon_sym_COLON] = ACTIONS(1978), - [anon_sym_COLON_QMARK] = ACTIONS(1978), - [anon_sym_COLON_DASH] = ACTIONS(1978), - [anon_sym_PERCENT] = ACTIONS(1978), - [anon_sym_DASH] = ACTIONS(1978), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1976), - [anon_sym_BQUOTE] = ACTIONS(1976), - [anon_sym_LT_LPAREN] = ACTIONS(1976), - [anon_sym_GT_LPAREN] = ACTIONS(1976), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1980), - }, - [453] = { - [aux_sym_concatenation_repeat1] = STATE(963), - [sym__concat] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(1984), - [anon_sym_EQ] = ACTIONS(1986), - [sym__special_characters] = ACTIONS(1988), - [anon_sym_DQUOTE] = ACTIONS(1984), - [anon_sym_DOLLAR] = ACTIONS(1986), - [sym_raw_string] = ACTIONS(1984), - [anon_sym_POUND] = ACTIONS(1984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), - [anon_sym_COLON] = ACTIONS(1986), - [anon_sym_COLON_QMARK] = ACTIONS(1986), - [anon_sym_COLON_DASH] = ACTIONS(1986), - [anon_sym_PERCENT] = ACTIONS(1986), - [anon_sym_DASH] = ACTIONS(1986), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), - [anon_sym_BQUOTE] = ACTIONS(1984), - [anon_sym_LT_LPAREN] = ACTIONS(1984), - [anon_sym_GT_LPAREN] = ACTIONS(1984), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1988), - }, - [454] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(965), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [455] = { - [sym_string] = STATE(967), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(1992), - [sym_raw_string] = ACTIONS(1994), - [anon_sym_POUND] = ACTIONS(1992), - [anon_sym_DASH] = ACTIONS(1992), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1996), - [anon_sym_STAR] = ACTIONS(1992), - [anon_sym_AT] = ACTIONS(1992), - [anon_sym_QMARK] = ACTIONS(1992), - [anon_sym_0] = ACTIONS(1998), - [anon_sym__] = ACTIONS(1998), - }, - [456] = { - [aux_sym_concatenation_repeat1] = STATE(963), - [sym__concat] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(1976), - [anon_sym_EQ] = ACTIONS(1978), - [sym__special_characters] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(1976), - [anon_sym_DOLLAR] = ACTIONS(1978), - [sym_raw_string] = ACTIONS(1976), - [anon_sym_POUND] = ACTIONS(1976), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1976), - [anon_sym_COLON] = ACTIONS(1978), - [anon_sym_COLON_QMARK] = ACTIONS(1978), - [anon_sym_COLON_DASH] = ACTIONS(1978), - [anon_sym_PERCENT] = ACTIONS(1978), - [anon_sym_DASH] = ACTIONS(1978), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1976), - [anon_sym_BQUOTE] = ACTIONS(1976), - [anon_sym_LT_LPAREN] = ACTIONS(1976), - [anon_sym_GT_LPAREN] = ACTIONS(1976), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1980), - }, - [457] = { - [sym_subscript] = STATE(973), - [sym_variable_name] = ACTIONS(2000), - [anon_sym_DOLLAR] = ACTIONS(2002), - [anon_sym_POUND] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2002), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_AT] = ACTIONS(2002), - [anon_sym_QMARK] = ACTIONS(2002), - [anon_sym_0] = ACTIONS(2008), - [anon_sym__] = ACTIONS(2008), - }, - [458] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2010), - }, - [459] = { - [sym_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_command] = STATE(975), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(975), - [sym_variable_assignment] = STATE(976), - [sym_declaration_command] = STATE(975), - [sym_unset_command] = STATE(975), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [460] = { - [sym_for_statement] = STATE(977), - [sym_while_statement] = STATE(977), - [sym_if_statement] = STATE(977), - [sym_case_statement] = STATE(977), - [sym_function_definition] = STATE(977), - [sym_subshell] = STATE(977), - [sym_pipeline] = STATE(977), - [sym_list] = STATE(977), - [sym_command] = STATE(977), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(977), - [sym_variable_assignment] = STATE(978), - [sym_declaration_command] = STATE(977), - [sym_unset_command] = STATE(977), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [461] = { - [sym_for_statement] = STATE(979), - [sym_while_statement] = STATE(979), - [sym_if_statement] = STATE(979), - [sym_case_statement] = STATE(979), - [sym_function_definition] = STATE(979), - [sym_subshell] = STATE(979), - [sym_pipeline] = STATE(979), - [sym_list] = STATE(979), - [sym_command] = STATE(979), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(979), - [sym_variable_assignment] = STATE(980), - [sym_declaration_command] = STATE(979), - [sym_unset_command] = STATE(979), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [462] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(2012), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [463] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(2014), - [sym_comment] = ACTIONS(56), - }, - [464] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(986), - [anon_sym_RBRACE] = ACTIONS(2016), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2018), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [465] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(989), - [anon_sym_RBRACE] = ACTIONS(2020), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2022), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [466] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(991), - [anon_sym_RBRACE] = ACTIONS(1952), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2024), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [467] = { - [sym_file_descriptor] = ACTIONS(2026), - [sym__concat] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_SEMI_SEMI] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(2028), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [anon_sym_EQ_TILDE] = ACTIONS(2028), - [anon_sym_EQ_EQ] = ACTIONS(2028), - [anon_sym_LT] = ACTIONS(2028), - [anon_sym_GT] = ACTIONS(2028), - [anon_sym_GT_GT] = ACTIONS(2028), - [anon_sym_AMP_GT] = ACTIONS(2028), - [anon_sym_AMP_GT_GT] = ACTIONS(2028), - [anon_sym_LT_AMP] = ACTIONS(2028), - [anon_sym_GT_AMP] = ACTIONS(2028), - [anon_sym_LT_LT] = ACTIONS(2028), - [anon_sym_LT_LT_DASH] = ACTIONS(2028), - [anon_sym_LT_LT_LT] = ACTIONS(2028), - [sym__special_characters] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [anon_sym_DOLLAR] = ACTIONS(2028), - [sym_raw_string] = ACTIONS(2028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), - [anon_sym_BQUOTE] = ACTIONS(2028), - [anon_sym_LT_LPAREN] = ACTIONS(2028), - [anon_sym_GT_LPAREN] = ACTIONS(2028), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - }, - [468] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2030), - }, - [469] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(2032), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [470] = { - [sym_file_descriptor] = ACTIONS(2034), - [sym__concat] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_SEMI_SEMI] = ACTIONS(2036), - [anon_sym_PIPE_AMP] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [anon_sym_EQ_TILDE] = ACTIONS(2036), - [anon_sym_EQ_EQ] = ACTIONS(2036), - [anon_sym_LT] = ACTIONS(2036), - [anon_sym_GT] = ACTIONS(2036), - [anon_sym_GT_GT] = ACTIONS(2036), - [anon_sym_AMP_GT] = ACTIONS(2036), - [anon_sym_AMP_GT_GT] = ACTIONS(2036), - [anon_sym_LT_AMP] = ACTIONS(2036), - [anon_sym_GT_AMP] = ACTIONS(2036), - [anon_sym_LT_LT] = ACTIONS(2036), - [anon_sym_LT_LT_DASH] = ACTIONS(2036), - [anon_sym_LT_LT_LT] = ACTIONS(2036), - [sym__special_characters] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2036), - [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(182), - [sym_word] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_LF] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - }, - [471] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2038), - }, - [472] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(1952), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [473] = { - [sym_concatenation] = STATE(995), - [sym_string] = STATE(1000), - [sym_array] = STATE(995), - [sym_simple_expansion] = STATE(1000), - [sym_string_expansion] = STATE(1000), - [sym_expansion] = STATE(1000), - [sym_command_substitution] = STATE(1000), - [sym_process_substitution] = STATE(1000), - [sym__empty_value] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2042), - [sym__special_characters] = ACTIONS(2044), - [anon_sym_DQUOTE] = ACTIONS(2046), - [anon_sym_DOLLAR] = ACTIONS(2048), - [sym_raw_string] = ACTIONS(2050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2052), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2054), - [anon_sym_BQUOTE] = ACTIONS(2056), - [anon_sym_LT_LPAREN] = ACTIONS(2058), - [anon_sym_GT_LPAREN] = ACTIONS(2058), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2060), - }, - [474] = { - [sym_file_descriptor] = ACTIONS(440), - [sym_variable_name] = ACTIONS(440), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_RPAREN] = ACTIONS(440), - [anon_sym_PIPE_AMP] = ACTIONS(440), - [anon_sym_AMP_AMP] = ACTIONS(440), - [anon_sym_PIPE_PIPE] = ACTIONS(440), - [anon_sym_LT] = ACTIONS(2062), - [anon_sym_GT] = ACTIONS(2062), - [anon_sym_GT_GT] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(2062), - [anon_sym_AMP_GT_GT] = ACTIONS(440), - [anon_sym_LT_AMP] = ACTIONS(440), - [anon_sym_GT_AMP] = ACTIONS(440), - [sym__special_characters] = ACTIONS(2062), - [anon_sym_DQUOTE] = ACTIONS(440), - [anon_sym_DOLLAR] = ACTIONS(2062), - [sym_raw_string] = ACTIONS(440), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(440), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(440), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_LT_LPAREN] = ACTIONS(440), - [anon_sym_GT_LPAREN] = ACTIONS(440), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2062), - }, - [475] = { - [anon_sym_in] = ACTIONS(2064), - [anon_sym_SEMI_SEMI] = ACTIONS(2066), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), - }, - [476] = { - [sym_do_group] = STATE(1008), - [anon_sym_do] = ACTIONS(2068), - [sym_comment] = ACTIONS(56), - }, - [477] = { - [anon_sym_then] = ACTIONS(2070), - [sym_comment] = ACTIONS(56), - }, - [478] = { - [aux_sym_concatenation_repeat1] = STATE(247), - [sym__concat] = ACTIONS(454), - [anon_sym_in] = ACTIONS(2072), - [anon_sym_SEMI_SEMI] = ACTIONS(2074), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2074), - [anon_sym_LF] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - }, - [479] = { - [aux_sym_concatenation_repeat1] = STATE(247), - [sym__concat] = ACTIONS(454), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_SEMI_SEMI] = ACTIONS(2078), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_LF] = ACTIONS(2078), - [anon_sym_AMP] = ACTIONS(2078), - }, - [480] = { - [anon_sym_in] = ACTIONS(2076), - [anon_sym_SEMI_SEMI] = ACTIONS(2078), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_LF] = ACTIONS(2078), - [anon_sym_AMP] = ACTIONS(2078), - }, - [481] = { - [sym_compound_statement] = STATE(1016), - [anon_sym_LPAREN] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2082), - [sym_comment] = ACTIONS(56), - }, - [482] = { - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_RPAREN] = ACTIONS(2084), - [anon_sym_SEMI_SEMI] = ACTIONS(2086), - [anon_sym_PIPE_AMP] = ACTIONS(550), - [anon_sym_AMP_AMP] = ACTIONS(556), - [anon_sym_PIPE_PIPE] = ACTIONS(556), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2086), - [anon_sym_LF] = ACTIONS(2086), - [anon_sym_AMP] = ACTIONS(2086), - }, - [483] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_RPAREN] = ACTIONS(2084), - [anon_sym_SEMI_SEMI] = ACTIONS(2086), - [anon_sym_PIPE_AMP] = ACTIONS(550), - [anon_sym_AMP_AMP] = ACTIONS(556), - [anon_sym_PIPE_PIPE] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(2086), - [anon_sym_LF] = ACTIONS(2086), - [anon_sym_AMP] = ACTIONS(2086), - }, - [484] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(1019), - [sym_while_statement] = STATE(1019), - [sym_if_statement] = STATE(1019), - [sym_case_statement] = STATE(1019), - [sym_function_definition] = STATE(1019), - [sym_subshell] = STATE(1019), - [sym_pipeline] = STATE(1019), - [sym_list] = STATE(1019), - [sym_command] = STATE(1019), - [sym_command_name] = STATE(70), - [sym_bracket_command] = STATE(1019), - [sym_variable_assignment] = STATE(1020), - [sym_declaration_command] = STATE(1019), - [sym_unset_command] = STATE(1019), - [sym_subscript] = STATE(72), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(63), - [sym_simple_expansion] = STATE(63), - [sym_string_expansion] = STATE(63), - [sym_expansion] = STATE(63), - [sym_command_substitution] = STATE(63), - [sym_process_substitution] = STATE(63), - [aux_sym_program_repeat1] = STATE(327), - [aux_sym_command_repeat1] = STATE(74), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(90), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(92), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(94), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(96), - [anon_sym_LBRACK_LBRACK] = ACTIONS(98), - [anon_sym_declare] = ACTIONS(100), - [anon_sym_typeset] = ACTIONS(100), - [anon_sym_export] = ACTIONS(100), - [anon_sym_readonly] = ACTIONS(100), - [anon_sym_local] = ACTIONS(100), - [anon_sym_unset] = ACTIONS(102), - [anon_sym_unsetenv] = ACTIONS(102), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(104), - [anon_sym_DQUOTE] = ACTIONS(106), - [anon_sym_DOLLAR] = ACTIONS(108), - [sym_raw_string] = ACTIONS(110), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(114), - [anon_sym_BQUOTE] = ACTIONS(116), - [anon_sym_LT_LPAREN] = ACTIONS(118), - [anon_sym_GT_LPAREN] = ACTIONS(118), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(120), - }, - [485] = { - [sym_concatenation] = STATE(84), - [sym_string] = STATE(79), - [sym_simple_expansion] = STATE(79), - [sym_string_expansion] = STATE(79), - [sym_expansion] = STATE(79), - [sym_command_substitution] = STATE(79), - [sym_process_substitution] = STATE(79), - [aux_sym_command_repeat2] = STATE(351), - [anon_sym_EQ_TILDE] = ACTIONS(122), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_RBRACK] = ACTIONS(2088), - [sym__special_characters] = ACTIONS(640), - [anon_sym_DQUOTE] = ACTIONS(126), - [anon_sym_DOLLAR] = ACTIONS(128), - [sym_raw_string] = ACTIONS(130), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), - [anon_sym_BQUOTE] = ACTIONS(136), - [anon_sym_LT_LPAREN] = ACTIONS(138), - [anon_sym_GT_LPAREN] = ACTIONS(138), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(140), - }, - [486] = { - [sym_concatenation] = STATE(95), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_string_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat2] = STATE(373), - [anon_sym_EQ_TILDE] = ACTIONS(142), - [anon_sym_EQ_EQ] = ACTIONS(142), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2088), - [sym__special_characters] = ACTIONS(682), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(148), - [sym_raw_string] = ACTIONS(150), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(156), - [anon_sym_LT_LPAREN] = ACTIONS(158), - [anon_sym_GT_LPAREN] = ACTIONS(158), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(160), - }, - [487] = { - [sym__assignment] = STATE(1023), - [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(2090), - [anon_sym_PLUS_EQ] = ACTIONS(2090), - [sym_comment] = ACTIONS(56), - }, - [488] = { - [aux_sym_concatenation_repeat1] = STATE(1025), - [sym__concat] = ACTIONS(2092), - [sym_variable_name] = ACTIONS(688), - [anon_sym_PIPE] = ACTIONS(2094), - [anon_sym_RPAREN] = ACTIONS(688), - [anon_sym_PIPE_AMP] = ACTIONS(688), - [anon_sym_AMP_AMP] = ACTIONS(688), - [anon_sym_PIPE_PIPE] = ACTIONS(688), - [sym__special_characters] = ACTIONS(2094), - [anon_sym_DQUOTE] = ACTIONS(688), - [anon_sym_DOLLAR] = ACTIONS(2094), - [sym_raw_string] = ACTIONS(688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), - [anon_sym_BQUOTE] = ACTIONS(688), - [anon_sym_LT_LPAREN] = ACTIONS(688), - [anon_sym_GT_LPAREN] = ACTIONS(688), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2094), - [sym_word] = ACTIONS(690), - }, - [489] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1027), - [anon_sym_DQUOTE] = ACTIONS(2096), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [490] = { - [sym_string] = STATE(1029), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_DOLLAR] = ACTIONS(2098), - [sym_raw_string] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(2098), - [anon_sym_DASH] = ACTIONS(2098), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2102), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_AT] = ACTIONS(2098), - [anon_sym_QMARK] = ACTIONS(2098), - [anon_sym_0] = ACTIONS(2104), - [anon_sym__] = ACTIONS(2104), - }, - [491] = { - [aux_sym_concatenation_repeat1] = STATE(1025), - [sym__concat] = ACTIONS(2092), - [sym_variable_name] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_RPAREN] = ACTIONS(704), - [anon_sym_PIPE_AMP] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(704), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [sym__special_characters] = ACTIONS(2106), - [anon_sym_DQUOTE] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(2106), - [sym_raw_string] = ACTIONS(704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(704), - [anon_sym_BQUOTE] = ACTIONS(704), - [anon_sym_LT_LPAREN] = ACTIONS(704), - [anon_sym_GT_LPAREN] = ACTIONS(704), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2106), - [sym_word] = ACTIONS(706), - }, - [492] = { - [sym_subscript] = STATE(1035), - [sym_variable_name] = ACTIONS(2108), - [anon_sym_DOLLAR] = ACTIONS(2110), - [anon_sym_POUND] = ACTIONS(2112), - [anon_sym_DASH] = ACTIONS(2110), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2110), - [anon_sym_AT] = ACTIONS(2110), - [anon_sym_QMARK] = ACTIONS(2110), - [anon_sym_0] = ACTIONS(2116), - [anon_sym__] = ACTIONS(2116), - }, - [493] = { - [sym_for_statement] = STATE(1036), - [sym_while_statement] = STATE(1036), - [sym_if_statement] = STATE(1036), - [sym_case_statement] = STATE(1036), - [sym_function_definition] = STATE(1036), - [sym_subshell] = STATE(1036), - [sym_pipeline] = STATE(1036), - [sym_list] = STATE(1036), - [sym_command] = STATE(1036), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1036), - [sym_variable_assignment] = STATE(1037), - [sym_declaration_command] = STATE(1036), - [sym_unset_command] = STATE(1036), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [494] = { - [sym_for_statement] = STATE(1038), - [sym_while_statement] = STATE(1038), - [sym_if_statement] = STATE(1038), - [sym_case_statement] = STATE(1038), - [sym_function_definition] = STATE(1038), - [sym_subshell] = STATE(1038), - [sym_pipeline] = STATE(1038), - [sym_list] = STATE(1038), - [sym_command] = STATE(1038), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1038), - [sym_variable_assignment] = STATE(1039), - [sym_declaration_command] = STATE(1038), - [sym_unset_command] = STATE(1038), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [495] = { - [sym_for_statement] = STATE(1040), - [sym_while_statement] = STATE(1040), - [sym_if_statement] = STATE(1040), - [sym_case_statement] = STATE(1040), - [sym_function_definition] = STATE(1040), - [sym_subshell] = STATE(1040), - [sym_pipeline] = STATE(1040), - [sym_list] = STATE(1040), - [sym_command] = STATE(1040), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1040), - [sym_variable_assignment] = STATE(1041), - [sym_declaration_command] = STATE(1040), - [sym_unset_command] = STATE(1040), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [496] = { - [sym_variable_name] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(2118), - [anon_sym_RPAREN] = ACTIONS(718), - [anon_sym_PIPE_AMP] = ACTIONS(718), - [anon_sym_AMP_AMP] = ACTIONS(718), - [anon_sym_PIPE_PIPE] = ACTIONS(718), - [sym__special_characters] = ACTIONS(2118), - [anon_sym_DQUOTE] = ACTIONS(718), - [anon_sym_DOLLAR] = ACTIONS(2118), - [sym_raw_string] = ACTIONS(718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(718), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(718), - [anon_sym_BQUOTE] = ACTIONS(718), - [anon_sym_LT_LPAREN] = ACTIONS(718), - [anon_sym_GT_LPAREN] = ACTIONS(718), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2118), - [sym_word] = ACTIONS(720), - }, - [497] = { - [sym_variable_name] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_RPAREN] = ACTIONS(704), - [anon_sym_PIPE_AMP] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(704), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [sym__special_characters] = ACTIONS(2106), - [anon_sym_DQUOTE] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(2106), - [sym_raw_string] = ACTIONS(704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(704), - [anon_sym_BQUOTE] = ACTIONS(704), - [anon_sym_LT_LPAREN] = ACTIONS(704), - [anon_sym_GT_LPAREN] = ACTIONS(704), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2106), - [sym_word] = ACTIONS(706), - }, - [498] = { - [sym__assignment] = STATE(1023), - [anon_sym_EQ] = ACTIONS(2090), - [anon_sym_PLUS_EQ] = ACTIONS(2090), - [sym_comment] = ACTIONS(56), - }, - [499] = { - [sym_variable_assignment] = STATE(497), - [sym_subscript] = STATE(498), - [sym_concatenation] = STATE(497), - [sym_string] = STATE(491), - [sym_simple_expansion] = STATE(491), - [sym_string_expansion] = STATE(491), - [sym_expansion] = STATE(491), - [sym_command_substitution] = STATE(491), - [sym_process_substitution] = STATE(491), - [aux_sym_declaration_command_repeat1] = STATE(1042), - [sym_variable_name] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2122), - [anon_sym_PIPE_AMP] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [sym__special_characters] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_DOLLAR] = ACTIONS(906), - [sym_raw_string] = ACTIONS(908), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(912), - [anon_sym_BQUOTE] = ACTIONS(914), - [anon_sym_LT_LPAREN] = ACTIONS(916), - [anon_sym_GT_LPAREN] = ACTIONS(916), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(918), - [sym_word] = ACTIONS(920), - }, - [500] = { - [aux_sym_concatenation_repeat1] = STATE(1044), - [sym__concat] = ACTIONS(2124), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_RPAREN] = ACTIONS(2128), - [anon_sym_PIPE_AMP] = ACTIONS(2128), - [anon_sym_AMP_AMP] = ACTIONS(2128), - [anon_sym_PIPE_PIPE] = ACTIONS(2128), - [sym__special_characters] = ACTIONS(2126), - [anon_sym_DQUOTE] = ACTIONS(2128), - [anon_sym_DOLLAR] = ACTIONS(2126), - [sym_raw_string] = ACTIONS(2128), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2128), - [anon_sym_BQUOTE] = ACTIONS(2128), - [anon_sym_LT_LPAREN] = ACTIONS(2128), - [anon_sym_GT_LPAREN] = ACTIONS(2128), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2126), - [sym_word] = ACTIONS(726), - }, - [501] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1046), - [anon_sym_DQUOTE] = ACTIONS(2130), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [502] = { - [sym_string] = STATE(1048), - [anon_sym_DQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(2132), - [sym_raw_string] = ACTIONS(2134), - [anon_sym_POUND] = ACTIONS(2132), - [anon_sym_DASH] = ACTIONS(2132), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2136), - [anon_sym_STAR] = ACTIONS(2132), - [anon_sym_AT] = ACTIONS(2132), - [anon_sym_QMARK] = ACTIONS(2132), - [anon_sym_0] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2138), - }, - [503] = { - [aux_sym_concatenation_repeat1] = STATE(1044), - [sym__concat] = ACTIONS(2124), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2142), - [anon_sym_PIPE_AMP] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_PIPE_PIPE] = ACTIONS(2142), - [sym__special_characters] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_DOLLAR] = ACTIONS(2140), - [sym_raw_string] = ACTIONS(2142), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2142), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2142), - [anon_sym_BQUOTE] = ACTIONS(2142), - [anon_sym_LT_LPAREN] = ACTIONS(2142), - [anon_sym_GT_LPAREN] = ACTIONS(2142), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2140), - [sym_word] = ACTIONS(740), - }, - [504] = { - [sym_subscript] = STATE(1054), - [sym_variable_name] = ACTIONS(2144), - [anon_sym_DOLLAR] = ACTIONS(2146), - [anon_sym_POUND] = ACTIONS(2148), - [anon_sym_DASH] = ACTIONS(2146), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_AT] = ACTIONS(2146), - [anon_sym_QMARK] = ACTIONS(2146), - [anon_sym_0] = ACTIONS(2152), - [anon_sym__] = ACTIONS(2152), - }, - [505] = { - [sym_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_command] = STATE(1055), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1055), - [sym_variable_assignment] = STATE(1056), - [sym_declaration_command] = STATE(1055), - [sym_unset_command] = STATE(1055), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [506] = { - [sym_for_statement] = STATE(1057), - [sym_while_statement] = STATE(1057), - [sym_if_statement] = STATE(1057), - [sym_case_statement] = STATE(1057), - [sym_function_definition] = STATE(1057), - [sym_subshell] = STATE(1057), - [sym_pipeline] = STATE(1057), - [sym_list] = STATE(1057), - [sym_command] = STATE(1057), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1057), - [sym_variable_assignment] = STATE(1058), - [sym_declaration_command] = STATE(1057), - [sym_unset_command] = STATE(1057), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [507] = { - [sym_for_statement] = STATE(1059), - [sym_while_statement] = STATE(1059), - [sym_if_statement] = STATE(1059), - [sym_case_statement] = STATE(1059), - [sym_function_definition] = STATE(1059), - [sym_subshell] = STATE(1059), - [sym_pipeline] = STATE(1059), - [sym_list] = STATE(1059), - [sym_command] = STATE(1059), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1059), - [sym_variable_assignment] = STATE(1060), - [sym_declaration_command] = STATE(1059), - [sym_unset_command] = STATE(1059), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [508] = { - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_RPAREN] = ACTIONS(2156), - [anon_sym_PIPE_AMP] = ACTIONS(2156), - [anon_sym_AMP_AMP] = ACTIONS(2156), - [anon_sym_PIPE_PIPE] = ACTIONS(2156), - [sym__special_characters] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2156), - [anon_sym_DOLLAR] = ACTIONS(2154), - [sym_raw_string] = ACTIONS(2156), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2156), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2156), - [anon_sym_BQUOTE] = ACTIONS(2156), - [anon_sym_LT_LPAREN] = ACTIONS(2156), - [anon_sym_GT_LPAREN] = ACTIONS(2156), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2154), - [sym_word] = ACTIONS(752), - }, - [509] = { - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2142), - [anon_sym_PIPE_AMP] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_PIPE_PIPE] = ACTIONS(2142), - [sym__special_characters] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_DOLLAR] = ACTIONS(2140), - [sym_raw_string] = ACTIONS(2142), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2142), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2142), - [anon_sym_BQUOTE] = ACTIONS(2142), - [anon_sym_LT_LPAREN] = ACTIONS(2142), - [anon_sym_GT_LPAREN] = ACTIONS(2142), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2140), - [sym_word] = ACTIONS(740), - }, - [510] = { - [sym_concatenation] = STATE(509), - [sym_string] = STATE(503), - [sym_simple_expansion] = STATE(503), - [sym_string_expansion] = STATE(503), - [sym_expansion] = STATE(503), - [sym_command_substitution] = STATE(503), - [sym_process_substitution] = STATE(503), - [aux_sym_unset_command_repeat1] = STATE(1061), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_PIPE_AMP] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2160), - [sym__special_characters] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(930), - [sym_raw_string] = ACTIONS(932), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(936), - [anon_sym_BQUOTE] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(940), - [anon_sym_GT_LPAREN] = ACTIONS(940), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(942), - [sym_word] = ACTIONS(944), - }, - [511] = { - [sym_string] = STATE(1062), - [sym_simple_expansion] = STATE(1062), - [sym_string_expansion] = STATE(1062), - [sym_expansion] = STATE(1062), - [sym_command_substitution] = STATE(1062), - [sym_process_substitution] = STATE(1062), - [sym__special_characters] = ACTIONS(2162), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(2164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2162), - }, - [512] = { - [aux_sym_concatenation_repeat1] = STATE(1063), - [sym_file_descriptor] = ACTIONS(790), - [sym__concat] = ACTIONS(946), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [anon_sym_EQ_TILDE] = ACTIONS(1571), - [anon_sym_EQ_EQ] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(1571), - [anon_sym_GT_GT] = ACTIONS(790), - [anon_sym_AMP_GT] = ACTIONS(1571), - [anon_sym_AMP_GT_GT] = ACTIONS(790), - [anon_sym_LT_AMP] = ACTIONS(790), - [anon_sym_GT_AMP] = ACTIONS(790), - [anon_sym_LT_LT] = ACTIONS(1571), - [anon_sym_LT_LT_DASH] = ACTIONS(790), - [anon_sym_LT_LT_LT] = ACTIONS(790), - [sym__special_characters] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(1571), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(792), - }, - [513] = { - [sym_file_descriptor] = ACTIONS(794), - [sym__concat] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_EQ_TILDE] = ACTIONS(1573), - [anon_sym_EQ_EQ] = ACTIONS(1573), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(794), - [anon_sym_AMP_GT] = ACTIONS(1573), - [anon_sym_AMP_GT_GT] = ACTIONS(794), - [anon_sym_LT_AMP] = ACTIONS(794), - [anon_sym_GT_AMP] = ACTIONS(794), - [anon_sym_LT_LT] = ACTIONS(1573), - [anon_sym_LT_LT_DASH] = ACTIONS(794), - [anon_sym_LT_LT_LT] = ACTIONS(794), - [sym__special_characters] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(796), - }, - [514] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(2166), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [515] = { - [sym_file_descriptor] = ACTIONS(826), - [sym__concat] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [anon_sym_EQ_TILDE] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1577), - [anon_sym_GT_GT] = ACTIONS(826), - [anon_sym_AMP_GT] = ACTIONS(1577), - [anon_sym_AMP_GT_GT] = ACTIONS(826), - [anon_sym_LT_AMP] = ACTIONS(826), - [anon_sym_GT_AMP] = ACTIONS(826), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT_LT_DASH] = ACTIONS(826), - [anon_sym_LT_LT_LT] = ACTIONS(826), - [sym__special_characters] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(828), - }, - [516] = { - [sym_file_descriptor] = ACTIONS(830), - [sym__concat] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_RPAREN] = ACTIONS(830), - [anon_sym_PIPE_AMP] = ACTIONS(830), - [anon_sym_AMP_AMP] = ACTIONS(830), - [anon_sym_PIPE_PIPE] = ACTIONS(830), - [anon_sym_EQ_TILDE] = ACTIONS(1579), - [anon_sym_EQ_EQ] = ACTIONS(1579), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(830), - [anon_sym_AMP_GT] = ACTIONS(1579), - [anon_sym_AMP_GT_GT] = ACTIONS(830), - [anon_sym_LT_AMP] = ACTIONS(830), - [anon_sym_GT_AMP] = ACTIONS(830), - [anon_sym_LT_LT] = ACTIONS(1579), - [anon_sym_LT_LT_DASH] = ACTIONS(830), - [anon_sym_LT_LT_LT] = ACTIONS(830), - [sym__special_characters] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(1579), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(832), - }, - [517] = { - [sym_file_descriptor] = ACTIONS(834), - [sym__concat] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [anon_sym_EQ_TILDE] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1581), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_AMP_GT] = ACTIONS(1581), - [anon_sym_AMP_GT_GT] = ACTIONS(834), - [anon_sym_LT_AMP] = ACTIONS(834), - [anon_sym_GT_AMP] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(1581), - [anon_sym_LT_LT_DASH] = ACTIONS(834), - [anon_sym_LT_LT_LT] = ACTIONS(834), - [sym__special_characters] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(1581), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(836), - }, - [518] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(2168), - [sym_comment] = ACTIONS(56), - }, - [519] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1068), - [anon_sym_RBRACE] = ACTIONS(2170), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2172), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [520] = { - [sym_subscript] = STATE(1072), - [sym_variable_name] = ACTIONS(2174), - [anon_sym_DOLLAR] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_QMARK] = ACTIONS(2176), - [anon_sym_0] = ACTIONS(2180), - [anon_sym__] = ACTIONS(2180), - }, - [521] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1075), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [522] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1078), - [anon_sym_RBRACE] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2188), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [523] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2190), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [524] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2190), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [525] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_comment] = ACTIONS(56), - }, - [526] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(2190), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [527] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [528] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [529] = { - [anon_sym_RPAREN] = ACTIONS(2194), - [sym_comment] = ACTIONS(56), - }, - [530] = { - [sym_for_statement] = STATE(1082), - [sym_while_statement] = STATE(1082), - [sym_if_statement] = STATE(1082), - [sym_case_statement] = STATE(1082), - [sym_function_definition] = STATE(1082), - [sym_subshell] = STATE(1082), - [sym_pipeline] = STATE(1082), - [sym_list] = STATE(1082), - [sym_command] = STATE(1082), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1082), - [sym_variable_assignment] = STATE(1083), - [sym_declaration_command] = STATE(1082), - [sym_unset_command] = STATE(1082), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [531] = { - [sym_file_descriptor] = ACTIONS(2196), - [sym__concat] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_SEMI_SEMI] = ACTIONS(2198), - [anon_sym_PIPE_AMP] = ACTIONS(2198), - [anon_sym_AMP_AMP] = ACTIONS(2198), - [anon_sym_PIPE_PIPE] = ACTIONS(2198), - [anon_sym_EQ_TILDE] = ACTIONS(2198), - [anon_sym_EQ_EQ] = ACTIONS(2198), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_GT] = ACTIONS(2198), - [anon_sym_GT_GT] = ACTIONS(2198), - [anon_sym_AMP_GT] = ACTIONS(2198), - [anon_sym_AMP_GT_GT] = ACTIONS(2198), - [anon_sym_LT_AMP] = ACTIONS(2198), - [anon_sym_GT_AMP] = ACTIONS(2198), - [anon_sym_LT_LT] = ACTIONS(2198), - [anon_sym_LT_LT_DASH] = ACTIONS(2198), - [anon_sym_LT_LT_LT] = ACTIONS(2198), - [sym__special_characters] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(2198), - [sym_raw_string] = ACTIONS(2198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), - [anon_sym_BQUOTE] = ACTIONS(2198), - [anon_sym_LT_LPAREN] = ACTIONS(2198), - [anon_sym_GT_LPAREN] = ACTIONS(2198), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - }, - [532] = { - [sym_for_statement] = STATE(1084), - [sym_while_statement] = STATE(1084), - [sym_if_statement] = STATE(1084), - [sym_case_statement] = STATE(1084), - [sym_function_definition] = STATE(1084), - [sym_subshell] = STATE(1084), - [sym_pipeline] = STATE(1084), - [sym_list] = STATE(1084), - [sym_command] = STATE(1084), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1084), - [sym_variable_assignment] = STATE(1085), - [sym_declaration_command] = STATE(1084), - [sym_unset_command] = STATE(1084), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [533] = { - [anon_sym_LT] = ACTIONS(2200), - [anon_sym_GT] = ACTIONS(2200), - [anon_sym_GT_GT] = ACTIONS(2202), - [anon_sym_AMP_GT] = ACTIONS(2200), - [anon_sym_AMP_GT_GT] = ACTIONS(2202), - [anon_sym_LT_AMP] = ACTIONS(2202), - [anon_sym_GT_AMP] = ACTIONS(2202), - [sym_comment] = ACTIONS(56), - }, - [534] = { - [sym_concatenation] = STATE(1089), - [sym_string] = STATE(1088), - [sym_simple_expansion] = STATE(1088), - [sym_string_expansion] = STATE(1088), - [sym_expansion] = STATE(1088), - [sym_command_substitution] = STATE(1088), - [sym_process_substitution] = STATE(1088), - [sym__special_characters] = ACTIONS(2204), - [anon_sym_DQUOTE] = ACTIONS(2206), - [anon_sym_DOLLAR] = ACTIONS(2208), - [sym_raw_string] = ACTIONS(2210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2214), - [anon_sym_BQUOTE] = ACTIONS(2216), - [anon_sym_LT_LPAREN] = ACTIONS(2218), - [anon_sym_GT_LPAREN] = ACTIONS(2218), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2210), - [sym_regex] = ACTIONS(2220), - }, - [535] = { - [sym_concatenation] = STATE(1098), - [sym_string] = STATE(1093), - [sym_simple_expansion] = STATE(1093), - [sym_string_expansion] = STATE(1093), - [sym_expansion] = STATE(1093), - [sym_command_substitution] = STATE(1093), - [sym_process_substitution] = STATE(1093), - [sym__special_characters] = ACTIONS(2222), - [anon_sym_DQUOTE] = ACTIONS(2224), - [anon_sym_DOLLAR] = ACTIONS(2226), - [sym_raw_string] = ACTIONS(2228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2232), - [anon_sym_BQUOTE] = ACTIONS(2234), - [anon_sym_LT_LPAREN] = ACTIONS(2236), - [anon_sym_GT_LPAREN] = ACTIONS(2236), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2238), - }, - [536] = { - [sym_heredoc] = STATE(1101), - [sym__simple_heredoc] = ACTIONS(2240), - [sym__heredoc_beginning] = ACTIONS(2242), - [sym_comment] = ACTIONS(56), - }, - [537] = { - [sym_concatenation] = STATE(1104), - [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(2244), - [anon_sym_DQUOTE] = ACTIONS(2224), - [anon_sym_DOLLAR] = ACTIONS(2226), - [sym_raw_string] = ACTIONS(2246), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2232), - [anon_sym_BQUOTE] = ACTIONS(2234), - [anon_sym_LT_LPAREN] = ACTIONS(2236), - [anon_sym_GT_LPAREN] = ACTIONS(2236), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2248), - }, - [538] = { - [aux_sym_concatenation_repeat1] = STATE(512), - [sym_file_descriptor] = ACTIONS(608), - [sym__concat] = ACTIONS(946), - [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_RPAREN] = ACTIONS(608), - [anon_sym_PIPE_AMP] = ACTIONS(608), - [anon_sym_AMP_AMP] = ACTIONS(608), - [anon_sym_PIPE_PIPE] = ACTIONS(608), - [anon_sym_EQ_TILDE] = ACTIONS(606), - [anon_sym_EQ_EQ] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_GT] = ACTIONS(606), - [anon_sym_GT_GT] = ACTIONS(608), - [anon_sym_AMP_GT] = ACTIONS(606), - [anon_sym_AMP_GT_GT] = ACTIONS(608), - [anon_sym_LT_AMP] = ACTIONS(608), - [anon_sym_GT_AMP] = ACTIONS(608), - [anon_sym_LT_LT] = ACTIONS(606), - [anon_sym_LT_LT_DASH] = ACTIONS(608), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [sym__special_characters] = ACTIONS(606), - [anon_sym_DQUOTE] = ACTIONS(608), - [anon_sym_DOLLAR] = ACTIONS(606), - [sym_raw_string] = ACTIONS(608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(608), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(610), - }, - [539] = { - [aux_sym_concatenation_repeat1] = STATE(512), - [sym_file_descriptor] = ACTIONS(624), - [sym__concat] = ACTIONS(946), - [anon_sym_PIPE] = ACTIONS(622), - [anon_sym_RPAREN] = ACTIONS(624), - [anon_sym_PIPE_AMP] = ACTIONS(624), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_EQ_TILDE] = ACTIONS(622), - [anon_sym_EQ_EQ] = ACTIONS(622), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(622), - [anon_sym_GT_GT] = ACTIONS(624), - [anon_sym_AMP_GT] = ACTIONS(622), - [anon_sym_AMP_GT_GT] = ACTIONS(624), - [anon_sym_LT_AMP] = ACTIONS(624), - [anon_sym_GT_AMP] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(622), - [anon_sym_LT_LT_DASH] = ACTIONS(624), - [anon_sym_LT_LT_LT] = ACTIONS(624), - [sym__special_characters] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(622), - [sym_raw_string] = ACTIONS(624), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), - [anon_sym_BQUOTE] = ACTIONS(624), - [anon_sym_LT_LPAREN] = ACTIONS(624), - [anon_sym_GT_LPAREN] = ACTIONS(624), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(626), - }, - [540] = { - [sym_file_descriptor] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_RPAREN] = ACTIONS(1146), - [anon_sym_PIPE_AMP] = ACTIONS(1146), - [anon_sym_AMP_AMP] = ACTIONS(1146), - [anon_sym_PIPE_PIPE] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_GT] = ACTIONS(2250), - [anon_sym_GT_GT] = ACTIONS(1146), - [anon_sym_AMP_GT] = ACTIONS(2250), - [anon_sym_AMP_GT_GT] = ACTIONS(1146), - [anon_sym_LT_AMP] = ACTIONS(1146), - [anon_sym_GT_AMP] = ACTIONS(1146), - [anon_sym_LT_LT] = ACTIONS(2250), - [anon_sym_LT_LT_DASH] = ACTIONS(1146), - [anon_sym_LT_LT_LT] = ACTIONS(1146), - [anon_sym_BQUOTE] = ACTIONS(1146), - [sym_comment] = ACTIONS(56), - }, - [541] = { - [sym_file_descriptor] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(622), - [anon_sym_RPAREN] = ACTIONS(624), - [anon_sym_PIPE_AMP] = ACTIONS(624), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_EQ_TILDE] = ACTIONS(622), - [anon_sym_EQ_EQ] = ACTIONS(622), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(622), - [anon_sym_GT_GT] = ACTIONS(624), - [anon_sym_AMP_GT] = ACTIONS(622), - [anon_sym_AMP_GT_GT] = ACTIONS(624), - [anon_sym_LT_AMP] = ACTIONS(624), - [anon_sym_GT_AMP] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(622), - [anon_sym_LT_LT_DASH] = ACTIONS(624), - [anon_sym_LT_LT_LT] = ACTIONS(624), - [sym__special_characters] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(622), - [sym_raw_string] = ACTIONS(624), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), - [anon_sym_BQUOTE] = ACTIONS(624), - [anon_sym_LT_LPAREN] = ACTIONS(624), - [anon_sym_GT_LPAREN] = ACTIONS(624), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(626), - }, - [542] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [aux_sym_while_statement_repeat1] = STATE(1105), - [sym_file_descriptor] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_PIPE_AMP] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_GT_GT] = ACTIONS(992), - [anon_sym_AMP_GT] = ACTIONS(990), - [anon_sym_AMP_GT_GT] = ACTIONS(992), - [anon_sym_LT_AMP] = ACTIONS(992), - [anon_sym_GT_AMP] = ACTIONS(992), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(998), - [sym_comment] = ACTIONS(56), - }, - [543] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [sym_concatenation] = STATE(541), - [sym_string] = STATE(539), - [sym_simple_expansion] = STATE(539), - [sym_string_expansion] = STATE(539), - [sym_expansion] = STATE(539), - [sym_command_substitution] = STATE(539), - [sym_process_substitution] = STATE(539), - [aux_sym_while_statement_repeat1] = STATE(1106), - [aux_sym_command_repeat2] = STATE(1107), - [sym_file_descriptor] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_PIPE_AMP] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_EQ_TILDE] = ACTIONS(988), - [anon_sym_EQ_EQ] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_GT_GT] = ACTIONS(992), - [anon_sym_AMP_GT] = ACTIONS(990), - [anon_sym_AMP_GT_GT] = ACTIONS(992), - [anon_sym_LT_AMP] = ACTIONS(992), - [anon_sym_GT_AMP] = ACTIONS(992), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(998), - [sym__special_characters] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(1002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1004), - }, - [544] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [sym_concatenation] = STATE(541), - [sym_string] = STATE(539), - [sym_simple_expansion] = STATE(539), - [sym_string_expansion] = STATE(539), - [sym_expansion] = STATE(539), - [sym_command_substitution] = STATE(539), - [sym_process_substitution] = STATE(539), - [aux_sym_while_statement_repeat1] = STATE(1106), - [aux_sym_command_repeat2] = STATE(1108), - [sym_file_descriptor] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_PIPE_AMP] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_EQ_TILDE] = ACTIONS(988), - [anon_sym_EQ_EQ] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_GT_GT] = ACTIONS(992), - [anon_sym_AMP_GT] = ACTIONS(990), - [anon_sym_AMP_GT_GT] = ACTIONS(992), - [anon_sym_LT_AMP] = ACTIONS(992), - [anon_sym_GT_AMP] = ACTIONS(992), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(998), - [sym__special_characters] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(1002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1004), - }, - [545] = { - [sym_concatenation] = STATE(995), - [sym_string] = STATE(1112), - [sym_array] = STATE(995), - [sym_simple_expansion] = STATE(1112), - [sym_string_expansion] = STATE(1112), - [sym_expansion] = STATE(1112), - [sym_command_substitution] = STATE(1112), - [sym_process_substitution] = STATE(1112), - [sym__empty_value] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2042), - [sym__special_characters] = ACTIONS(2256), - [anon_sym_DQUOTE] = ACTIONS(2258), - [anon_sym_DOLLAR] = ACTIONS(2260), - [sym_raw_string] = ACTIONS(2262), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2264), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2266), - [anon_sym_BQUOTE] = ACTIONS(2268), - [anon_sym_LT_LPAREN] = ACTIONS(2270), - [anon_sym_GT_LPAREN] = ACTIONS(2270), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2272), - }, - [546] = { - [sym_do_group] = STATE(1117), - [anon_sym_do] = ACTIONS(2068), - [sym_comment] = ACTIONS(56), - }, - [547] = { - [sym_compound_statement] = STATE(1119), - [anon_sym_LPAREN] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2082), - [sym_comment] = ACTIONS(56), - }, - [548] = { - [sym_concatenation] = STATE(84), - [sym_string] = STATE(79), - [sym_simple_expansion] = STATE(79), - [sym_string_expansion] = STATE(79), - [sym_expansion] = STATE(79), - [sym_command_substitution] = STATE(79), - [sym_process_substitution] = STATE(79), - [aux_sym_command_repeat2] = STATE(351), - [anon_sym_EQ_TILDE] = ACTIONS(122), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_RBRACK] = ACTIONS(2276), - [sym__special_characters] = ACTIONS(640), - [anon_sym_DQUOTE] = ACTIONS(126), - [anon_sym_DOLLAR] = ACTIONS(128), - [sym_raw_string] = ACTIONS(130), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), - [anon_sym_BQUOTE] = ACTIONS(136), - [anon_sym_LT_LPAREN] = ACTIONS(138), - [anon_sym_GT_LPAREN] = ACTIONS(138), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(140), - }, - [549] = { - [sym_concatenation] = STATE(95), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_string_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat2] = STATE(373), - [anon_sym_EQ_TILDE] = ACTIONS(142), - [anon_sym_EQ_EQ] = ACTIONS(142), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2276), - [sym__special_characters] = ACTIONS(682), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(148), - [sym_raw_string] = ACTIONS(150), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(156), - [anon_sym_LT_LPAREN] = ACTIONS(158), - [anon_sym_GT_LPAREN] = ACTIONS(158), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(160), - }, - [550] = { - [sym__assignment] = STATE(1023), - [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(2278), - [anon_sym_PLUS_EQ] = ACTIONS(2278), - [sym_comment] = ACTIONS(56), - }, - [551] = { - [aux_sym_concatenation_repeat1] = STATE(1123), - [sym__concat] = ACTIONS(2280), - [sym_variable_name] = ACTIONS(688), - [anon_sym_PIPE] = ACTIONS(2094), - [anon_sym_PIPE_AMP] = ACTIONS(688), - [anon_sym_AMP_AMP] = ACTIONS(688), - [anon_sym_PIPE_PIPE] = ACTIONS(688), - [sym__special_characters] = ACTIONS(2094), - [anon_sym_DQUOTE] = ACTIONS(688), - [anon_sym_DOLLAR] = ACTIONS(2094), - [sym_raw_string] = ACTIONS(688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), - [anon_sym_BQUOTE] = ACTIONS(688), - [anon_sym_LT_LPAREN] = ACTIONS(688), - [anon_sym_GT_LPAREN] = ACTIONS(688), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2094), - [sym_word] = ACTIONS(690), - }, - [552] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1125), - [anon_sym_DQUOTE] = ACTIONS(2282), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [553] = { - [sym_string] = STATE(1127), - [anon_sym_DQUOTE] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(2284), - [sym_raw_string] = ACTIONS(2286), - [anon_sym_POUND] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_AT] = ACTIONS(2284), - [anon_sym_QMARK] = ACTIONS(2284), - [anon_sym_0] = ACTIONS(2290), - [anon_sym__] = ACTIONS(2290), - }, - [554] = { - [aux_sym_concatenation_repeat1] = STATE(1123), - [sym__concat] = ACTIONS(2280), - [sym_variable_name] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_PIPE_AMP] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(704), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [sym__special_characters] = ACTIONS(2106), - [anon_sym_DQUOTE] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(2106), - [sym_raw_string] = ACTIONS(704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(704), - [anon_sym_BQUOTE] = ACTIONS(704), - [anon_sym_LT_LPAREN] = ACTIONS(704), - [anon_sym_GT_LPAREN] = ACTIONS(704), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2106), - [sym_word] = ACTIONS(706), - }, - [555] = { - [sym_subscript] = STATE(1133), - [sym_variable_name] = ACTIONS(2292), - [anon_sym_DOLLAR] = ACTIONS(2294), - [anon_sym_POUND] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2294), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2294), - [anon_sym_AT] = ACTIONS(2294), - [anon_sym_QMARK] = ACTIONS(2294), - [anon_sym_0] = ACTIONS(2300), - [anon_sym__] = ACTIONS(2300), - }, - [556] = { - [sym_for_statement] = STATE(1134), - [sym_while_statement] = STATE(1134), - [sym_if_statement] = STATE(1134), - [sym_case_statement] = STATE(1134), - [sym_function_definition] = STATE(1134), - [sym_subshell] = STATE(1134), - [sym_pipeline] = STATE(1134), - [sym_list] = STATE(1134), - [sym_command] = STATE(1134), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1134), - [sym_variable_assignment] = STATE(1135), - [sym_declaration_command] = STATE(1134), - [sym_unset_command] = STATE(1134), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [557] = { - [sym_for_statement] = STATE(1136), - [sym_while_statement] = STATE(1136), - [sym_if_statement] = STATE(1136), - [sym_case_statement] = STATE(1136), - [sym_function_definition] = STATE(1136), - [sym_subshell] = STATE(1136), - [sym_pipeline] = STATE(1136), - [sym_list] = STATE(1136), - [sym_command] = STATE(1136), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1136), - [sym_variable_assignment] = STATE(1137), - [sym_declaration_command] = STATE(1136), - [sym_unset_command] = STATE(1136), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [558] = { - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_if_statement] = STATE(1138), - [sym_case_statement] = STATE(1138), - [sym_function_definition] = STATE(1138), - [sym_subshell] = STATE(1138), - [sym_pipeline] = STATE(1138), - [sym_list] = STATE(1138), - [sym_command] = STATE(1138), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1138), - [sym_variable_assignment] = STATE(1139), - [sym_declaration_command] = STATE(1138), - [sym_unset_command] = STATE(1138), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [559] = { - [sym__assignment] = STATE(1023), - [anon_sym_EQ] = ACTIONS(2278), - [anon_sym_PLUS_EQ] = ACTIONS(2278), - [sym_comment] = ACTIONS(56), - }, - [560] = { - [sym_variable_assignment] = STATE(497), - [sym_subscript] = STATE(559), - [sym_concatenation] = STATE(497), - [sym_string] = STATE(554), - [sym_simple_expansion] = STATE(554), - [sym_string_expansion] = STATE(554), - [sym_expansion] = STATE(554), - [sym_command_substitution] = STATE(554), - [sym_process_substitution] = STATE(554), - [aux_sym_declaration_command_repeat1] = STATE(1140), - [sym_variable_name] = ACTIONS(1014), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_PIPE_AMP] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [sym__special_characters] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(1020), - [sym_raw_string] = ACTIONS(1022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1026), - [anon_sym_BQUOTE] = ACTIONS(2122), - [anon_sym_LT_LPAREN] = ACTIONS(1028), - [anon_sym_GT_LPAREN] = ACTIONS(1028), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(918), - [sym_word] = ACTIONS(1030), - }, - [561] = { - [aux_sym_concatenation_repeat1] = STATE(1142), - [sym__concat] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_PIPE_AMP] = ACTIONS(2128), - [anon_sym_AMP_AMP] = ACTIONS(2128), - [anon_sym_PIPE_PIPE] = ACTIONS(2128), - [sym__special_characters] = ACTIONS(2126), - [anon_sym_DQUOTE] = ACTIONS(2128), - [anon_sym_DOLLAR] = ACTIONS(2126), - [sym_raw_string] = ACTIONS(2128), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2128), - [anon_sym_BQUOTE] = ACTIONS(2128), - [anon_sym_LT_LPAREN] = ACTIONS(2128), - [anon_sym_GT_LPAREN] = ACTIONS(2128), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2126), - [sym_word] = ACTIONS(726), - }, - [562] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1144), - [anon_sym_DQUOTE] = ACTIONS(2304), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [563] = { - [sym_string] = STATE(1146), - [anon_sym_DQUOTE] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(2306), - [sym_raw_string] = ACTIONS(2308), - [anon_sym_POUND] = ACTIONS(2306), - [anon_sym_DASH] = ACTIONS(2306), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2306), - [anon_sym_AT] = ACTIONS(2306), - [anon_sym_QMARK] = ACTIONS(2306), - [anon_sym_0] = ACTIONS(2312), - [anon_sym__] = ACTIONS(2312), - }, - [564] = { - [aux_sym_concatenation_repeat1] = STATE(1142), - [sym__concat] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_PIPE_AMP] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_PIPE_PIPE] = ACTIONS(2142), - [sym__special_characters] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2142), - [anon_sym_DOLLAR] = ACTIONS(2140), - [sym_raw_string] = ACTIONS(2142), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2142), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2142), - [anon_sym_BQUOTE] = ACTIONS(2142), - [anon_sym_LT_LPAREN] = ACTIONS(2142), - [anon_sym_GT_LPAREN] = ACTIONS(2142), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2140), - [sym_word] = ACTIONS(740), - }, - [565] = { - [sym_subscript] = STATE(1152), - [sym_variable_name] = ACTIONS(2314), - [anon_sym_DOLLAR] = ACTIONS(2316), - [anon_sym_POUND] = ACTIONS(2318), - [anon_sym_DASH] = ACTIONS(2316), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2320), - [anon_sym_STAR] = ACTIONS(2316), - [anon_sym_AT] = ACTIONS(2316), - [anon_sym_QMARK] = ACTIONS(2316), - [anon_sym_0] = ACTIONS(2322), - [anon_sym__] = ACTIONS(2322), - }, - [566] = { - [sym_for_statement] = STATE(1153), - [sym_while_statement] = STATE(1153), - [sym_if_statement] = STATE(1153), - [sym_case_statement] = STATE(1153), - [sym_function_definition] = STATE(1153), - [sym_subshell] = STATE(1153), - [sym_pipeline] = STATE(1153), - [sym_list] = STATE(1153), - [sym_command] = STATE(1153), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1153), - [sym_variable_assignment] = STATE(1154), - [sym_declaration_command] = STATE(1153), - [sym_unset_command] = STATE(1153), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [567] = { - [sym_for_statement] = STATE(1155), - [sym_while_statement] = STATE(1155), - [sym_if_statement] = STATE(1155), - [sym_case_statement] = STATE(1155), - [sym_function_definition] = STATE(1155), - [sym_subshell] = STATE(1155), - [sym_pipeline] = STATE(1155), - [sym_list] = STATE(1155), - [sym_command] = STATE(1155), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1155), - [sym_variable_assignment] = STATE(1156), - [sym_declaration_command] = STATE(1155), - [sym_unset_command] = STATE(1155), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [568] = { - [sym_for_statement] = STATE(1157), - [sym_while_statement] = STATE(1157), - [sym_if_statement] = STATE(1157), - [sym_case_statement] = STATE(1157), - [sym_function_definition] = STATE(1157), - [sym_subshell] = STATE(1157), - [sym_pipeline] = STATE(1157), - [sym_list] = STATE(1157), - [sym_command] = STATE(1157), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1157), - [sym_variable_assignment] = STATE(1158), - [sym_declaration_command] = STATE(1157), - [sym_unset_command] = STATE(1157), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [569] = { - [sym_concatenation] = STATE(509), - [sym_string] = STATE(564), - [sym_simple_expansion] = STATE(564), - [sym_string_expansion] = STATE(564), - [sym_expansion] = STATE(564), - [sym_command_substitution] = STATE(564), - [sym_process_substitution] = STATE(564), - [aux_sym_unset_command_repeat1] = STATE(1159), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_PIPE_AMP] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2160), - [sym__special_characters] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1036), - [sym_raw_string] = ACTIONS(1038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1042), - [anon_sym_BQUOTE] = ACTIONS(2160), - [anon_sym_LT_LPAREN] = ACTIONS(1044), - [anon_sym_GT_LPAREN] = ACTIONS(1044), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(942), - [sym_word] = ACTIONS(1046), - }, - [570] = { - [sym_string] = STATE(1160), - [sym_simple_expansion] = STATE(1160), - [sym_string_expansion] = STATE(1160), - [sym_expansion] = STATE(1160), - [sym_command_substitution] = STATE(1160), - [sym_process_substitution] = STATE(1160), - [sym__special_characters] = ACTIONS(2324), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(2326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2324), - }, - [571] = { - [aux_sym_concatenation_repeat1] = STATE(1161), - [sym_file_descriptor] = ACTIONS(790), - [sym__concat] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [anon_sym_EQ_TILDE] = ACTIONS(1571), - [anon_sym_EQ_EQ] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(1571), - [anon_sym_GT_GT] = ACTIONS(790), - [anon_sym_AMP_GT] = ACTIONS(1571), - [anon_sym_AMP_GT_GT] = ACTIONS(790), - [anon_sym_LT_AMP] = ACTIONS(790), - [anon_sym_GT_AMP] = ACTIONS(790), - [anon_sym_LT_LT] = ACTIONS(1571), - [anon_sym_LT_LT_DASH] = ACTIONS(790), - [anon_sym_LT_LT_LT] = ACTIONS(790), - [sym__special_characters] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(1571), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(792), - }, - [572] = { - [sym_file_descriptor] = ACTIONS(794), - [sym__concat] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_EQ_TILDE] = ACTIONS(1573), - [anon_sym_EQ_EQ] = ACTIONS(1573), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(794), - [anon_sym_AMP_GT] = ACTIONS(1573), - [anon_sym_AMP_GT_GT] = ACTIONS(794), - [anon_sym_LT_AMP] = ACTIONS(794), - [anon_sym_GT_AMP] = ACTIONS(794), - [anon_sym_LT_LT] = ACTIONS(1573), - [anon_sym_LT_LT_DASH] = ACTIONS(794), - [anon_sym_LT_LT_LT] = ACTIONS(794), - [sym__special_characters] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(796), - }, - [573] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [574] = { - [sym_file_descriptor] = ACTIONS(826), - [sym__concat] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [anon_sym_EQ_TILDE] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1577), - [anon_sym_GT_GT] = ACTIONS(826), - [anon_sym_AMP_GT] = ACTIONS(1577), - [anon_sym_AMP_GT_GT] = ACTIONS(826), - [anon_sym_LT_AMP] = ACTIONS(826), - [anon_sym_GT_AMP] = ACTIONS(826), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT_LT_DASH] = ACTIONS(826), - [anon_sym_LT_LT_LT] = ACTIONS(826), - [sym__special_characters] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(828), - }, - [575] = { - [sym_file_descriptor] = ACTIONS(830), - [sym__concat] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_PIPE_AMP] = ACTIONS(830), - [anon_sym_AMP_AMP] = ACTIONS(830), - [anon_sym_PIPE_PIPE] = ACTIONS(830), - [anon_sym_EQ_TILDE] = ACTIONS(1579), - [anon_sym_EQ_EQ] = ACTIONS(1579), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(830), - [anon_sym_AMP_GT] = ACTIONS(1579), - [anon_sym_AMP_GT_GT] = ACTIONS(830), - [anon_sym_LT_AMP] = ACTIONS(830), - [anon_sym_GT_AMP] = ACTIONS(830), - [anon_sym_LT_LT] = ACTIONS(1579), - [anon_sym_LT_LT_DASH] = ACTIONS(830), - [anon_sym_LT_LT_LT] = ACTIONS(830), - [sym__special_characters] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(1579), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(832), - }, - [576] = { - [sym_file_descriptor] = ACTIONS(834), - [sym__concat] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [anon_sym_EQ_TILDE] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1581), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_AMP_GT] = ACTIONS(1581), - [anon_sym_AMP_GT_GT] = ACTIONS(834), - [anon_sym_LT_AMP] = ACTIONS(834), - [anon_sym_GT_AMP] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(1581), - [anon_sym_LT_LT_DASH] = ACTIONS(834), - [anon_sym_LT_LT_LT] = ACTIONS(834), - [sym__special_characters] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(1581), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(836), - }, - [577] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(2330), - [sym_comment] = ACTIONS(56), - }, - [578] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1166), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2334), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [579] = { - [sym_subscript] = STATE(1170), - [sym_variable_name] = ACTIONS(2336), - [anon_sym_DOLLAR] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(2338), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2340), - [anon_sym_STAR] = ACTIONS(2338), - [anon_sym_AT] = ACTIONS(2338), - [anon_sym_QMARK] = ACTIONS(2338), - [anon_sym_0] = ACTIONS(2342), - [anon_sym__] = ACTIONS(2342), - }, - [580] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1173), - [anon_sym_RBRACE] = ACTIONS(2344), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2346), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [581] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1176), - [anon_sym_RBRACE] = ACTIONS(2348), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2350), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [582] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2352), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [583] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2352), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [584] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(2352), - [sym_comment] = ACTIONS(56), - }, - [585] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(2352), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [586] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2354), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [587] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2354), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [588] = { - [anon_sym_RPAREN] = ACTIONS(2356), - [sym_comment] = ACTIONS(56), - }, - [589] = { - [sym_for_statement] = STATE(1082), - [sym_while_statement] = STATE(1082), - [sym_if_statement] = STATE(1082), - [sym_case_statement] = STATE(1082), - [sym_function_definition] = STATE(1082), - [sym_subshell] = STATE(1082), - [sym_pipeline] = STATE(1082), - [sym_list] = STATE(1082), - [sym_command] = STATE(1082), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1082), - [sym_variable_assignment] = STATE(1180), - [sym_declaration_command] = STATE(1082), - [sym_unset_command] = STATE(1082), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [590] = { - [sym_for_statement] = STATE(1181), - [sym_while_statement] = STATE(1181), - [sym_if_statement] = STATE(1181), - [sym_case_statement] = STATE(1181), - [sym_function_definition] = STATE(1181), - [sym_subshell] = STATE(1181), - [sym_pipeline] = STATE(1181), - [sym_list] = STATE(1181), - [sym_command] = STATE(1181), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1181), - [sym_variable_assignment] = STATE(1182), - [sym_declaration_command] = STATE(1181), - [sym_unset_command] = STATE(1181), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [591] = { - [anon_sym_LT] = ACTIONS(2358), - [anon_sym_GT] = ACTIONS(2358), - [anon_sym_GT_GT] = ACTIONS(2360), - [anon_sym_AMP_GT] = ACTIONS(2358), - [anon_sym_AMP_GT_GT] = ACTIONS(2360), - [anon_sym_LT_AMP] = ACTIONS(2360), - [anon_sym_GT_AMP] = ACTIONS(2360), - [sym_comment] = ACTIONS(56), - }, - [592] = { - [sym_concatenation] = STATE(1089), - [sym_string] = STATE(1185), - [sym_simple_expansion] = STATE(1185), - [sym_string_expansion] = STATE(1185), - [sym_expansion] = STATE(1185), - [sym_command_substitution] = STATE(1185), - [sym_process_substitution] = STATE(1185), - [sym__special_characters] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2364), - [anon_sym_DOLLAR] = ACTIONS(2366), - [sym_raw_string] = ACTIONS(2368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2372), - [anon_sym_BQUOTE] = ACTIONS(2374), - [anon_sym_LT_LPAREN] = ACTIONS(2376), - [anon_sym_GT_LPAREN] = ACTIONS(2376), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2368), - [sym_regex] = ACTIONS(2220), - }, - [593] = { - [sym_concatenation] = STATE(1098), - [sym_string] = STATE(1189), - [sym_simple_expansion] = STATE(1189), - [sym_string_expansion] = STATE(1189), - [sym_expansion] = STATE(1189), - [sym_command_substitution] = STATE(1189), - [sym_process_substitution] = STATE(1189), - [sym__special_characters] = ACTIONS(2378), - [anon_sym_DQUOTE] = ACTIONS(2380), - [anon_sym_DOLLAR] = ACTIONS(2382), - [sym_raw_string] = ACTIONS(2384), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2386), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2388), - [anon_sym_BQUOTE] = ACTIONS(2390), - [anon_sym_LT_LPAREN] = ACTIONS(2392), - [anon_sym_GT_LPAREN] = ACTIONS(2392), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2394), - }, - [594] = { - [sym_concatenation] = STATE(1104), - [sym_string] = STATE(1195), - [sym_simple_expansion] = STATE(1195), - [sym_string_expansion] = STATE(1195), - [sym_expansion] = STATE(1195), - [sym_command_substitution] = STATE(1195), - [sym_process_substitution] = STATE(1195), - [sym__special_characters] = ACTIONS(2396), - [anon_sym_DQUOTE] = ACTIONS(2380), - [anon_sym_DOLLAR] = ACTIONS(2382), - [sym_raw_string] = ACTIONS(2398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2386), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2388), - [anon_sym_BQUOTE] = ACTIONS(2390), - [anon_sym_LT_LPAREN] = ACTIONS(2392), - [anon_sym_GT_LPAREN] = ACTIONS(2392), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2400), - }, - [595] = { - [aux_sym_concatenation_repeat1] = STATE(571), - [sym_file_descriptor] = ACTIONS(608), - [sym__concat] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PIPE_AMP] = ACTIONS(608), - [anon_sym_AMP_AMP] = ACTIONS(608), - [anon_sym_PIPE_PIPE] = ACTIONS(608), - [anon_sym_EQ_TILDE] = ACTIONS(606), - [anon_sym_EQ_EQ] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_GT] = ACTIONS(606), - [anon_sym_GT_GT] = ACTIONS(608), - [anon_sym_AMP_GT] = ACTIONS(606), - [anon_sym_AMP_GT_GT] = ACTIONS(608), - [anon_sym_LT_AMP] = ACTIONS(608), - [anon_sym_GT_AMP] = ACTIONS(608), - [anon_sym_LT_LT] = ACTIONS(606), - [anon_sym_LT_LT_DASH] = ACTIONS(608), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [sym__special_characters] = ACTIONS(606), - [anon_sym_DQUOTE] = ACTIONS(608), - [anon_sym_DOLLAR] = ACTIONS(606), - [sym_raw_string] = ACTIONS(608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(608), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(610), - }, - [596] = { - [aux_sym_concatenation_repeat1] = STATE(571), - [sym_file_descriptor] = ACTIONS(624), - [sym__concat] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(622), - [anon_sym_PIPE_AMP] = ACTIONS(624), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_EQ_TILDE] = ACTIONS(622), - [anon_sym_EQ_EQ] = ACTIONS(622), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(622), - [anon_sym_GT_GT] = ACTIONS(624), - [anon_sym_AMP_GT] = ACTIONS(622), - [anon_sym_AMP_GT_GT] = ACTIONS(624), - [anon_sym_LT_AMP] = ACTIONS(624), - [anon_sym_GT_AMP] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(622), - [anon_sym_LT_LT_DASH] = ACTIONS(624), - [anon_sym_LT_LT_LT] = ACTIONS(624), - [sym__special_characters] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(622), - [sym_raw_string] = ACTIONS(624), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), - [anon_sym_BQUOTE] = ACTIONS(624), - [anon_sym_LT_LPAREN] = ACTIONS(624), - [anon_sym_GT_LPAREN] = ACTIONS(624), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(626), - }, - [597] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [aux_sym_while_statement_repeat1] = STATE(1196), - [sym_file_descriptor] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_PIPE_AMP] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(1082), - [anon_sym_GT] = ACTIONS(1082), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1082), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_BQUOTE] = ACTIONS(2254), - [sym_comment] = ACTIONS(56), - }, - [598] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [sym_concatenation] = STATE(541), - [sym_string] = STATE(596), - [sym_simple_expansion] = STATE(596), - [sym_string_expansion] = STATE(596), - [sym_expansion] = STATE(596), - [sym_command_substitution] = STATE(596), - [sym_process_substitution] = STATE(596), - [aux_sym_while_statement_repeat1] = STATE(1197), - [aux_sym_command_repeat2] = STATE(1198), - [sym_file_descriptor] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_PIPE_AMP] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_EQ_TILDE] = ACTIONS(1080), - [anon_sym_EQ_EQ] = ACTIONS(1080), - [anon_sym_LT] = ACTIONS(1082), - [anon_sym_GT] = ACTIONS(1082), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1082), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [sym__special_characters] = ACTIONS(1088), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(1090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(2254), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1092), - }, - [599] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [sym_concatenation] = STATE(541), - [sym_string] = STATE(596), - [sym_simple_expansion] = STATE(596), - [sym_string_expansion] = STATE(596), - [sym_expansion] = STATE(596), - [sym_command_substitution] = STATE(596), - [sym_process_substitution] = STATE(596), - [aux_sym_while_statement_repeat1] = STATE(1197), - [aux_sym_command_repeat2] = STATE(1199), - [sym_file_descriptor] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_PIPE_AMP] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_EQ_TILDE] = ACTIONS(1080), - [anon_sym_EQ_EQ] = ACTIONS(1080), - [anon_sym_LT] = ACTIONS(1082), - [anon_sym_GT] = ACTIONS(1082), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1082), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [sym__special_characters] = ACTIONS(1088), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(1090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(2254), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1092), - }, - [600] = { - [sym_file_descriptor] = ACTIONS(2402), - [sym__concat] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_SEMI_SEMI] = ACTIONS(2404), - [anon_sym_PIPE_AMP] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [anon_sym_EQ_TILDE] = ACTIONS(2404), - [anon_sym_EQ_EQ] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2404), - [anon_sym_GT] = ACTIONS(2404), - [anon_sym_GT_GT] = ACTIONS(2404), - [anon_sym_AMP_GT] = ACTIONS(2404), - [anon_sym_AMP_GT_GT] = ACTIONS(2404), - [anon_sym_LT_AMP] = ACTIONS(2404), - [anon_sym_GT_AMP] = ACTIONS(2404), - [anon_sym_LT_LT] = ACTIONS(2404), - [anon_sym_LT_LT_DASH] = ACTIONS(2404), - [anon_sym_LT_LT_LT] = ACTIONS(2404), - [sym__special_characters] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2404), - [anon_sym_DOLLAR] = ACTIONS(2404), - [sym_raw_string] = ACTIONS(2404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2404), - [anon_sym_LT_LPAREN] = ACTIONS(2404), - [anon_sym_GT_LPAREN] = ACTIONS(2404), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2404), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LF] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - }, - [601] = { - [sym_compound_statement] = STATE(1200), - [anon_sym_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(56), - }, - [602] = { - [anon_sym_esac] = ACTIONS(2406), - [anon_sym_PIPE] = ACTIONS(2406), - [anon_sym_RPAREN] = ACTIONS(2406), - [anon_sym_SEMI_SEMI] = ACTIONS(2406), - [anon_sym_PIPE_AMP] = ACTIONS(2406), - [anon_sym_AMP_AMP] = ACTIONS(2406), - [anon_sym_PIPE_PIPE] = ACTIONS(2406), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2406), - [anon_sym_LF] = ACTIONS(2406), - [anon_sym_AMP] = ACTIONS(2406), - }, - [603] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(2406), - [anon_sym_RPAREN] = ACTIONS(2406), - [anon_sym_SEMI_SEMI] = ACTIONS(2406), - [anon_sym_PIPE_AMP] = ACTIONS(2406), - [anon_sym_AMP_AMP] = ACTIONS(2406), - [anon_sym_PIPE_PIPE] = ACTIONS(2406), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(2406), - [anon_sym_LF] = ACTIONS(2406), - [anon_sym_AMP] = ACTIONS(2406), - }, - [604] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(2408), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(2408), - [anon_sym_PIPE_PIPE] = ACTIONS(2408), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2408), - [anon_sym_LF] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2408), - }, - [605] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(2408), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(2408), - [anon_sym_PIPE_PIPE] = ACTIONS(2408), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(2408), - [anon_sym_LF] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2408), - }, - [606] = { - [sym_concatenation] = STATE(1203), - [sym_string] = STATE(1202), - [sym_simple_expansion] = STATE(1202), - [sym_string_expansion] = STATE(1202), - [sym_expansion] = STATE(1202), - [sym_command_substitution] = STATE(1202), - [sym_process_substitution] = STATE(1202), - [sym__special_characters] = ACTIONS(2410), - [anon_sym_DQUOTE] = ACTIONS(1120), - [anon_sym_DOLLAR] = ACTIONS(1122), - [sym_raw_string] = ACTIONS(2412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1130), - [anon_sym_LT_LPAREN] = ACTIONS(1132), - [anon_sym_GT_LPAREN] = ACTIONS(1132), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2414), - }, - [607] = { - [aux_sym_concatenation_repeat1] = STATE(131), - [sym_file_descriptor] = ACTIONS(1557), - [sym__concat] = ACTIONS(226), - [anon_sym_PIPE] = ACTIONS(1559), - [anon_sym_SEMI_SEMI] = ACTIONS(1559), - [anon_sym_PIPE_AMP] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1559), - [anon_sym_PIPE_PIPE] = ACTIONS(1559), - [anon_sym_EQ_TILDE] = ACTIONS(1559), - [anon_sym_EQ_EQ] = ACTIONS(1559), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_GT] = ACTIONS(1559), - [anon_sym_GT_GT] = ACTIONS(1559), - [anon_sym_AMP_GT] = ACTIONS(1559), - [anon_sym_AMP_GT_GT] = ACTIONS(1559), - [anon_sym_LT_AMP] = ACTIONS(1559), - [anon_sym_GT_AMP] = ACTIONS(1559), - [anon_sym_LT_LT] = ACTIONS(1559), - [anon_sym_LT_LT_DASH] = ACTIONS(1559), - [anon_sym_LT_LT_LT] = ACTIONS(1559), - [sym__special_characters] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1559), - [anon_sym_DOLLAR] = ACTIONS(1559), - [sym_raw_string] = ACTIONS(1559), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1559), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1559), - [anon_sym_BQUOTE] = ACTIONS(1559), - [anon_sym_LT_LPAREN] = ACTIONS(1559), - [anon_sym_GT_LPAREN] = ACTIONS(1559), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1559), - [anon_sym_LF] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - }, - [608] = { - [aux_sym_concatenation_repeat1] = STATE(131), - [sym_file_descriptor] = ACTIONS(1563), - [sym__concat] = ACTIONS(226), - [anon_sym_PIPE] = ACTIONS(1565), - [anon_sym_SEMI_SEMI] = ACTIONS(1565), - [anon_sym_PIPE_AMP] = ACTIONS(1565), - [anon_sym_AMP_AMP] = ACTIONS(1565), - [anon_sym_PIPE_PIPE] = ACTIONS(1565), - [anon_sym_EQ_TILDE] = ACTIONS(1565), - [anon_sym_EQ_EQ] = ACTIONS(1565), - [anon_sym_LT] = ACTIONS(1565), - [anon_sym_GT] = ACTIONS(1565), - [anon_sym_GT_GT] = ACTIONS(1565), - [anon_sym_AMP_GT] = ACTIONS(1565), - [anon_sym_AMP_GT_GT] = ACTIONS(1565), - [anon_sym_LT_AMP] = ACTIONS(1565), - [anon_sym_GT_AMP] = ACTIONS(1565), - [anon_sym_LT_LT] = ACTIONS(1565), - [anon_sym_LT_LT_DASH] = ACTIONS(1565), - [anon_sym_LT_LT_LT] = ACTIONS(1565), - [sym__special_characters] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(1565), - [sym_raw_string] = ACTIONS(1565), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1565), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1565), - [anon_sym_BQUOTE] = ACTIONS(1565), - [anon_sym_LT_LPAREN] = ACTIONS(1565), - [anon_sym_GT_LPAREN] = ACTIONS(1565), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_LF] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - }, - [609] = { - [sym_file_descriptor] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1565), - [anon_sym_RPAREN] = ACTIONS(1565), - [anon_sym_SEMI_SEMI] = ACTIONS(1565), - [anon_sym_PIPE_AMP] = ACTIONS(1565), - [anon_sym_AMP_AMP] = ACTIONS(1565), - [anon_sym_PIPE_PIPE] = ACTIONS(1565), - [anon_sym_EQ_TILDE] = ACTIONS(1565), - [anon_sym_EQ_EQ] = ACTIONS(1565), - [anon_sym_LT] = ACTIONS(1565), - [anon_sym_GT] = ACTIONS(1565), - [anon_sym_GT_GT] = ACTIONS(1565), - [anon_sym_AMP_GT] = ACTIONS(1565), - [anon_sym_AMP_GT_GT] = ACTIONS(1565), - [anon_sym_LT_AMP] = ACTIONS(1565), - [anon_sym_GT_AMP] = ACTIONS(1565), - [anon_sym_LT_LT] = ACTIONS(1565), - [anon_sym_LT_LT_DASH] = ACTIONS(1565), - [anon_sym_LT_LT_LT] = ACTIONS(1565), - [sym__special_characters] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(1565), - [sym_raw_string] = ACTIONS(1565), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1565), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1565), - [anon_sym_BQUOTE] = ACTIONS(1565), - [anon_sym_LT_LPAREN] = ACTIONS(1565), - [anon_sym_GT_LPAREN] = ACTIONS(1565), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_LF] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - }, - [610] = { - [aux_sym_concatenation_repeat1] = STATE(1205), - [sym_file_descriptor] = ACTIONS(756), - [sym__concat] = ACTIONS(2416), - [anon_sym_PIPE] = 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_LT] = ACTIONS(2418), - [anon_sym_GT] = ACTIONS(2418), - [anon_sym_GT_GT] = ACTIONS(2418), - [anon_sym_AMP_GT] = ACTIONS(2418), - [anon_sym_AMP_GT_GT] = ACTIONS(2418), - [anon_sym_LT_AMP] = ACTIONS(2418), - [anon_sym_GT_AMP] = ACTIONS(2418), - [anon_sym_LT_LT] = ACTIONS(2418), - [anon_sym_LT_LT_DASH] = ACTIONS(2418), - [anon_sym_LT_LT_LT] = ACTIONS(2418), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_LF] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2418), - }, - [611] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1207), - [anon_sym_DQUOTE] = ACTIONS(2420), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [612] = { - [sym_string] = STATE(1209), - [anon_sym_DQUOTE] = ACTIONS(1120), - [anon_sym_DOLLAR] = ACTIONS(2422), - [sym_raw_string] = ACTIONS(2424), - [anon_sym_POUND] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2426), - [anon_sym_STAR] = ACTIONS(2422), - [anon_sym_AT] = ACTIONS(2422), - [anon_sym_QMARK] = ACTIONS(2422), - [anon_sym_0] = ACTIONS(2428), - [anon_sym__] = ACTIONS(2428), - }, - [613] = { - [aux_sym_concatenation_repeat1] = STATE(1205), - [sym_file_descriptor] = ACTIONS(772), - [sym__concat] = ACTIONS(2416), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_SEMI_SEMI] = ACTIONS(2430), - [anon_sym_PIPE_AMP] = ACTIONS(2430), - [anon_sym_AMP_AMP] = ACTIONS(2430), - [anon_sym_PIPE_PIPE] = ACTIONS(2430), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_GT] = ACTIONS(2430), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_AMP_GT] = ACTIONS(2430), - [anon_sym_AMP_GT_GT] = ACTIONS(2430), - [anon_sym_LT_AMP] = ACTIONS(2430), - [anon_sym_GT_AMP] = ACTIONS(2430), - [anon_sym_LT_LT] = ACTIONS(2430), - [anon_sym_LT_LT_DASH] = ACTIONS(2430), - [anon_sym_LT_LT_LT] = ACTIONS(2430), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2430), - [anon_sym_LF] = ACTIONS(2430), - [anon_sym_AMP] = ACTIONS(2430), - }, - [614] = { - [sym_subscript] = STATE(1215), - [sym_variable_name] = ACTIONS(2432), - [anon_sym_DOLLAR] = ACTIONS(2434), - [anon_sym_POUND] = ACTIONS(2436), - [anon_sym_DASH] = ACTIONS(2434), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2438), - [anon_sym_STAR] = ACTIONS(2434), - [anon_sym_AT] = ACTIONS(2434), - [anon_sym_QMARK] = ACTIONS(2434), - [anon_sym_0] = ACTIONS(2440), - [anon_sym__] = ACTIONS(2440), - }, - [615] = { - [sym_for_statement] = STATE(1216), - [sym_while_statement] = STATE(1216), - [sym_if_statement] = STATE(1216), - [sym_case_statement] = STATE(1216), - [sym_function_definition] = STATE(1216), - [sym_subshell] = STATE(1216), - [sym_pipeline] = STATE(1216), - [sym_list] = STATE(1216), - [sym_command] = STATE(1216), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1216), - [sym_variable_assignment] = STATE(1217), - [sym_declaration_command] = STATE(1216), - [sym_unset_command] = STATE(1216), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [616] = { - [sym_for_statement] = STATE(1218), - [sym_while_statement] = STATE(1218), - [sym_if_statement] = STATE(1218), - [sym_case_statement] = STATE(1218), - [sym_function_definition] = STATE(1218), - [sym_subshell] = STATE(1218), - [sym_pipeline] = STATE(1218), - [sym_list] = STATE(1218), - [sym_command] = STATE(1218), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1218), - [sym_variable_assignment] = STATE(1219), - [sym_declaration_command] = STATE(1218), - [sym_unset_command] = STATE(1218), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [617] = { - [sym_for_statement] = STATE(1220), - [sym_while_statement] = STATE(1220), - [sym_if_statement] = STATE(1220), - [sym_case_statement] = STATE(1220), - [sym_function_definition] = STATE(1220), - [sym_subshell] = STATE(1220), - [sym_pipeline] = STATE(1220), - [sym_list] = STATE(1220), - [sym_command] = STATE(1220), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1220), - [sym_variable_assignment] = STATE(1221), - [sym_declaration_command] = STATE(1220), - [sym_unset_command] = STATE(1220), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [618] = { - [sym_file_descriptor] = ACTIONS(772), - [anon_sym_esac] = ACTIONS(2430), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_RPAREN] = ACTIONS(2430), - [anon_sym_SEMI_SEMI] = ACTIONS(2430), - [anon_sym_PIPE_AMP] = ACTIONS(2430), - [anon_sym_AMP_AMP] = ACTIONS(2430), - [anon_sym_PIPE_PIPE] = ACTIONS(2430), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_GT] = ACTIONS(2430), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_AMP_GT] = ACTIONS(2430), - [anon_sym_AMP_GT_GT] = ACTIONS(2430), - [anon_sym_LT_AMP] = ACTIONS(2430), - [anon_sym_GT_AMP] = ACTIONS(2430), - [anon_sym_LT_LT] = ACTIONS(2430), - [anon_sym_LT_LT_DASH] = ACTIONS(2430), - [anon_sym_LT_LT_LT] = ACTIONS(2430), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2430), - [anon_sym_LF] = ACTIONS(2430), - [anon_sym_AMP] = ACTIONS(2430), - }, - [619] = { - [sym_file_descriptor] = ACTIONS(2442), - [anon_sym_esac] = ACTIONS(2444), - [anon_sym_PIPE] = ACTIONS(2444), - [anon_sym_RPAREN] = ACTIONS(2444), - [anon_sym_SEMI_SEMI] = ACTIONS(2444), - [anon_sym_PIPE_AMP] = ACTIONS(2444), - [anon_sym_AMP_AMP] = ACTIONS(2444), - [anon_sym_PIPE_PIPE] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2444), - [anon_sym_GT] = ACTIONS(2444), - [anon_sym_GT_GT] = ACTIONS(2444), - [anon_sym_AMP_GT] = ACTIONS(2444), - [anon_sym_AMP_GT_GT] = ACTIONS(2444), - [anon_sym_LT_AMP] = ACTIONS(2444), - [anon_sym_GT_AMP] = ACTIONS(2444), - [anon_sym_LT_LT] = ACTIONS(2444), - [anon_sym_LT_LT_DASH] = ACTIONS(2444), - [anon_sym_LT_LT_LT] = ACTIONS(2444), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2444), - [anon_sym_LF] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2444), - }, - [620] = { - [sym_simple_expansion] = STATE(1222), - [sym_expansion] = STATE(1222), - [aux_sym_heredoc_repeat1] = STATE(1226), - [sym__heredoc_middle] = ACTIONS(2446), - [sym__heredoc_end] = ACTIONS(2448), - [anon_sym_DOLLAR] = ACTIONS(2450), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2452), - [sym_comment] = ACTIONS(56), - }, - [621] = { - [sym_file_descriptor] = ACTIONS(2454), - [anon_sym_esac] = ACTIONS(2456), - [anon_sym_PIPE] = ACTIONS(2456), - [anon_sym_RPAREN] = ACTIONS(2456), - [anon_sym_SEMI_SEMI] = ACTIONS(2456), - [anon_sym_PIPE_AMP] = ACTIONS(2456), - [anon_sym_AMP_AMP] = ACTIONS(2456), - [anon_sym_PIPE_PIPE] = ACTIONS(2456), - [anon_sym_LT] = ACTIONS(2456), - [anon_sym_GT] = ACTIONS(2456), - [anon_sym_GT_GT] = ACTIONS(2456), - [anon_sym_AMP_GT] = ACTIONS(2456), - [anon_sym_AMP_GT_GT] = ACTIONS(2456), - [anon_sym_LT_AMP] = ACTIONS(2456), - [anon_sym_GT_AMP] = ACTIONS(2456), - [anon_sym_LT_LT] = ACTIONS(2456), - [anon_sym_LT_LT_DASH] = ACTIONS(2456), - [anon_sym_LT_LT_LT] = ACTIONS(2456), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2456), - [anon_sym_LF] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2456), - }, - [622] = { - [aux_sym_concatenation_repeat1] = STATE(1205), - [sym_file_descriptor] = ACTIONS(2458), - [sym__concat] = ACTIONS(2416), - [anon_sym_PIPE] = ACTIONS(2460), - [anon_sym_SEMI_SEMI] = ACTIONS(2460), - [anon_sym_PIPE_AMP] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2460), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_LT] = ACTIONS(2460), - [anon_sym_GT] = ACTIONS(2460), - [anon_sym_GT_GT] = ACTIONS(2460), - [anon_sym_AMP_GT] = ACTIONS(2460), - [anon_sym_AMP_GT_GT] = ACTIONS(2460), - [anon_sym_LT_AMP] = ACTIONS(2460), - [anon_sym_GT_AMP] = ACTIONS(2460), - [anon_sym_LT_LT] = ACTIONS(2460), - [anon_sym_LT_LT_DASH] = ACTIONS(2460), - [anon_sym_LT_LT_LT] = ACTIONS(2460), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_LF] = ACTIONS(2460), - [anon_sym_AMP] = ACTIONS(2460), - }, - [623] = { - [aux_sym_concatenation_repeat1] = STATE(1205), - [sym_file_descriptor] = ACTIONS(2462), - [sym__concat] = ACTIONS(2416), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_SEMI_SEMI] = ACTIONS(2464), - [anon_sym_PIPE_AMP] = ACTIONS(2464), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_LT] = ACTIONS(2464), - [anon_sym_GT] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_AMP_GT] = ACTIONS(2464), - [anon_sym_AMP_GT_GT] = ACTIONS(2464), - [anon_sym_LT_AMP] = ACTIONS(2464), - [anon_sym_GT_AMP] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_LT_LT_DASH] = ACTIONS(2464), - [anon_sym_LT_LT_LT] = ACTIONS(2464), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_LF] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2464), - }, - [624] = { - [sym_file_descriptor] = ACTIONS(2462), - [anon_sym_esac] = ACTIONS(2464), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_RPAREN] = ACTIONS(2464), - [anon_sym_SEMI_SEMI] = ACTIONS(2464), - [anon_sym_PIPE_AMP] = ACTIONS(2464), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_LT] = ACTIONS(2464), - [anon_sym_GT] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_AMP_GT] = ACTIONS(2464), - [anon_sym_AMP_GT_GT] = ACTIONS(2464), - [anon_sym_LT_AMP] = ACTIONS(2464), - [anon_sym_GT_AMP] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_LT_LT_DASH] = ACTIONS(2464), - [anon_sym_LT_LT_LT] = ACTIONS(2464), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_LF] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2464), - }, - [625] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(625), - [sym_file_descriptor] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2469), - [anon_sym_SEMI_SEMI] = ACTIONS(2469), - [anon_sym_PIPE_AMP] = ACTIONS(2469), - [anon_sym_AMP_AMP] = ACTIONS(2469), - [anon_sym_PIPE_PIPE] = ACTIONS(2469), - [anon_sym_LT] = ACTIONS(2471), - [anon_sym_GT] = ACTIONS(2471), - [anon_sym_GT_GT] = ACTIONS(2471), - [anon_sym_AMP_GT] = ACTIONS(2471), - [anon_sym_AMP_GT_GT] = ACTIONS(2471), - [anon_sym_LT_AMP] = ACTIONS(2471), - [anon_sym_GT_AMP] = ACTIONS(2471), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_LT_LT_DASH] = ACTIONS(2474), - [anon_sym_LT_LT_LT] = ACTIONS(2477), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2469), - [anon_sym_LF] = ACTIONS(2469), - [anon_sym_AMP] = ACTIONS(2469), - }, - [626] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(625), - [sym_file_descriptor] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(2480), - [anon_sym_SEMI_SEMI] = ACTIONS(2480), - [anon_sym_PIPE_AMP] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_PIPE_PIPE] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(358), - [anon_sym_GT] = ACTIONS(358), - [anon_sym_GT_GT] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(358), - [anon_sym_AMP_GT_GT] = ACTIONS(358), - [anon_sym_LT_AMP] = ACTIONS(358), - [anon_sym_GT_AMP] = ACTIONS(358), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(362), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_LF] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2480), - }, - [627] = { - [sym_concatenation] = STATE(208), - [sym_string] = STATE(206), - [sym_simple_expansion] = STATE(206), - [sym_string_expansion] = STATE(206), - [sym_expansion] = STATE(206), - [sym_command_substitution] = STATE(206), - [sym_process_substitution] = STATE(206), - [aux_sym_command_repeat2] = STATE(627), - [sym_file_descriptor] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1565), - [anon_sym_SEMI_SEMI] = ACTIONS(1565), - [anon_sym_PIPE_AMP] = ACTIONS(1565), - [anon_sym_AMP_AMP] = ACTIONS(1565), - [anon_sym_PIPE_PIPE] = ACTIONS(1565), - [anon_sym_EQ_TILDE] = ACTIONS(2482), - [anon_sym_EQ_EQ] = ACTIONS(2482), - [anon_sym_LT] = ACTIONS(1565), - [anon_sym_GT] = ACTIONS(1565), - [anon_sym_GT_GT] = ACTIONS(1565), - [anon_sym_AMP_GT] = ACTIONS(1565), - [anon_sym_AMP_GT_GT] = ACTIONS(1565), - [anon_sym_LT_AMP] = ACTIONS(1565), - [anon_sym_GT_AMP] = ACTIONS(1565), - [anon_sym_LT_LT] = ACTIONS(1565), - [anon_sym_LT_LT_DASH] = ACTIONS(1565), - [anon_sym_LT_LT_LT] = ACTIONS(1565), - [sym__special_characters] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2488), - [anon_sym_DOLLAR] = ACTIONS(2491), - [sym_raw_string] = ACTIONS(2494), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2497), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2500), - [anon_sym_BQUOTE] = ACTIONS(2503), - [anon_sym_LT_LPAREN] = ACTIONS(2506), - [anon_sym_GT_LPAREN] = ACTIONS(2506), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2494), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_LF] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - }, - [628] = { - [sym_concatenation] = STATE(995), - [sym_string] = STATE(1228), - [sym_array] = STATE(995), - [sym_simple_expansion] = STATE(1228), - [sym_string_expansion] = STATE(1228), - [sym_expansion] = STATE(1228), - [sym_command_substitution] = STATE(1228), - [sym_process_substitution] = STATE(1228), - [sym__empty_value] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2042), - [sym__special_characters] = ACTIONS(2509), - [anon_sym_DQUOTE] = ACTIONS(208), - [anon_sym_DOLLAR] = ACTIONS(210), - [sym_raw_string] = ACTIONS(2511), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), - [anon_sym_BQUOTE] = ACTIONS(218), - [anon_sym_LT_LPAREN] = ACTIONS(220), - [anon_sym_GT_LPAREN] = ACTIONS(220), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2513), - }, - [629] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [sym_concatenation] = STATE(208), - [sym_string] = STATE(206), - [sym_simple_expansion] = STATE(206), - [sym_string_expansion] = STATE(206), - [sym_expansion] = STATE(206), - [sym_command_substitution] = STATE(206), - [sym_process_substitution] = STATE(206), - [aux_sym_while_statement_repeat1] = STATE(1229), - [aux_sym_command_repeat2] = STATE(627), - [sym_file_descriptor] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(2480), - [anon_sym_SEMI_SEMI] = ACTIONS(2480), - [anon_sym_PIPE_AMP] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_PIPE_PIPE] = ACTIONS(2480), - [anon_sym_EQ_TILDE] = ACTIONS(356), - [anon_sym_EQ_EQ] = ACTIONS(356), - [anon_sym_LT] = ACTIONS(358), - [anon_sym_GT] = ACTIONS(358), - [anon_sym_GT_GT] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(358), - [anon_sym_AMP_GT_GT] = ACTIONS(358), - [anon_sym_LT_AMP] = ACTIONS(358), - [anon_sym_GT_AMP] = ACTIONS(358), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(362), - [sym__special_characters] = ACTIONS(364), - [anon_sym_DQUOTE] = ACTIONS(366), - [anon_sym_DOLLAR] = ACTIONS(368), - [sym_raw_string] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_LT_LPAREN] = ACTIONS(378), - [anon_sym_GT_LPAREN] = ACTIONS(378), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_LF] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2480), - }, - [630] = { - [sym_string] = STATE(1231), - [sym_simple_expansion] = STATE(1231), - [sym_string_expansion] = STATE(1231), - [sym_expansion] = STATE(1231), - [sym_command_substitution] = STATE(1231), - [sym_process_substitution] = STATE(1231), - [anon_sym_RBRACK] = ACTIONS(2515), - [sym__special_characters] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_raw_string] = ACTIONS(2519), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), - [anon_sym_BQUOTE] = ACTIONS(412), - [anon_sym_LT_LPAREN] = ACTIONS(414), - [anon_sym_GT_LPAREN] = ACTIONS(414), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2521), - }, - [631] = { - [sym__concat] = ACTIONS(2523), - [anon_sym_EQ] = ACTIONS(2525), - [anon_sym_PLUS_EQ] = ACTIONS(2525), - [sym_comment] = ACTIONS(56), - }, - [632] = { - [aux_sym_concatenation_repeat1] = STATE(1234), - [sym__concat] = ACTIONS(2527), - [anon_sym_RBRACK] = ACTIONS(790), - [sym_comment] = ACTIONS(56), - }, - [633] = { - [sym__concat] = ACTIONS(794), - [anon_sym_RBRACK] = ACTIONS(794), - [sym_comment] = ACTIONS(56), - }, - [634] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(2529), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [635] = { - [sym__concat] = ACTIONS(826), - [anon_sym_RBRACK] = ACTIONS(826), - [sym_comment] = ACTIONS(56), - }, - [636] = { - [sym__concat] = ACTIONS(830), - [anon_sym_RBRACK] = ACTIONS(830), - [sym_comment] = ACTIONS(56), - }, - [637] = { - [sym__concat] = ACTIONS(834), - [anon_sym_RBRACK] = ACTIONS(834), - [sym_comment] = ACTIONS(56), - }, - [638] = { - [sym_string] = STATE(1231), - [sym_simple_expansion] = STATE(1231), - [sym_string_expansion] = STATE(1231), - [sym_expansion] = STATE(1231), - [sym_command_substitution] = STATE(1231), - [sym_process_substitution] = STATE(1231), - [anon_sym_RBRACK] = ACTIONS(2531), - [sym__special_characters] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_raw_string] = ACTIONS(2519), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), - [anon_sym_BQUOTE] = ACTIONS(412), - [anon_sym_LT_LPAREN] = ACTIONS(414), - [anon_sym_GT_LPAREN] = ACTIONS(414), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2521), - }, - [639] = { - [sym__concat] = ACTIONS(2533), - [anon_sym_EQ] = ACTIONS(2535), - [anon_sym_PLUS_EQ] = ACTIONS(2535), - [sym_comment] = ACTIONS(56), - }, - [640] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(2537), - [sym_comment] = ACTIONS(56), - }, - [641] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1241), - [anon_sym_RBRACE] = ACTIONS(2539), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2541), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [642] = { - [sym_subscript] = STATE(1245), - [sym_variable_name] = ACTIONS(2543), - [anon_sym_DOLLAR] = ACTIONS(2545), - [anon_sym_DASH] = ACTIONS(2545), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2547), - [anon_sym_STAR] = ACTIONS(2545), - [anon_sym_AT] = ACTIONS(2545), - [anon_sym_QMARK] = ACTIONS(2545), - [anon_sym_0] = ACTIONS(2549), - [anon_sym__] = ACTIONS(2549), - }, - [643] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1248), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2553), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [644] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1251), - [anon_sym_RBRACE] = ACTIONS(2555), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2557), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [645] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2559), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [646] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2559), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [647] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(2559), - [sym_comment] = ACTIONS(56), - }, - [648] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(2559), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [649] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2561), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [650] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2561), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [651] = { - [anon_sym_RBRACK] = ACTIONS(2531), - [sym_comment] = ACTIONS(56), - }, - [652] = { - [sym_file_descriptor] = ACTIONS(2563), - [sym_variable_name] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_RPAREN] = ACTIONS(2565), - [anon_sym_SEMI_SEMI] = ACTIONS(2565), - [anon_sym_PIPE_AMP] = ACTIONS(2565), - [anon_sym_AMP_AMP] = ACTIONS(2565), - [anon_sym_PIPE_PIPE] = ACTIONS(2565), - [anon_sym_LT] = ACTIONS(2565), - [anon_sym_GT] = ACTIONS(2565), - [anon_sym_GT_GT] = ACTIONS(2565), - [anon_sym_AMP_GT] = ACTIONS(2565), - [anon_sym_AMP_GT_GT] = ACTIONS(2565), - [anon_sym_LT_AMP] = ACTIONS(2565), - [anon_sym_GT_AMP] = ACTIONS(2565), - [sym__special_characters] = ACTIONS(2565), - [anon_sym_DQUOTE] = ACTIONS(2565), - [anon_sym_DOLLAR] = ACTIONS(2565), - [sym_raw_string] = ACTIONS(2565), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2565), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2565), - [anon_sym_BQUOTE] = ACTIONS(2565), - [anon_sym_LT_LPAREN] = ACTIONS(2565), - [anon_sym_GT_LPAREN] = ACTIONS(2565), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2565), - [anon_sym_SEMI] = ACTIONS(2565), - [anon_sym_LF] = ACTIONS(2565), - [anon_sym_AMP] = ACTIONS(2565), - }, - [653] = { - [aux_sym_concatenation_repeat1] = STATE(1255), - [sym__concat] = ACTIONS(2567), - [anon_sym_RPAREN] = ACTIONS(2569), - [sym__special_characters] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR] = ACTIONS(2571), - [sym_raw_string] = ACTIONS(2569), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2569), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2569), - [anon_sym_BQUOTE] = ACTIONS(2569), - [anon_sym_LT_LPAREN] = ACTIONS(2569), - [anon_sym_GT_LPAREN] = ACTIONS(2569), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2571), - }, - [654] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1257), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [655] = { - [sym_string] = STATE(1259), - [anon_sym_DQUOTE] = ACTIONS(1287), - [anon_sym_DOLLAR] = ACTIONS(2575), - [sym_raw_string] = ACTIONS(2577), - [anon_sym_POUND] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2579), - [anon_sym_STAR] = ACTIONS(2575), - [anon_sym_AT] = ACTIONS(2575), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_0] = ACTIONS(2581), - [anon_sym__] = ACTIONS(2581), - }, - [656] = { - [aux_sym_concatenation_repeat1] = STATE(1255), - [sym__concat] = ACTIONS(2567), - [anon_sym_RPAREN] = ACTIONS(2583), - [sym__special_characters] = ACTIONS(2585), - [anon_sym_DQUOTE] = ACTIONS(2583), - [anon_sym_DOLLAR] = ACTIONS(2585), - [sym_raw_string] = ACTIONS(2583), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2583), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2583), - [anon_sym_BQUOTE] = ACTIONS(2583), - [anon_sym_LT_LPAREN] = ACTIONS(2583), - [anon_sym_GT_LPAREN] = ACTIONS(2583), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2585), - }, - [657] = { - [sym_subscript] = STATE(1265), - [sym_variable_name] = ACTIONS(2587), - [anon_sym_DOLLAR] = ACTIONS(2589), - [anon_sym_POUND] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2589), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2593), - [anon_sym_STAR] = ACTIONS(2589), - [anon_sym_AT] = ACTIONS(2589), - [anon_sym_QMARK] = ACTIONS(2589), - [anon_sym_0] = ACTIONS(2595), - [anon_sym__] = ACTIONS(2595), - }, - [658] = { - [sym_for_statement] = STATE(1266), - [sym_while_statement] = STATE(1266), - [sym_if_statement] = STATE(1266), - [sym_case_statement] = STATE(1266), - [sym_function_definition] = STATE(1266), - [sym_subshell] = STATE(1266), - [sym_pipeline] = STATE(1266), - [sym_list] = STATE(1266), - [sym_command] = STATE(1266), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1266), - [sym_variable_assignment] = STATE(1267), - [sym_declaration_command] = STATE(1266), - [sym_unset_command] = STATE(1266), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [659] = { - [sym_for_statement] = STATE(1268), - [sym_while_statement] = STATE(1268), - [sym_if_statement] = STATE(1268), - [sym_case_statement] = STATE(1268), - [sym_function_definition] = STATE(1268), - [sym_subshell] = STATE(1268), - [sym_pipeline] = STATE(1268), - [sym_list] = STATE(1268), - [sym_command] = STATE(1268), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1268), - [sym_variable_assignment] = STATE(1269), - [sym_declaration_command] = STATE(1268), - [sym_unset_command] = STATE(1268), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [660] = { - [sym_for_statement] = STATE(1270), - [sym_while_statement] = STATE(1270), - [sym_if_statement] = STATE(1270), - [sym_case_statement] = STATE(1270), - [sym_function_definition] = STATE(1270), - [sym_subshell] = STATE(1270), - [sym_pipeline] = STATE(1270), - [sym_list] = STATE(1270), - [sym_command] = STATE(1270), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1270), - [sym_variable_assignment] = STATE(1271), - [sym_declaration_command] = STATE(1270), - [sym_unset_command] = STATE(1270), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [661] = { - [anon_sym_RPAREN] = ACTIONS(2583), - [sym__special_characters] = ACTIONS(2585), - [anon_sym_DQUOTE] = ACTIONS(2583), - [anon_sym_DOLLAR] = ACTIONS(2585), - [sym_raw_string] = ACTIONS(2583), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2583), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2583), - [anon_sym_BQUOTE] = ACTIONS(2583), - [anon_sym_LT_LPAREN] = ACTIONS(2583), - [anon_sym_GT_LPAREN] = ACTIONS(2583), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2585), - }, - [662] = { - [sym_concatenation] = STATE(661), - [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), - [aux_sym_for_statement_repeat1] = STATE(1273), - [anon_sym_RPAREN] = ACTIONS(2597), - [sym__special_characters] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1287), - [anon_sym_DOLLAR] = ACTIONS(1289), - [sym_raw_string] = ACTIONS(1291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), - [anon_sym_BQUOTE] = ACTIONS(1297), - [anon_sym_LT_LPAREN] = ACTIONS(1299), - [anon_sym_GT_LPAREN] = ACTIONS(1299), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1301), - }, - [663] = { - [sym_string] = STATE(1274), - [sym_simple_expansion] = STATE(1274), - [sym_string_expansion] = STATE(1274), - [sym_expansion] = STATE(1274), - [sym_command_substitution] = STATE(1274), - [sym_process_substitution] = STATE(1274), - [sym__special_characters] = ACTIONS(2599), - [anon_sym_DQUOTE] = ACTIONS(424), - [anon_sym_DOLLAR] = ACTIONS(426), - [sym_raw_string] = ACTIONS(2601), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(430), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(432), - [anon_sym_BQUOTE] = ACTIONS(434), - [anon_sym_LT_LPAREN] = ACTIONS(436), - [anon_sym_GT_LPAREN] = ACTIONS(436), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2599), - }, - [664] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym_file_descriptor] = ACTIONS(790), - [sym__concat] = ACTIONS(1305), - [sym_variable_name] = ACTIONS(790), - [anon_sym_PIPE] = ACTIONS(792), - [anon_sym_SEMI_SEMI] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [anon_sym_LT] = ACTIONS(792), - [anon_sym_GT] = ACTIONS(792), - [anon_sym_GT_GT] = ACTIONS(792), - [anon_sym_AMP_GT] = ACTIONS(792), - [anon_sym_AMP_GT_GT] = ACTIONS(792), - [anon_sym_LT_AMP] = ACTIONS(792), - [anon_sym_GT_AMP] = ACTIONS(792), - [sym__special_characters] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(792), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(792), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LF] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(792), - }, - [665] = { - [sym_file_descriptor] = ACTIONS(794), - [sym__concat] = ACTIONS(794), - [sym_variable_name] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_SEMI_SEMI] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_GT] = ACTIONS(796), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_AMP_GT] = ACTIONS(796), - [anon_sym_AMP_GT_GT] = ACTIONS(796), - [anon_sym_LT_AMP] = ACTIONS(796), - [anon_sym_GT_AMP] = ACTIONS(796), - [sym__special_characters] = ACTIONS(796), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(796), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(796), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_LF] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - }, - [666] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(2603), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [667] = { - [sym_file_descriptor] = ACTIONS(826), - [sym__concat] = ACTIONS(826), - [sym_variable_name] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_SEMI_SEMI] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(828), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(828), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(828), - }, - [668] = { - [sym_file_descriptor] = ACTIONS(830), - [sym__concat] = ACTIONS(830), - [sym_variable_name] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_GT] = ACTIONS(832), - [anon_sym_GT_GT] = ACTIONS(832), - [anon_sym_AMP_GT] = ACTIONS(832), - [anon_sym_AMP_GT_GT] = ACTIONS(832), - [anon_sym_LT_AMP] = ACTIONS(832), - [anon_sym_GT_AMP] = ACTIONS(832), - [sym__special_characters] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(832), - [anon_sym_AMP] = ACTIONS(832), - }, - [669] = { - [sym_file_descriptor] = ACTIONS(834), - [sym__concat] = ACTIONS(834), - [sym_variable_name] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_SEMI_SEMI] = ACTIONS(836), - [anon_sym_PIPE_AMP] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_AMP_GT] = ACTIONS(836), - [anon_sym_AMP_GT_GT] = ACTIONS(836), - [anon_sym_LT_AMP] = ACTIONS(836), - [anon_sym_GT_AMP] = ACTIONS(836), - [sym__special_characters] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [sym_raw_string] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), - [anon_sym_BQUOTE] = ACTIONS(836), - [anon_sym_LT_LPAREN] = ACTIONS(836), - [anon_sym_GT_LPAREN] = ACTIONS(836), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(836), - }, - [670] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(2605), - [sym_comment] = ACTIONS(56), - }, - [671] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1280), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2609), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [672] = { - [sym_subscript] = STATE(1284), - [sym_variable_name] = ACTIONS(2611), - [anon_sym_DOLLAR] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2615), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2613), - [anon_sym_QMARK] = ACTIONS(2613), - [anon_sym_0] = ACTIONS(2617), - [anon_sym__] = ACTIONS(2617), - }, - [673] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1287), - [anon_sym_RBRACE] = ACTIONS(2619), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2621), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [674] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1290), - [anon_sym_RBRACE] = ACTIONS(2623), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2625), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [675] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [676] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [677] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(2627), - [sym_comment] = ACTIONS(56), - }, - [678] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(2627), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [679] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2629), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [680] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2629), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [681] = { - [aux_sym_concatenation_repeat1] = STATE(1294), - [sym__concat] = ACTIONS(2631), - [anon_sym_SEMI_SEMI] = ACTIONS(2633), - [sym__special_characters] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [anon_sym_DOLLAR] = ACTIONS(2633), - [sym_raw_string] = ACTIONS(2633), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2633), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2633), - [anon_sym_BQUOTE] = ACTIONS(2633), - [anon_sym_LT_LPAREN] = ACTIONS(2633), - [anon_sym_GT_LPAREN] = ACTIONS(2633), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2633), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_LF] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - }, - [682] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1296), - [anon_sym_DQUOTE] = ACTIONS(2635), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [683] = { - [sym_string] = STATE(1298), - [anon_sym_DQUOTE] = ACTIONS(1331), - [anon_sym_DOLLAR] = ACTIONS(2637), - [sym_raw_string] = ACTIONS(2639), - [anon_sym_POUND] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2637), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_AT] = ACTIONS(2637), - [anon_sym_QMARK] = ACTIONS(2637), - [anon_sym_0] = ACTIONS(2643), - [anon_sym__] = ACTIONS(2643), - }, - [684] = { - [aux_sym_concatenation_repeat1] = STATE(1294), - [sym__concat] = ACTIONS(2631), - [anon_sym_SEMI_SEMI] = ACTIONS(2645), - [sym__special_characters] = ACTIONS(2645), - [anon_sym_DQUOTE] = ACTIONS(2645), - [anon_sym_DOLLAR] = ACTIONS(2645), - [sym_raw_string] = ACTIONS(2645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2645), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2645), - [anon_sym_BQUOTE] = ACTIONS(2645), - [anon_sym_LT_LPAREN] = ACTIONS(2645), - [anon_sym_GT_LPAREN] = ACTIONS(2645), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2645), - [anon_sym_SEMI] = ACTIONS(2645), - [anon_sym_LF] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2645), - }, - [685] = { - [sym_subscript] = STATE(1304), - [sym_variable_name] = ACTIONS(2647), - [anon_sym_DOLLAR] = ACTIONS(2649), - [anon_sym_POUND] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2649), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_AT] = ACTIONS(2649), - [anon_sym_QMARK] = ACTIONS(2649), - [anon_sym_0] = ACTIONS(2655), - [anon_sym__] = ACTIONS(2655), - }, - [686] = { - [sym_for_statement] = STATE(1305), - [sym_while_statement] = STATE(1305), - [sym_if_statement] = STATE(1305), - [sym_case_statement] = STATE(1305), - [sym_function_definition] = STATE(1305), - [sym_subshell] = STATE(1305), - [sym_pipeline] = STATE(1305), - [sym_list] = STATE(1305), - [sym_command] = STATE(1305), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1305), - [sym_variable_assignment] = STATE(1306), - [sym_declaration_command] = STATE(1305), - [sym_unset_command] = STATE(1305), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [687] = { - [sym_for_statement] = STATE(1307), - [sym_while_statement] = STATE(1307), - [sym_if_statement] = STATE(1307), - [sym_case_statement] = STATE(1307), - [sym_function_definition] = STATE(1307), - [sym_subshell] = STATE(1307), - [sym_pipeline] = STATE(1307), - [sym_list] = STATE(1307), - [sym_command] = STATE(1307), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1307), - [sym_variable_assignment] = STATE(1308), - [sym_declaration_command] = STATE(1307), - [sym_unset_command] = STATE(1307), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [688] = { - [sym_for_statement] = STATE(1309), - [sym_while_statement] = STATE(1309), - [sym_if_statement] = STATE(1309), - [sym_case_statement] = STATE(1309), - [sym_function_definition] = STATE(1309), - [sym_subshell] = STATE(1309), - [sym_pipeline] = STATE(1309), - [sym_list] = STATE(1309), - [sym_command] = STATE(1309), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1309), - [sym_variable_assignment] = STATE(1310), - [sym_declaration_command] = STATE(1309), - [sym_unset_command] = STATE(1309), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [689] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2645), - [sym__special_characters] = ACTIONS(2645), - [anon_sym_DQUOTE] = ACTIONS(2645), - [anon_sym_DOLLAR] = ACTIONS(2645), - [sym_raw_string] = ACTIONS(2645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2645), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2645), - [anon_sym_BQUOTE] = ACTIONS(2645), - [anon_sym_LT_LPAREN] = ACTIONS(2645), - [anon_sym_GT_LPAREN] = ACTIONS(2645), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2645), - [anon_sym_SEMI] = ACTIONS(2645), - [anon_sym_LF] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2645), - }, - [690] = { - [sym_concatenation] = STATE(689), - [sym_string] = STATE(684), - [sym_simple_expansion] = STATE(684), - [sym_string_expansion] = STATE(684), - [sym_expansion] = STATE(684), - [sym_command_substitution] = STATE(684), - [sym_process_substitution] = STATE(684), - [aux_sym_for_statement_repeat1] = STATE(1312), - [anon_sym_SEMI_SEMI] = ACTIONS(2657), - [sym__special_characters] = ACTIONS(2659), - [anon_sym_DQUOTE] = ACTIONS(2661), - [anon_sym_DOLLAR] = ACTIONS(2663), - [sym_raw_string] = ACTIONS(2665), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2669), - [anon_sym_BQUOTE] = ACTIONS(2671), - [anon_sym_LT_LPAREN] = ACTIONS(2673), - [anon_sym_GT_LPAREN] = ACTIONS(2673), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2665), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym_LF] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2657), - }, - [691] = { - [sym__terminated_statement] = STATE(694), - [sym_for_statement] = STATE(695), - [sym_while_statement] = STATE(695), - [sym_if_statement] = STATE(695), - [sym_case_statement] = STATE(695), - [sym_function_definition] = STATE(695), - [sym_subshell] = STATE(695), - [sym_pipeline] = STATE(695), - [sym_list] = STATE(695), - [sym_command] = STATE(695), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(695), - [sym_variable_assignment] = STATE(696), - [sym_declaration_command] = STATE(695), - [sym_unset_command] = STATE(695), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1314), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(2675), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [692] = { - [anon_sym_esac] = ACTIONS(2677), - [anon_sym_PIPE] = ACTIONS(2677), - [anon_sym_RPAREN] = ACTIONS(2677), - [anon_sym_SEMI_SEMI] = ACTIONS(2677), - [anon_sym_PIPE_AMP] = ACTIONS(2677), - [anon_sym_AMP_AMP] = ACTIONS(2677), - [anon_sym_PIPE_PIPE] = ACTIONS(2677), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2677), - [anon_sym_LF] = ACTIONS(2677), - [anon_sym_AMP] = ACTIONS(2677), - }, - [693] = { - [sym_file_descriptor] = ACTIONS(2679), - [anon_sym_esac] = ACTIONS(2681), - [anon_sym_PIPE] = ACTIONS(2681), - [anon_sym_RPAREN] = ACTIONS(2681), - [anon_sym_SEMI_SEMI] = ACTIONS(2681), - [anon_sym_PIPE_AMP] = ACTIONS(2681), - [anon_sym_AMP_AMP] = ACTIONS(2681), - [anon_sym_PIPE_PIPE] = ACTIONS(2681), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_GT] = ACTIONS(2681), - [anon_sym_GT_GT] = ACTIONS(2681), - [anon_sym_AMP_GT] = ACTIONS(2681), - [anon_sym_AMP_GT_GT] = ACTIONS(2681), - [anon_sym_LT_AMP] = ACTIONS(2681), - [anon_sym_GT_AMP] = ACTIONS(2681), - [anon_sym_LT_LT] = ACTIONS(2681), - [anon_sym_LT_LT_DASH] = ACTIONS(2681), - [anon_sym_LT_LT_LT] = ACTIONS(2681), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym_LF] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2681), - }, - [694] = { - [sym_file_descriptor] = ACTIONS(340), - [sym_variable_name] = ACTIONS(340), - [anon_sym_for] = ACTIONS(342), - [anon_sym_while] = ACTIONS(342), - [anon_sym_done] = ACTIONS(342), - [anon_sym_if] = ACTIONS(342), - [anon_sym_case] = ACTIONS(342), - [anon_sym_function] = ACTIONS(342), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_LBRACK] = ACTIONS(342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(340), - [anon_sym_declare] = ACTIONS(342), - [anon_sym_typeset] = ACTIONS(342), - [anon_sym_export] = ACTIONS(342), - [anon_sym_readonly] = ACTIONS(342), - [anon_sym_local] = ACTIONS(342), - [anon_sym_unset] = ACTIONS(342), - [anon_sym_unsetenv] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(340), - [anon_sym_AMP_GT] = ACTIONS(342), - [anon_sym_AMP_GT_GT] = ACTIONS(340), - [anon_sym_LT_AMP] = ACTIONS(340), - [anon_sym_GT_AMP] = ACTIONS(340), - [sym__special_characters] = ACTIONS(344), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(342), - [sym_raw_string] = ACTIONS(340), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(340), - [anon_sym_BQUOTE] = ACTIONS(340), - [anon_sym_LT_LPAREN] = ACTIONS(340), - [anon_sym_GT_LPAREN] = ACTIONS(340), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(344), - }, - [695] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(2683), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2683), - [anon_sym_LF] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2683), - }, - [696] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(2683), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(2683), - [anon_sym_LF] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2683), - }, - [697] = { - [sym__terminated_statement] = STATE(694), - [sym_for_statement] = STATE(695), - [sym_while_statement] = STATE(695), - [sym_if_statement] = STATE(695), - [sym_case_statement] = STATE(695), - [sym_function_definition] = STATE(695), - [sym_subshell] = STATE(695), - [sym_pipeline] = STATE(695), - [sym_list] = STATE(695), - [sym_command] = STATE(695), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(695), - [sym_variable_assignment] = STATE(696), - [sym_declaration_command] = STATE(695), - [sym_unset_command] = STATE(695), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1317), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [698] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(625), - [sym_file_descriptor] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_SEMI_SEMI] = ACTIONS(2687), - [anon_sym_PIPE_AMP] = ACTIONS(2687), - [anon_sym_AMP_AMP] = ACTIONS(2687), - [anon_sym_PIPE_PIPE] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(358), - [anon_sym_GT] = ACTIONS(358), - [anon_sym_GT_GT] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(358), - [anon_sym_AMP_GT_GT] = ACTIONS(358), - [anon_sym_LT_AMP] = ACTIONS(358), - [anon_sym_GT_AMP] = ACTIONS(358), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(362), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_LF] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2687), - }, - [699] = { - [anon_sym_esac] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_RPAREN] = ACTIONS(2689), - [anon_sym_SEMI_SEMI] = ACTIONS(2689), - [anon_sym_PIPE_AMP] = ACTIONS(2689), - [anon_sym_AMP_AMP] = ACTIONS(2689), - [anon_sym_PIPE_PIPE] = ACTIONS(2689), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym_LF] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2689), - }, - [700] = { - [sym__terminated_statement] = STATE(1318), - [sym_for_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_function_definition] = STATE(40), - [sym_subshell] = STATE(40), - [sym_pipeline] = STATE(40), - [sym_list] = STATE(40), - [sym_command] = STATE(40), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(40), - [sym_variable_assignment] = STATE(41), - [sym_declaration_command] = STATE(40), - [sym_unset_command] = STATE(40), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [701] = { - [sym__terminated_statement] = STATE(1319), - [sym_for_statement] = STATE(1320), - [sym_while_statement] = STATE(1320), - [sym_if_statement] = STATE(1320), - [sym_case_statement] = STATE(1320), - [sym_function_definition] = STATE(1320), - [sym_subshell] = STATE(1320), - [sym_pipeline] = STATE(1320), - [sym_list] = STATE(1320), - [sym_command] = STATE(1320), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(1320), - [sym_variable_assignment] = STATE(1321), - [sym_declaration_command] = STATE(1320), - [sym_unset_command] = STATE(1320), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1322), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(2691), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [702] = { - [sym_file_descriptor] = ACTIONS(340), - [sym_variable_name] = ACTIONS(340), - [anon_sym_for] = ACTIONS(342), - [anon_sym_while] = ACTIONS(342), - [anon_sym_if] = ACTIONS(342), - [anon_sym_fi] = ACTIONS(342), - [anon_sym_elif] = ACTIONS(342), - [anon_sym_else] = ACTIONS(342), - [anon_sym_case] = ACTIONS(342), - [anon_sym_function] = ACTIONS(342), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_LBRACK] = ACTIONS(342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(340), - [anon_sym_declare] = ACTIONS(342), - [anon_sym_typeset] = ACTIONS(342), - [anon_sym_export] = ACTIONS(342), - [anon_sym_readonly] = ACTIONS(342), - [anon_sym_local] = ACTIONS(342), - [anon_sym_unset] = ACTIONS(342), - [anon_sym_unsetenv] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(340), - [anon_sym_AMP_GT] = ACTIONS(342), - [anon_sym_AMP_GT_GT] = ACTIONS(340), - [anon_sym_LT_AMP] = ACTIONS(340), - [anon_sym_GT_AMP] = ACTIONS(340), - [sym__special_characters] = ACTIONS(344), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(342), - [sym_raw_string] = ACTIONS(340), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(340), - [anon_sym_BQUOTE] = ACTIONS(340), - [anon_sym_LT_LPAREN] = ACTIONS(340), - [anon_sym_GT_LPAREN] = ACTIONS(340), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(344), - }, - [703] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(2693), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_LF] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - }, - [704] = { - [anon_sym_fi] = ACTIONS(2695), - [anon_sym_elif] = ACTIONS(2695), - [anon_sym_else] = ACTIONS(2695), - [sym_comment] = ACTIONS(56), - }, - [705] = { - [anon_sym_fi] = ACTIONS(2697), - [sym_comment] = ACTIONS(56), - }, - [706] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(2693), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_LF] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - }, - [707] = { - [sym__terminated_statement] = STATE(702), - [sym_for_statement] = STATE(703), - [sym_while_statement] = STATE(703), - [sym_if_statement] = STATE(703), - [sym_elif_clause] = STATE(704), - [sym_else_clause] = STATE(1325), - [sym_case_statement] = STATE(703), - [sym_function_definition] = STATE(703), - [sym_subshell] = STATE(703), - [sym_pipeline] = STATE(703), - [sym_list] = STATE(703), - [sym_command] = STATE(703), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(703), - [sym_variable_assignment] = STATE(706), - [sym_declaration_command] = STATE(703), - [sym_unset_command] = STATE(703), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1326), - [aux_sym_if_statement_repeat1] = STATE(1327), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(2699), - [anon_sym_elif] = ACTIONS(1355), - [anon_sym_else] = ACTIONS(1357), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [708] = { - [sym_elif_clause] = STATE(704), - [sym_else_clause] = STATE(1325), - [aux_sym_if_statement_repeat1] = STATE(1328), - [anon_sym_fi] = ACTIONS(2697), - [anon_sym_elif] = ACTIONS(2701), - [anon_sym_else] = ACTIONS(2703), - [sym_comment] = ACTIONS(56), - }, - [709] = { - [sym__concat] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [710] = { - [sym_case_item] = STATE(1338), - [sym_last_case_item] = STATE(1339), - [sym_concatenation] = STATE(1340), - [sym_string] = STATE(1333), - [sym_simple_expansion] = STATE(1333), - [sym_string_expansion] = STATE(1333), - [sym_expansion] = STATE(1333), - [sym_command_substitution] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_case_statement_repeat1] = STATE(1341), - [anon_sym_esac] = ACTIONS(2705), - [sym__special_characters] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2711), - [sym_raw_string] = ACTIONS(2713), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), - [anon_sym_BQUOTE] = ACTIONS(2719), - [anon_sym_LT_LPAREN] = ACTIONS(2721), - [anon_sym_GT_LPAREN] = ACTIONS(2721), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2723), - }, - [711] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2725), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2725), - [anon_sym_LF] = ACTIONS(2725), - [anon_sym_AMP] = ACTIONS(2725), - }, - [712] = { - [aux_sym_concatenation_repeat1] = STATE(712), - [sym__concat] = ACTIONS(2727), - [anon_sym_in] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [713] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_in] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1929), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - }, - [714] = { - [sym_case_item] = STATE(1338), - [sym_last_case_item] = STATE(1344), - [sym_concatenation] = STATE(1340), - [sym_string] = STATE(1333), - [sym_simple_expansion] = STATE(1333), - [sym_string_expansion] = STATE(1333), - [sym_expansion] = STATE(1333), - [sym_command_substitution] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_case_statement_repeat1] = STATE(1345), - [anon_sym_esac] = ACTIONS(2730), - [sym__special_characters] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2711), - [sym_raw_string] = ACTIONS(2713), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), - [anon_sym_BQUOTE] = ACTIONS(2719), - [anon_sym_LT_LPAREN] = ACTIONS(2721), - [anon_sym_GT_LPAREN] = ACTIONS(2721), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2723), - }, - [715] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2732), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_LF] = ACTIONS(2732), - [anon_sym_AMP] = ACTIONS(2732), - }, - [716] = { - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1349), - [sym_simple_expansion] = STATE(1349), - [sym_string_expansion] = STATE(1349), - [sym_expansion] = STATE(1349), - [sym_command_substitution] = STATE(1349), - [sym_process_substitution] = STATE(1349), - [anon_sym_RBRACE] = ACTIONS(2734), - [sym__special_characters] = ACTIONS(2736), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(2738), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2740), - }, - [717] = { - [sym__concat] = ACTIONS(1972), - [anon_sym_in] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1974), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_LF] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - }, - [718] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2742), - }, - [719] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(2744), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [720] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(2746), - [sym_comment] = ACTIONS(56), - }, - [721] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1356), - [anon_sym_RBRACE] = ACTIONS(2748), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2750), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [722] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1359), - [anon_sym_RBRACE] = ACTIONS(2752), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2754), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [723] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1361), - [anon_sym_RBRACE] = ACTIONS(2734), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2756), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [724] = { - [sym__concat] = ACTIONS(2026), - [anon_sym_in] = ACTIONS(2028), - [anon_sym_SEMI_SEMI] = ACTIONS(2028), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - }, - [725] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2758), - }, - [726] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(2760), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [727] = { - [sym__concat] = ACTIONS(2034), - [anon_sym_in] = ACTIONS(2036), - [anon_sym_SEMI_SEMI] = ACTIONS(2036), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_LF] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - }, - [728] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2762), - }, - [729] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(2734), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [730] = { - [sym__concat] = ACTIONS(2196), - [anon_sym_in] = ACTIONS(2198), - [anon_sym_SEMI_SEMI] = ACTIONS(2198), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - }, - [731] = { - [sym__concat] = ACTIONS(2402), - [anon_sym_in] = ACTIONS(2404), - [anon_sym_SEMI_SEMI] = ACTIONS(2404), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LF] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - }, - [732] = { - [sym_compound_statement] = STATE(1365), - [anon_sym_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(56), - }, - [733] = { - [sym_file_descriptor] = ACTIONS(2764), - [anon_sym_esac] = ACTIONS(2766), - [anon_sym_PIPE] = ACTIONS(2766), - [anon_sym_RPAREN] = ACTIONS(2766), - [anon_sym_SEMI_SEMI] = ACTIONS(2766), - [anon_sym_PIPE_AMP] = ACTIONS(2766), - [anon_sym_AMP_AMP] = ACTIONS(2766), - [anon_sym_PIPE_PIPE] = ACTIONS(2766), - [anon_sym_LT] = ACTIONS(2766), - [anon_sym_GT] = ACTIONS(2766), - [anon_sym_GT_GT] = ACTIONS(2766), - [anon_sym_AMP_GT] = ACTIONS(2766), - [anon_sym_AMP_GT_GT] = ACTIONS(2766), - [anon_sym_LT_AMP] = ACTIONS(2766), - [anon_sym_GT_AMP] = ACTIONS(2766), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2766), - [anon_sym_LF] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2766), - }, - [734] = { - [sym_file_descriptor] = ACTIONS(340), - [sym_variable_name] = ACTIONS(340), - [anon_sym_for] = ACTIONS(342), - [anon_sym_while] = ACTIONS(342), - [anon_sym_if] = ACTIONS(342), - [anon_sym_case] = ACTIONS(342), - [anon_sym_function] = ACTIONS(342), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_RBRACE] = ACTIONS(340), - [anon_sym_LBRACK] = ACTIONS(342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(340), - [anon_sym_declare] = ACTIONS(342), - [anon_sym_typeset] = ACTIONS(342), - [anon_sym_export] = ACTIONS(342), - [anon_sym_readonly] = ACTIONS(342), - [anon_sym_local] = ACTIONS(342), - [anon_sym_unset] = ACTIONS(342), - [anon_sym_unsetenv] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(340), - [anon_sym_AMP_GT] = ACTIONS(342), - [anon_sym_AMP_GT_GT] = ACTIONS(340), - [anon_sym_LT_AMP] = ACTIONS(340), - [anon_sym_GT_AMP] = ACTIONS(340), - [sym__special_characters] = ACTIONS(344), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(342), - [sym_raw_string] = ACTIONS(340), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(340), - [anon_sym_BQUOTE] = ACTIONS(340), - [anon_sym_LT_LPAREN] = ACTIONS(340), - [anon_sym_GT_LPAREN] = ACTIONS(340), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(344), - }, - [735] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(2768), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_LF] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - }, - [736] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(2768), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_LF] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - }, - [737] = { - [sym__terminated_statement] = STATE(734), - [sym_for_statement] = STATE(735), - [sym_while_statement] = STATE(735), - [sym_if_statement] = STATE(735), - [sym_case_statement] = STATE(735), - [sym_function_definition] = STATE(735), - [sym_subshell] = STATE(735), - [sym_pipeline] = STATE(735), - [sym_list] = STATE(735), - [sym_command] = STATE(735), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(735), - [sym_variable_assignment] = STATE(736), - [sym_declaration_command] = STATE(735), - [sym_unset_command] = STATE(735), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1368), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(2770), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [738] = { - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2774), - [anon_sym_AMP_GT] = ACTIONS(2772), - [anon_sym_AMP_GT_GT] = ACTIONS(2774), - [anon_sym_LT_AMP] = ACTIONS(2774), - [anon_sym_GT_AMP] = ACTIONS(2774), - [sym_comment] = ACTIONS(56), - }, - [739] = { - [sym_concatenation] = STATE(1378), - [sym_string] = STATE(1373), - [sym_simple_expansion] = STATE(1373), - [sym_string_expansion] = STATE(1373), - [sym_expansion] = STATE(1373), - [sym_command_substitution] = STATE(1373), - [sym_process_substitution] = STATE(1373), - [sym__special_characters] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2780), - [sym_raw_string] = ACTIONS(2782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2784), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2786), - [anon_sym_BQUOTE] = ACTIONS(2788), - [anon_sym_LT_LPAREN] = ACTIONS(2790), - [anon_sym_GT_LPAREN] = ACTIONS(2790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2792), - }, - [740] = { - [anon_sym_esac] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_RPAREN] = ACTIONS(2794), - [anon_sym_SEMI_SEMI] = ACTIONS(2794), - [anon_sym_PIPE_AMP] = ACTIONS(2794), - [anon_sym_AMP_AMP] = ACTIONS(2794), - [anon_sym_PIPE_PIPE] = ACTIONS(2794), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_LF] = ACTIONS(2794), - [anon_sym_AMP] = ACTIONS(2794), - }, - [741] = { - [aux_sym_concatenation_repeat1] = STATE(1380), - [sym_file_descriptor] = ACTIONS(1303), - [sym__concat] = ACTIONS(2796), - [sym_variable_name] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1307), - [anon_sym_RPAREN] = ACTIONS(1307), - [anon_sym_SEMI_SEMI] = ACTIONS(1307), - [anon_sym_PIPE_AMP] = ACTIONS(1307), - [anon_sym_AMP_AMP] = ACTIONS(1307), - [anon_sym_PIPE_PIPE] = ACTIONS(1307), - [anon_sym_LT] = ACTIONS(1307), - [anon_sym_GT] = ACTIONS(1307), - [anon_sym_GT_GT] = ACTIONS(1307), - [anon_sym_AMP_GT] = ACTIONS(1307), - [anon_sym_AMP_GT_GT] = ACTIONS(1307), - [anon_sym_LT_AMP] = ACTIONS(1307), - [anon_sym_GT_AMP] = ACTIONS(1307), - [sym__special_characters] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1307), - [sym_raw_string] = ACTIONS(1307), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1307), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1307), - [anon_sym_BQUOTE] = ACTIONS(1307), - [anon_sym_LT_LPAREN] = ACTIONS(1307), - [anon_sym_GT_LPAREN] = ACTIONS(1307), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1307), - [anon_sym_LF] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1307), - }, - [742] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1382), - [anon_sym_DQUOTE] = ACTIONS(2798), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [743] = { - [sym_string] = STATE(1384), - [anon_sym_DQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(2800), - [sym_raw_string] = ACTIONS(2802), - [anon_sym_POUND] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(2800), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(2800), - [anon_sym_AT] = ACTIONS(2800), - [anon_sym_QMARK] = ACTIONS(2800), - [anon_sym_0] = ACTIONS(2806), - [anon_sym__] = ACTIONS(2806), - }, - [744] = { - [aux_sym_concatenation_repeat1] = STATE(1380), - [sym_file_descriptor] = ACTIONS(1279), - [sym__concat] = ACTIONS(2796), - [sym_variable_name] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_RPAREN] = ACTIONS(1281), - [anon_sym_SEMI_SEMI] = ACTIONS(1281), - [anon_sym_PIPE_AMP] = ACTIONS(1281), - [anon_sym_AMP_AMP] = ACTIONS(1281), - [anon_sym_PIPE_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_GT_GT] = ACTIONS(1281), - [anon_sym_AMP_GT] = ACTIONS(1281), - [anon_sym_AMP_GT_GT] = ACTIONS(1281), - [anon_sym_LT_AMP] = ACTIONS(1281), - [anon_sym_GT_AMP] = ACTIONS(1281), - [sym__special_characters] = ACTIONS(1281), - [anon_sym_DQUOTE] = ACTIONS(1281), - [anon_sym_DOLLAR] = ACTIONS(1281), - [sym_raw_string] = ACTIONS(1281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), - [anon_sym_BQUOTE] = ACTIONS(1281), - [anon_sym_LT_LPAREN] = ACTIONS(1281), - [anon_sym_GT_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1281), - [anon_sym_SEMI] = ACTIONS(1281), - [anon_sym_LF] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - }, - [745] = { - [sym_subscript] = STATE(1390), - [sym_variable_name] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_POUND] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2810), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2810), - [anon_sym_AT] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_0] = ACTIONS(2816), - [anon_sym__] = ACTIONS(2816), - }, - [746] = { - [sym_for_statement] = STATE(1391), - [sym_while_statement] = STATE(1391), - [sym_if_statement] = STATE(1391), - [sym_case_statement] = STATE(1391), - [sym_function_definition] = STATE(1391), - [sym_subshell] = STATE(1391), - [sym_pipeline] = STATE(1391), - [sym_list] = STATE(1391), - [sym_command] = STATE(1391), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1391), - [sym_variable_assignment] = STATE(1392), - [sym_declaration_command] = STATE(1391), - [sym_unset_command] = STATE(1391), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [747] = { - [sym_for_statement] = STATE(1393), - [sym_while_statement] = STATE(1393), - [sym_if_statement] = STATE(1393), - [sym_case_statement] = STATE(1393), - [sym_function_definition] = STATE(1393), - [sym_subshell] = STATE(1393), - [sym_pipeline] = STATE(1393), - [sym_list] = STATE(1393), - [sym_command] = STATE(1393), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1393), - [sym_variable_assignment] = STATE(1394), - [sym_declaration_command] = STATE(1393), - [sym_unset_command] = STATE(1393), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [748] = { - [sym_for_statement] = STATE(1395), - [sym_while_statement] = STATE(1395), - [sym_if_statement] = STATE(1395), - [sym_case_statement] = STATE(1395), - [sym_function_definition] = STATE(1395), - [sym_subshell] = STATE(1395), - [sym_pipeline] = STATE(1395), - [sym_list] = STATE(1395), - [sym_command] = STATE(1395), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1395), - [sym_variable_assignment] = STATE(1396), - [sym_declaration_command] = STATE(1395), - [sym_unset_command] = STATE(1395), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [749] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(1397), - [sym_file_descriptor] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(1351), - [anon_sym_RPAREN] = ACTIONS(1351), - [anon_sym_SEMI_SEMI] = ACTIONS(1351), - [anon_sym_PIPE_AMP] = ACTIONS(1351), - [anon_sym_AMP_AMP] = ACTIONS(1351), - [anon_sym_PIPE_PIPE] = ACTIONS(1351), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(562), - [anon_sym_AMP_GT] = ACTIONS(562), - [anon_sym_AMP_GT_GT] = ACTIONS(562), - [anon_sym_LT_AMP] = ACTIONS(562), - [anon_sym_GT_AMP] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(564), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_LF] = ACTIONS(1351), - [anon_sym_AMP] = ACTIONS(1351), - }, - [750] = { - [anon_sym_RPAREN] = ACTIONS(2818), - [sym_comment] = ACTIONS(56), - }, - [751] = { - [sym_file_redirect] = STATE(740), - [sym_file_descriptor] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_RPAREN] = ACTIONS(1405), - [anon_sym_SEMI_SEMI] = ACTIONS(1405), - [anon_sym_PIPE_AMP] = ACTIONS(1405), - [anon_sym_AMP_AMP] = ACTIONS(1405), - [anon_sym_PIPE_PIPE] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(2822), - [anon_sym_GT] = ACTIONS(2822), - [anon_sym_GT_GT] = ACTIONS(2822), - [anon_sym_AMP_GT] = ACTIONS(2822), - [anon_sym_AMP_GT_GT] = ACTIONS(2822), - [anon_sym_LT_AMP] = ACTIONS(2822), - [anon_sym_GT_AMP] = ACTIONS(2822), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_LF] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1405), - }, - [752] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(1401), - [sym_file_descriptor] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_RPAREN] = ACTIONS(1609), - [anon_sym_SEMI_SEMI] = ACTIONS(1609), - [anon_sym_PIPE_AMP] = ACTIONS(1609), - [anon_sym_AMP_AMP] = ACTIONS(1609), - [anon_sym_PIPE_PIPE] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(562), - [anon_sym_AMP_GT] = ACTIONS(562), - [anon_sym_AMP_GT_GT] = ACTIONS(562), - [anon_sym_LT_AMP] = ACTIONS(562), - [anon_sym_GT_AMP] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(564), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_LF] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1609), - }, - [753] = { - [sym_concatenation] = STATE(872), - [sym_string] = STATE(1403), - [sym_array] = STATE(872), - [sym_simple_expansion] = STATE(1403), - [sym_string_expansion] = STATE(1403), - [sym_expansion] = STATE(1403), - [sym_command_substitution] = STATE(1403), - [sym_process_substitution] = STATE(1403), - [sym__empty_value] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1705), - [sym__special_characters] = ACTIONS(2824), - [anon_sym_DQUOTE] = ACTIONS(1437), - [anon_sym_DOLLAR] = ACTIONS(2826), - [sym_raw_string] = ACTIONS(2828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2832), - [anon_sym_BQUOTE] = ACTIONS(2834), - [anon_sym_LT_LPAREN] = ACTIONS(2836), - [anon_sym_GT_LPAREN] = ACTIONS(2836), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2838), - }, - [754] = { - [sym_string] = STATE(1404), - [sym_simple_expansion] = STATE(1404), - [sym_string_expansion] = STATE(1404), - [sym_expansion] = STATE(1404), - [sym_command_substitution] = STATE(1404), - [sym_process_substitution] = STATE(1404), - [sym__special_characters] = ACTIONS(2840), - [anon_sym_DQUOTE] = ACTIONS(1437), - [anon_sym_DOLLAR] = ACTIONS(2826), - [sym_raw_string] = ACTIONS(2842), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2832), - [anon_sym_BQUOTE] = ACTIONS(2834), - [anon_sym_LT_LPAREN] = ACTIONS(2836), - [anon_sym_GT_LPAREN] = ACTIONS(2836), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2840), - }, - [755] = { - [aux_sym_concatenation_repeat1] = STATE(1405), - [sym__concat] = ACTIONS(1433), - [sym_variable_name] = ACTIONS(790), - [anon_sym_PIPE] = ACTIONS(792), - [anon_sym_RPAREN] = ACTIONS(792), - [anon_sym_SEMI_SEMI] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [sym__special_characters] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(792), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(792), - [sym_word] = ACTIONS(792), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LF] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(792), - }, - [756] = { - [sym__concat] = ACTIONS(794), - [sym_variable_name] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_RPAREN] = ACTIONS(796), - [anon_sym_SEMI_SEMI] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [sym__special_characters] = ACTIONS(796), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(796), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(796), - [sym_word] = ACTIONS(796), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_LF] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - }, - [757] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [758] = { - [sym__concat] = ACTIONS(826), - [sym_variable_name] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_SEMI_SEMI] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(828), - [sym_word] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(828), - }, - [759] = { - [sym__concat] = ACTIONS(830), - [sym_variable_name] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [sym__special_characters] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(832), - [sym_word] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(832), - [anon_sym_AMP] = ACTIONS(832), - }, - [760] = { - [sym__concat] = ACTIONS(834), - [sym_variable_name] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_SEMI_SEMI] = ACTIONS(836), - [anon_sym_PIPE_AMP] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [sym__special_characters] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [sym_raw_string] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), - [anon_sym_BQUOTE] = ACTIONS(836), - [anon_sym_LT_LPAREN] = ACTIONS(836), - [anon_sym_GT_LPAREN] = ACTIONS(836), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(836), - [sym_word] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(836), - }, - [761] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(2846), - [sym_comment] = ACTIONS(56), - }, - [762] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1410), - [anon_sym_RBRACE] = ACTIONS(2848), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2850), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [763] = { - [sym_subscript] = STATE(1414), - [sym_variable_name] = ACTIONS(2852), - [anon_sym_DOLLAR] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2854), - [anon_sym_AT] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2854), - [anon_sym_0] = ACTIONS(2858), - [anon_sym__] = ACTIONS(2858), - }, - [764] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1417), - [anon_sym_RBRACE] = ACTIONS(2860), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2862), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [765] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1420), - [anon_sym_RBRACE] = ACTIONS(2864), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2866), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [766] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2868), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [767] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2868), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [768] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(2868), - [sym_comment] = ACTIONS(56), - }, - [769] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(2868), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [770] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2870), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [771] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2870), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [772] = { - [sym_variable_assignment] = STATE(107), - [sym_subscript] = STATE(283), - [sym_concatenation] = STATE(107), - [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), - [aux_sym_declaration_command_repeat1] = STATE(772), - [sym_variable_name] = ACTIONS(2872), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_RPAREN] = ACTIONS(1758), - [anon_sym_SEMI_SEMI] = ACTIONS(1758), - [anon_sym_PIPE_AMP] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1758), - [anon_sym_PIPE_PIPE] = ACTIONS(1758), - [sym__special_characters] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2878), - [anon_sym_DOLLAR] = ACTIONS(2881), - [sym_raw_string] = ACTIONS(2884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2887), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2890), - [anon_sym_BQUOTE] = ACTIONS(2893), - [anon_sym_LT_LPAREN] = ACTIONS(2896), - [anon_sym_GT_LPAREN] = ACTIONS(2896), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1784), - [sym_word] = ACTIONS(2884), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_LF] = ACTIONS(1758), - [anon_sym_AMP] = ACTIONS(1758), - }, - [773] = { - [sym_string] = STATE(1423), - [sym_simple_expansion] = STATE(1423), - [sym_string_expansion] = STATE(1423), - [sym_expansion] = STATE(1423), - [sym_command_substitution] = STATE(1423), - [sym_process_substitution] = STATE(1423), - [sym__special_characters] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(1461), - [anon_sym_DOLLAR] = ACTIONS(2901), - [sym_raw_string] = ACTIONS(2903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2907), - [anon_sym_BQUOTE] = ACTIONS(2909), - [anon_sym_LT_LPAREN] = ACTIONS(2911), - [anon_sym_GT_LPAREN] = ACTIONS(2911), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2899), - }, - [774] = { - [aux_sym_concatenation_repeat1] = STATE(1424), - [sym__concat] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(792), - [anon_sym_RPAREN] = ACTIONS(792), - [anon_sym_SEMI_SEMI] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [sym__special_characters] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(792), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(792), - [sym_word] = ACTIONS(792), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LF] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(792), - }, - [775] = { - [sym__concat] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_RPAREN] = ACTIONS(796), - [anon_sym_SEMI_SEMI] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [sym__special_characters] = ACTIONS(796), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(796), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(796), - [sym_word] = ACTIONS(796), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_LF] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - }, - [776] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(2913), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [777] = { - [sym__concat] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_SEMI_SEMI] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(828), - [sym_word] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(828), - }, - [778] = { - [sym__concat] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [sym__special_characters] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(832), - [sym_word] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(832), - [anon_sym_AMP] = ACTIONS(832), - }, - [779] = { - [sym__concat] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_SEMI_SEMI] = ACTIONS(836), - [anon_sym_PIPE_AMP] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [sym__special_characters] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [sym_raw_string] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), - [anon_sym_BQUOTE] = ACTIONS(836), - [anon_sym_LT_LPAREN] = ACTIONS(836), - [anon_sym_GT_LPAREN] = ACTIONS(836), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(836), - [sym_word] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(836), - }, - [780] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(2915), - [sym_comment] = ACTIONS(56), - }, - [781] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1429), - [anon_sym_RBRACE] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [782] = { - [sym_subscript] = STATE(1433), - [sym_variable_name] = ACTIONS(2921), - [anon_sym_DOLLAR] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2923), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_AT] = ACTIONS(2923), - [anon_sym_QMARK] = ACTIONS(2923), - [anon_sym_0] = ACTIONS(2927), - [anon_sym__] = ACTIONS(2927), - }, - [783] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1436), - [anon_sym_RBRACE] = ACTIONS(2929), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2931), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [784] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1439), - [anon_sym_RBRACE] = ACTIONS(2933), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2935), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [785] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2937), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [786] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2937), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [787] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(2937), - [sym_comment] = ACTIONS(56), - }, - [788] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(2937), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [789] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2939), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [790] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(2939), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [791] = { - [sym_concatenation] = STATE(119), - [sym_string] = STATE(288), - [sym_simple_expansion] = STATE(288), - [sym_string_expansion] = STATE(288), - [sym_expansion] = STATE(288), - [sym_command_substitution] = STATE(288), - [sym_process_substitution] = STATE(288), - [aux_sym_unset_command_repeat1] = STATE(791), - [anon_sym_PIPE] = ACTIONS(1829), - [anon_sym_RPAREN] = ACTIONS(1829), - [anon_sym_SEMI_SEMI] = ACTIONS(1829), - [anon_sym_PIPE_AMP] = ACTIONS(1829), - [anon_sym_AMP_AMP] = ACTIONS(1829), - [anon_sym_PIPE_PIPE] = ACTIONS(1829), - [sym__special_characters] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2944), - [anon_sym_DOLLAR] = ACTIONS(2947), - [sym_raw_string] = ACTIONS(2950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2953), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2956), - [anon_sym_BQUOTE] = ACTIONS(2959), - [anon_sym_LT_LPAREN] = ACTIONS(2962), - [anon_sym_GT_LPAREN] = ACTIONS(2962), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1855), - [sym_word] = ACTIONS(2950), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_LF] = ACTIONS(1829), - [anon_sym_AMP] = ACTIONS(1829), - }, - [792] = { - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [anon_sym_EQ_TILDE] = ACTIONS(1892), - [anon_sym_EQ_EQ] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_AMP_GT] = ACTIONS(1892), - [anon_sym_AMP_GT_GT] = ACTIONS(1892), - [anon_sym_LT_AMP] = ACTIONS(1892), - [anon_sym_GT_AMP] = ACTIONS(1892), - [anon_sym_LT_LT] = ACTIONS(1892), - [anon_sym_LT_LT_DASH] = ACTIONS(1892), - [anon_sym_LT_LT_LT] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [793] = { - [aux_sym_concatenation_repeat1] = STATE(793), - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(2965), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [anon_sym_EQ_TILDE] = ACTIONS(1892), - [anon_sym_EQ_EQ] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_AMP_GT] = ACTIONS(1892), - [anon_sym_AMP_GT_GT] = ACTIONS(1892), - [anon_sym_LT_AMP] = ACTIONS(1892), - [anon_sym_GT_AMP] = ACTIONS(1892), - [anon_sym_LT_LT] = ACTIONS(1892), - [anon_sym_LT_LT_DASH] = ACTIONS(1892), - [anon_sym_LT_LT_LT] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [794] = { - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_RPAREN] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1929), - [anon_sym_PIPE_AMP] = ACTIONS(1929), - [anon_sym_AMP_AMP] = ACTIONS(1929), - [anon_sym_PIPE_PIPE] = ACTIONS(1929), - [anon_sym_EQ_TILDE] = ACTIONS(1929), - [anon_sym_EQ_EQ] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_GT_GT] = ACTIONS(1929), - [anon_sym_AMP_GT] = ACTIONS(1929), - [anon_sym_AMP_GT_GT] = ACTIONS(1929), - [anon_sym_LT_AMP] = ACTIONS(1929), - [anon_sym_GT_AMP] = ACTIONS(1929), - [anon_sym_LT_LT] = ACTIONS(1929), - [anon_sym_LT_LT_DASH] = ACTIONS(1929), - [anon_sym_LT_LT_LT] = ACTIONS(1929), - [sym__special_characters] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1929), - [sym_raw_string] = ACTIONS(1929), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), - [anon_sym_BQUOTE] = ACTIONS(1929), - [anon_sym_LT_LPAREN] = ACTIONS(1929), - [anon_sym_GT_LPAREN] = ACTIONS(1929), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1929), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - }, - [795] = { - [sym_concatenation] = STATE(1445), - [sym_string] = STATE(1444), - [sym_simple_expansion] = STATE(1444), - [sym_string_expansion] = STATE(1444), - [sym_expansion] = STATE(1444), - [sym_command_substitution] = STATE(1444), - [sym_process_substitution] = STATE(1444), - [anon_sym_RBRACE] = ACTIONS(2968), - [sym__special_characters] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(2972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2974), - }, - [796] = { - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(1974), - [anon_sym_EQ_TILDE] = ACTIONS(1974), - [anon_sym_EQ_EQ] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1974), - [anon_sym_GT_GT] = ACTIONS(1974), - [anon_sym_AMP_GT] = ACTIONS(1974), - [anon_sym_AMP_GT_GT] = ACTIONS(1974), - [anon_sym_LT_AMP] = ACTIONS(1974), - [anon_sym_GT_AMP] = ACTIONS(1974), - [anon_sym_LT_LT] = ACTIONS(1974), - [anon_sym_LT_LT_DASH] = ACTIONS(1974), - [anon_sym_LT_LT_LT] = ACTIONS(1974), - [sym__special_characters] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(1974), - [sym_raw_string] = ACTIONS(1974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_BQUOTE] = ACTIONS(1974), - [anon_sym_LT_LPAREN] = ACTIONS(1974), - [anon_sym_GT_LPAREN] = ACTIONS(1974), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_LF] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - }, - [797] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2976), - }, - [798] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(2978), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [799] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(2980), - [sym_comment] = ACTIONS(56), - }, - [800] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1451), - [anon_sym_RBRACE] = ACTIONS(2982), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2984), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [801] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1454), - [anon_sym_RBRACE] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [802] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1456), - [anon_sym_RBRACE] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [803] = { - [sym_file_descriptor] = ACTIONS(2026), - [sym__concat] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_RPAREN] = ACTIONS(2028), - [anon_sym_SEMI_SEMI] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(2028), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [anon_sym_EQ_TILDE] = ACTIONS(2028), - [anon_sym_EQ_EQ] = ACTIONS(2028), - [anon_sym_LT] = ACTIONS(2028), - [anon_sym_GT] = ACTIONS(2028), - [anon_sym_GT_GT] = ACTIONS(2028), - [anon_sym_AMP_GT] = ACTIONS(2028), - [anon_sym_AMP_GT_GT] = ACTIONS(2028), - [anon_sym_LT_AMP] = ACTIONS(2028), - [anon_sym_GT_AMP] = ACTIONS(2028), - [anon_sym_LT_LT] = ACTIONS(2028), - [anon_sym_LT_LT_DASH] = ACTIONS(2028), - [anon_sym_LT_LT_LT] = ACTIONS(2028), - [sym__special_characters] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [anon_sym_DOLLAR] = ACTIONS(2028), - [sym_raw_string] = ACTIONS(2028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), - [anon_sym_BQUOTE] = ACTIONS(2028), - [anon_sym_LT_LPAREN] = ACTIONS(2028), - [anon_sym_GT_LPAREN] = ACTIONS(2028), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - }, - [804] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2992), - }, - [805] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [806] = { - [sym_file_descriptor] = ACTIONS(2034), - [sym__concat] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_RPAREN] = ACTIONS(2036), - [anon_sym_SEMI_SEMI] = ACTIONS(2036), - [anon_sym_PIPE_AMP] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [anon_sym_EQ_TILDE] = ACTIONS(2036), - [anon_sym_EQ_EQ] = ACTIONS(2036), - [anon_sym_LT] = ACTIONS(2036), - [anon_sym_GT] = ACTIONS(2036), - [anon_sym_GT_GT] = ACTIONS(2036), - [anon_sym_AMP_GT] = ACTIONS(2036), - [anon_sym_AMP_GT_GT] = ACTIONS(2036), - [anon_sym_LT_AMP] = ACTIONS(2036), - [anon_sym_GT_AMP] = ACTIONS(2036), - [anon_sym_LT_LT] = ACTIONS(2036), - [anon_sym_LT_LT_DASH] = ACTIONS(2036), - [anon_sym_LT_LT_LT] = ACTIONS(2036), - [sym__special_characters] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2036), - [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(182), - [sym_word] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_LF] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - }, - [807] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2996), - }, - [808] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [809] = { - [sym_file_descriptor] = ACTIONS(2196), - [sym__concat] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_SEMI_SEMI] = ACTIONS(2198), - [anon_sym_PIPE_AMP] = ACTIONS(2198), - [anon_sym_AMP_AMP] = ACTIONS(2198), - [anon_sym_PIPE_PIPE] = ACTIONS(2198), - [anon_sym_EQ_TILDE] = ACTIONS(2198), - [anon_sym_EQ_EQ] = ACTIONS(2198), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_GT] = ACTIONS(2198), - [anon_sym_GT_GT] = ACTIONS(2198), - [anon_sym_AMP_GT] = ACTIONS(2198), - [anon_sym_AMP_GT_GT] = ACTIONS(2198), - [anon_sym_LT_AMP] = ACTIONS(2198), - [anon_sym_GT_AMP] = ACTIONS(2198), - [anon_sym_LT_LT] = ACTIONS(2198), - [anon_sym_LT_LT_DASH] = ACTIONS(2198), - [anon_sym_LT_LT_LT] = ACTIONS(2198), - [sym__special_characters] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(2198), - [sym_raw_string] = ACTIONS(2198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), - [anon_sym_BQUOTE] = ACTIONS(2198), - [anon_sym_LT_LPAREN] = ACTIONS(2198), - [anon_sym_GT_LPAREN] = ACTIONS(2198), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - }, - [810] = { - [sym_file_descriptor] = ACTIONS(2402), - [sym__concat] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_RPAREN] = ACTIONS(2404), - [anon_sym_SEMI_SEMI] = ACTIONS(2404), - [anon_sym_PIPE_AMP] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [anon_sym_EQ_TILDE] = ACTIONS(2404), - [anon_sym_EQ_EQ] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2404), - [anon_sym_GT] = ACTIONS(2404), - [anon_sym_GT_GT] = ACTIONS(2404), - [anon_sym_AMP_GT] = ACTIONS(2404), - [anon_sym_AMP_GT_GT] = ACTIONS(2404), - [anon_sym_LT_AMP] = ACTIONS(2404), - [anon_sym_GT_AMP] = ACTIONS(2404), - [anon_sym_LT_LT] = ACTIONS(2404), - [anon_sym_LT_LT_DASH] = ACTIONS(2404), - [anon_sym_LT_LT_LT] = ACTIONS(2404), - [sym__special_characters] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2404), - [anon_sym_DOLLAR] = ACTIONS(2404), - [sym_raw_string] = ACTIONS(2404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2404), - [anon_sym_LT_LPAREN] = ACTIONS(2404), - [anon_sym_GT_LPAREN] = ACTIONS(2404), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2404), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LF] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - }, - [811] = { - [sym_compound_statement] = STATE(1460), - [anon_sym_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(56), - }, - [812] = { - [anon_sym_esac] = ACTIONS(2998), - [anon_sym_PIPE] = ACTIONS(2998), - [anon_sym_RPAREN] = ACTIONS(2998), - [anon_sym_SEMI_SEMI] = ACTIONS(2998), - [anon_sym_PIPE_AMP] = ACTIONS(2998), - [anon_sym_AMP_AMP] = ACTIONS(2998), - [anon_sym_PIPE_PIPE] = ACTIONS(2998), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2998), - [anon_sym_LF] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2998), - }, - [813] = { - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_RPAREN] = ACTIONS(2408), - [anon_sym_SEMI_SEMI] = ACTIONS(2408), - [anon_sym_PIPE_AMP] = ACTIONS(550), - [anon_sym_AMP_AMP] = ACTIONS(2408), - [anon_sym_PIPE_PIPE] = ACTIONS(2408), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2408), - [anon_sym_LF] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2408), - }, - [814] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_RPAREN] = ACTIONS(2408), - [anon_sym_SEMI_SEMI] = ACTIONS(2408), - [anon_sym_PIPE_AMP] = ACTIONS(550), - [anon_sym_AMP_AMP] = ACTIONS(2408), - [anon_sym_PIPE_PIPE] = ACTIONS(2408), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(2408), - [anon_sym_LF] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2408), - }, - [815] = { - [sym_concatenation] = STATE(1203), - [sym_string] = STATE(1462), - [sym_simple_expansion] = STATE(1462), - [sym_string_expansion] = STATE(1462), - [sym_expansion] = STATE(1462), - [sym_command_substitution] = STATE(1462), - [sym_process_substitution] = STATE(1462), - [sym__special_characters] = ACTIONS(3000), - [anon_sym_DQUOTE] = ACTIONS(1529), - [anon_sym_DOLLAR] = ACTIONS(1531), - [sym_raw_string] = ACTIONS(3002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1535), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1537), - [anon_sym_BQUOTE] = ACTIONS(1539), - [anon_sym_LT_LPAREN] = ACTIONS(1541), - [anon_sym_GT_LPAREN] = ACTIONS(1541), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3004), - }, - [816] = { - [aux_sym_concatenation_repeat1] = STATE(295), - [sym_file_descriptor] = ACTIONS(1557), - [sym__concat] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(1559), - [anon_sym_RPAREN] = ACTIONS(1559), - [anon_sym_SEMI_SEMI] = ACTIONS(1559), - [anon_sym_PIPE_AMP] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1559), - [anon_sym_PIPE_PIPE] = ACTIONS(1559), - [anon_sym_EQ_TILDE] = ACTIONS(1559), - [anon_sym_EQ_EQ] = ACTIONS(1559), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_GT] = ACTIONS(1559), - [anon_sym_GT_GT] = ACTIONS(1559), - [anon_sym_AMP_GT] = ACTIONS(1559), - [anon_sym_AMP_GT_GT] = ACTIONS(1559), - [anon_sym_LT_AMP] = ACTIONS(1559), - [anon_sym_GT_AMP] = ACTIONS(1559), - [anon_sym_LT_LT] = ACTIONS(1559), - [anon_sym_LT_LT_DASH] = ACTIONS(1559), - [anon_sym_LT_LT_LT] = ACTIONS(1559), - [sym__special_characters] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1559), - [anon_sym_DOLLAR] = ACTIONS(1559), - [sym_raw_string] = ACTIONS(1559), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1559), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1559), - [anon_sym_BQUOTE] = ACTIONS(1559), - [anon_sym_LT_LPAREN] = ACTIONS(1559), - [anon_sym_GT_LPAREN] = ACTIONS(1559), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1559), - [anon_sym_LF] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - }, - [817] = { - [aux_sym_concatenation_repeat1] = STATE(295), - [sym_file_descriptor] = ACTIONS(1563), - [sym__concat] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(1565), - [anon_sym_RPAREN] = ACTIONS(1565), - [anon_sym_SEMI_SEMI] = ACTIONS(1565), - [anon_sym_PIPE_AMP] = ACTIONS(1565), - [anon_sym_AMP_AMP] = ACTIONS(1565), - [anon_sym_PIPE_PIPE] = ACTIONS(1565), - [anon_sym_EQ_TILDE] = ACTIONS(1565), - [anon_sym_EQ_EQ] = ACTIONS(1565), - [anon_sym_LT] = ACTIONS(1565), - [anon_sym_GT] = ACTIONS(1565), - [anon_sym_GT_GT] = ACTIONS(1565), - [anon_sym_AMP_GT] = ACTIONS(1565), - [anon_sym_AMP_GT_GT] = ACTIONS(1565), - [anon_sym_LT_AMP] = ACTIONS(1565), - [anon_sym_GT_AMP] = ACTIONS(1565), - [anon_sym_LT_LT] = ACTIONS(1565), - [anon_sym_LT_LT_DASH] = ACTIONS(1565), - [anon_sym_LT_LT_LT] = ACTIONS(1565), - [sym__special_characters] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(1565), - [sym_raw_string] = ACTIONS(1565), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1565), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1565), - [anon_sym_BQUOTE] = ACTIONS(1565), - [anon_sym_LT_LPAREN] = ACTIONS(1565), - [anon_sym_GT_LPAREN] = ACTIONS(1565), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_LF] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - }, - [818] = { - [aux_sym_concatenation_repeat1] = STATE(1464), - [sym_file_descriptor] = ACTIONS(756), - [sym__concat] = ACTIONS(3006), - [anon_sym_PIPE] = ACTIONS(2418), - [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_LT] = ACTIONS(2418), - [anon_sym_GT] = ACTIONS(2418), - [anon_sym_GT_GT] = ACTIONS(2418), - [anon_sym_AMP_GT] = ACTIONS(2418), - [anon_sym_AMP_GT_GT] = ACTIONS(2418), - [anon_sym_LT_AMP] = ACTIONS(2418), - [anon_sym_GT_AMP] = ACTIONS(2418), - [anon_sym_LT_LT] = ACTIONS(2418), - [anon_sym_LT_LT_DASH] = ACTIONS(2418), - [anon_sym_LT_LT_LT] = ACTIONS(2418), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_LF] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2418), - }, - [819] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1466), - [anon_sym_DQUOTE] = ACTIONS(3008), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [820] = { - [sym_string] = STATE(1468), - [anon_sym_DQUOTE] = ACTIONS(1529), - [anon_sym_DOLLAR] = ACTIONS(3010), - [sym_raw_string] = ACTIONS(3012), - [anon_sym_POUND] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3014), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_AT] = ACTIONS(3010), - [anon_sym_QMARK] = ACTIONS(3010), - [anon_sym_0] = ACTIONS(3016), - [anon_sym__] = ACTIONS(3016), - }, - [821] = { - [aux_sym_concatenation_repeat1] = STATE(1464), - [sym_file_descriptor] = ACTIONS(772), - [sym__concat] = ACTIONS(3006), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_RPAREN] = ACTIONS(2430), - [anon_sym_SEMI_SEMI] = ACTIONS(2430), - [anon_sym_PIPE_AMP] = ACTIONS(2430), - [anon_sym_AMP_AMP] = ACTIONS(2430), - [anon_sym_PIPE_PIPE] = ACTIONS(2430), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_GT] = ACTIONS(2430), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_AMP_GT] = ACTIONS(2430), - [anon_sym_AMP_GT_GT] = ACTIONS(2430), - [anon_sym_LT_AMP] = ACTIONS(2430), - [anon_sym_GT_AMP] = ACTIONS(2430), - [anon_sym_LT_LT] = ACTIONS(2430), - [anon_sym_LT_LT_DASH] = ACTIONS(2430), - [anon_sym_LT_LT_LT] = ACTIONS(2430), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2430), - [anon_sym_LF] = ACTIONS(2430), - [anon_sym_AMP] = ACTIONS(2430), - }, - [822] = { - [sym_subscript] = STATE(1474), - [sym_variable_name] = ACTIONS(3018), - [anon_sym_DOLLAR] = ACTIONS(3020), - [anon_sym_POUND] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3020), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3024), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AT] = ACTIONS(3020), - [anon_sym_QMARK] = ACTIONS(3020), - [anon_sym_0] = ACTIONS(3026), - [anon_sym__] = ACTIONS(3026), - }, - [823] = { - [sym_for_statement] = STATE(1475), - [sym_while_statement] = STATE(1475), - [sym_if_statement] = STATE(1475), - [sym_case_statement] = STATE(1475), - [sym_function_definition] = STATE(1475), - [sym_subshell] = STATE(1475), - [sym_pipeline] = STATE(1475), - [sym_list] = STATE(1475), - [sym_command] = STATE(1475), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1475), - [sym_variable_assignment] = STATE(1476), - [sym_declaration_command] = STATE(1475), - [sym_unset_command] = STATE(1475), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [824] = { - [sym_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_command] = STATE(1477), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1477), - [sym_variable_assignment] = STATE(1478), - [sym_declaration_command] = STATE(1477), - [sym_unset_command] = STATE(1477), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [825] = { - [sym_for_statement] = STATE(1479), - [sym_while_statement] = STATE(1479), - [sym_if_statement] = STATE(1479), - [sym_case_statement] = STATE(1479), - [sym_function_definition] = STATE(1479), - [sym_subshell] = STATE(1479), - [sym_pipeline] = STATE(1479), - [sym_list] = STATE(1479), - [sym_command] = STATE(1479), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1479), - [sym_variable_assignment] = STATE(1480), - [sym_declaration_command] = STATE(1479), - [sym_unset_command] = STATE(1479), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [826] = { - [aux_sym_concatenation_repeat1] = STATE(1464), - [sym_file_descriptor] = ACTIONS(2458), - [sym__concat] = ACTIONS(3006), - [anon_sym_PIPE] = ACTIONS(2460), - [anon_sym_RPAREN] = ACTIONS(2460), - [anon_sym_SEMI_SEMI] = ACTIONS(2460), - [anon_sym_PIPE_AMP] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2460), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_LT] = ACTIONS(2460), - [anon_sym_GT] = ACTIONS(2460), - [anon_sym_GT_GT] = ACTIONS(2460), - [anon_sym_AMP_GT] = ACTIONS(2460), - [anon_sym_AMP_GT_GT] = ACTIONS(2460), - [anon_sym_LT_AMP] = ACTIONS(2460), - [anon_sym_GT_AMP] = ACTIONS(2460), - [anon_sym_LT_LT] = ACTIONS(2460), - [anon_sym_LT_LT_DASH] = ACTIONS(2460), - [anon_sym_LT_LT_LT] = ACTIONS(2460), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_LF] = ACTIONS(2460), - [anon_sym_AMP] = ACTIONS(2460), - }, - [827] = { - [aux_sym_concatenation_repeat1] = STATE(1464), - [sym_file_descriptor] = ACTIONS(2462), - [sym__concat] = ACTIONS(3006), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_RPAREN] = ACTIONS(2464), - [anon_sym_SEMI_SEMI] = ACTIONS(2464), - [anon_sym_PIPE_AMP] = ACTIONS(2464), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_LT] = ACTIONS(2464), - [anon_sym_GT] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_AMP_GT] = ACTIONS(2464), - [anon_sym_AMP_GT_GT] = ACTIONS(2464), - [anon_sym_LT_AMP] = ACTIONS(2464), - [anon_sym_GT_AMP] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_LT_LT_DASH] = ACTIONS(2464), - [anon_sym_LT_LT_LT] = ACTIONS(2464), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_LF] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2464), - }, - [828] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(828), - [sym_file_descriptor] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(2469), - [anon_sym_RPAREN] = ACTIONS(2469), - [anon_sym_SEMI_SEMI] = ACTIONS(2469), - [anon_sym_PIPE_AMP] = ACTIONS(2469), - [anon_sym_AMP_AMP] = ACTIONS(2469), - [anon_sym_PIPE_PIPE] = ACTIONS(2469), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_GT] = ACTIONS(3031), - [anon_sym_GT_GT] = ACTIONS(3031), - [anon_sym_AMP_GT] = ACTIONS(3031), - [anon_sym_AMP_GT_GT] = ACTIONS(3031), - [anon_sym_LT_AMP] = ACTIONS(3031), - [anon_sym_GT_AMP] = ACTIONS(3031), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_LT_LT_DASH] = ACTIONS(2474), - [anon_sym_LT_LT_LT] = ACTIONS(3034), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2469), - [anon_sym_LF] = ACTIONS(2469), - [anon_sym_AMP] = ACTIONS(2469), - }, - [829] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(828), - [sym_file_descriptor] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(2480), - [anon_sym_RPAREN] = ACTIONS(2480), - [anon_sym_SEMI_SEMI] = ACTIONS(2480), - [anon_sym_PIPE_AMP] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_PIPE_PIPE] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(562), - [anon_sym_AMP_GT] = ACTIONS(562), - [anon_sym_AMP_GT_GT] = ACTIONS(562), - [anon_sym_LT_AMP] = ACTIONS(562), - [anon_sym_GT_AMP] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(564), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_LF] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2480), - }, - [830] = { - [sym_concatenation] = STATE(208), - [sym_string] = STATE(322), - [sym_simple_expansion] = STATE(322), - [sym_string_expansion] = STATE(322), - [sym_expansion] = STATE(322), - [sym_command_substitution] = STATE(322), - [sym_process_substitution] = STATE(322), - [aux_sym_command_repeat2] = STATE(830), - [sym_file_descriptor] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1565), - [anon_sym_RPAREN] = ACTIONS(1565), - [anon_sym_SEMI_SEMI] = ACTIONS(1565), - [anon_sym_PIPE_AMP] = ACTIONS(1565), - [anon_sym_AMP_AMP] = ACTIONS(1565), - [anon_sym_PIPE_PIPE] = ACTIONS(1565), - [anon_sym_EQ_TILDE] = ACTIONS(3037), - [anon_sym_EQ_EQ] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(1565), - [anon_sym_GT] = ACTIONS(1565), - [anon_sym_GT_GT] = ACTIONS(1565), - [anon_sym_AMP_GT] = ACTIONS(1565), - [anon_sym_AMP_GT_GT] = ACTIONS(1565), - [anon_sym_LT_AMP] = ACTIONS(1565), - [anon_sym_GT_AMP] = ACTIONS(1565), - [anon_sym_LT_LT] = ACTIONS(1565), - [anon_sym_LT_LT_DASH] = ACTIONS(1565), - [anon_sym_LT_LT_LT] = ACTIONS(1565), - [sym__special_characters] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_DOLLAR] = ACTIONS(3046), - [sym_raw_string] = ACTIONS(3049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3052), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3055), - [anon_sym_BQUOTE] = ACTIONS(3058), - [anon_sym_LT_LPAREN] = ACTIONS(3061), - [anon_sym_GT_LPAREN] = ACTIONS(3061), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3049), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_LF] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - }, - [831] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_RPAREN] = ACTIONS(3064), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1104), - [sym_raw_string] = ACTIONS(1102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), - [anon_sym_BQUOTE] = ACTIONS(1102), - [anon_sym_LT_LPAREN] = ACTIONS(1102), - [anon_sym_GT_LPAREN] = ACTIONS(1102), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1106), - }, - [832] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [sym_concatenation] = STATE(208), - [sym_string] = STATE(322), - [sym_simple_expansion] = STATE(322), - [sym_string_expansion] = STATE(322), - [sym_expansion] = STATE(322), - [sym_command_substitution] = STATE(322), - [sym_process_substitution] = STATE(322), - [aux_sym_while_statement_repeat1] = STATE(1482), - [aux_sym_command_repeat2] = STATE(830), - [sym_file_descriptor] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(2480), - [anon_sym_RPAREN] = ACTIONS(2480), - [anon_sym_SEMI_SEMI] = ACTIONS(2480), - [anon_sym_PIPE_AMP] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_PIPE_PIPE] = ACTIONS(2480), - [anon_sym_EQ_TILDE] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(562), - [anon_sym_AMP_GT] = ACTIONS(562), - [anon_sym_AMP_GT_GT] = ACTIONS(562), - [anon_sym_LT_AMP] = ACTIONS(562), - [anon_sym_GT_AMP] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(564), - [sym__special_characters] = ACTIONS(566), - [anon_sym_DQUOTE] = ACTIONS(568), - [anon_sym_DOLLAR] = ACTIONS(570), - [sym_raw_string] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_LT_LPAREN] = ACTIONS(580), - [anon_sym_GT_LPAREN] = ACTIONS(580), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(572), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_LF] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2480), - }, - [833] = { - [sym__concat] = ACTIONS(1890), - [anon_sym_EQ_TILDE] = ACTIONS(3066), - [anon_sym_EQ_EQ] = ACTIONS(3066), - [anon_sym_RBRACK] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1892), - }, - [834] = { - [aux_sym_concatenation_repeat1] = STATE(834), - [sym__concat] = ACTIONS(3068), - [anon_sym_EQ_TILDE] = ACTIONS(3066), - [anon_sym_EQ_EQ] = ACTIONS(3066), - [anon_sym_RBRACK] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1892), - }, - [835] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_EQ_TILDE] = ACTIONS(3071), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_RBRACK] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), - [anon_sym_BQUOTE] = ACTIONS(1927), - [anon_sym_LT_LPAREN] = ACTIONS(1927), - [anon_sym_GT_LPAREN] = ACTIONS(1927), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1929), - }, - [836] = { - [sym_concatenation] = STATE(1486), - [sym_string] = STATE(1485), - [sym_simple_expansion] = STATE(1485), - [sym_string_expansion] = STATE(1485), - [sym_expansion] = STATE(1485), - [sym_command_substitution] = STATE(1485), - [sym_process_substitution] = STATE(1485), - [anon_sym_RBRACE] = ACTIONS(3073), - [sym__special_characters] = ACTIONS(3075), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(3077), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3079), - }, - [837] = { - [sym__concat] = ACTIONS(1972), - [anon_sym_EQ_TILDE] = ACTIONS(3081), - [anon_sym_EQ_EQ] = ACTIONS(3081), - [anon_sym_RBRACK] = ACTIONS(1972), - [sym__special_characters] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(3081), - [sym_raw_string] = ACTIONS(1972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1972), - [anon_sym_LT_LPAREN] = ACTIONS(1972), - [anon_sym_GT_LPAREN] = ACTIONS(1972), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1974), - }, - [838] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3083), - }, - [839] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [840] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(3087), - [sym_comment] = ACTIONS(56), - }, - [841] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1492), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3091), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [842] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1495), - [anon_sym_RBRACE] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3095), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [843] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1497), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3097), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [844] = { - [sym__concat] = ACTIONS(2026), - [anon_sym_EQ_TILDE] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3099), - [anon_sym_RBRACK] = ACTIONS(2026), - [sym__special_characters] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2026), - [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), - [anon_sym_BQUOTE] = ACTIONS(2026), - [anon_sym_LT_LPAREN] = ACTIONS(2026), - [anon_sym_GT_LPAREN] = ACTIONS(2026), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2028), - }, - [845] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3101), - }, - [846] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [847] = { - [sym__concat] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(3105), - [anon_sym_EQ_EQ] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(2034), - [sym__special_characters] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2034), - [anon_sym_DOLLAR] = ACTIONS(3105), - [sym_raw_string] = ACTIONS(2034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), - [anon_sym_BQUOTE] = ACTIONS(2034), - [anon_sym_LT_LPAREN] = ACTIONS(2034), - [anon_sym_GT_LPAREN] = ACTIONS(2034), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2036), - }, - [848] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3107), - }, - [849] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [850] = { - [sym__concat] = ACTIONS(2196), - [anon_sym_EQ_TILDE] = ACTIONS(3109), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_RBRACK] = ACTIONS(2196), - [sym__special_characters] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_DOLLAR] = ACTIONS(3109), - [sym_raw_string] = ACTIONS(2196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), - [anon_sym_BQUOTE] = ACTIONS(2196), - [anon_sym_LT_LPAREN] = ACTIONS(2196), - [anon_sym_GT_LPAREN] = ACTIONS(2196), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2198), - }, - [851] = { - [sym__concat] = ACTIONS(2402), - [anon_sym_EQ_TILDE] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3111), - [anon_sym_RBRACK] = ACTIONS(2402), - [sym__special_characters] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_DOLLAR] = ACTIONS(3111), - [sym_raw_string] = ACTIONS(2402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), - [anon_sym_BQUOTE] = ACTIONS(2402), - [anon_sym_LT_LPAREN] = ACTIONS(2402), - [anon_sym_GT_LPAREN] = ACTIONS(2402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2404), - }, - [852] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(625), - [sym_file_descriptor] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_SEMI_SEMI] = ACTIONS(3113), - [anon_sym_PIPE_AMP] = ACTIONS(3113), - [anon_sym_AMP_AMP] = ACTIONS(3113), - [anon_sym_PIPE_PIPE] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(358), - [anon_sym_GT] = ACTIONS(358), - [anon_sym_GT_GT] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(358), - [anon_sym_AMP_GT_GT] = ACTIONS(358), - [anon_sym_LT_AMP] = ACTIONS(358), - [anon_sym_GT_AMP] = ACTIONS(358), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(362), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3113), - [anon_sym_LF] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3113), - }, - [853] = { - [sym__concat] = ACTIONS(1890), - [anon_sym_EQ_TILDE] = ACTIONS(3066), - [anon_sym_EQ_EQ] = ACTIONS(3066), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1892), - }, - [854] = { - [aux_sym_concatenation_repeat1] = STATE(854), - [sym__concat] = ACTIONS(3115), - [anon_sym_EQ_TILDE] = ACTIONS(3066), - [anon_sym_EQ_EQ] = ACTIONS(3066), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1892), - }, - [855] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_EQ_TILDE] = ACTIONS(3071), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), - [anon_sym_BQUOTE] = ACTIONS(1927), - [anon_sym_LT_LPAREN] = ACTIONS(1927), - [anon_sym_GT_LPAREN] = ACTIONS(1927), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1929), - }, - [856] = { - [sym_concatenation] = STATE(1504), - [sym_string] = STATE(1503), - [sym_simple_expansion] = STATE(1503), - [sym_string_expansion] = STATE(1503), - [sym_expansion] = STATE(1503), - [sym_command_substitution] = STATE(1503), - [sym_process_substitution] = STATE(1503), - [anon_sym_RBRACE] = ACTIONS(3118), - [sym__special_characters] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(3122), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3124), - }, - [857] = { - [sym__concat] = ACTIONS(1972), - [anon_sym_EQ_TILDE] = ACTIONS(3081), - [anon_sym_EQ_EQ] = ACTIONS(3081), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1972), - [sym__special_characters] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(3081), - [sym_raw_string] = ACTIONS(1972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1972), - [anon_sym_LT_LPAREN] = ACTIONS(1972), - [anon_sym_GT_LPAREN] = ACTIONS(1972), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1974), - }, - [858] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3126), - }, - [859] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3128), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [860] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(3130), - [sym_comment] = ACTIONS(56), - }, - [861] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1510), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3134), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [862] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1513), - [anon_sym_RBRACE] = ACTIONS(3136), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3138), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [863] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1515), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3140), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [864] = { - [sym__concat] = ACTIONS(2026), - [anon_sym_EQ_TILDE] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3099), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2026), - [sym__special_characters] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2026), - [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), - [anon_sym_BQUOTE] = ACTIONS(2026), - [anon_sym_LT_LPAREN] = ACTIONS(2026), - [anon_sym_GT_LPAREN] = ACTIONS(2026), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2028), - }, - [865] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3142), - }, - [866] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3144), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [867] = { - [sym__concat] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(3105), - [anon_sym_EQ_EQ] = ACTIONS(3105), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2034), - [sym__special_characters] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2034), - [anon_sym_DOLLAR] = ACTIONS(3105), - [sym_raw_string] = ACTIONS(2034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), - [anon_sym_BQUOTE] = ACTIONS(2034), - [anon_sym_LT_LPAREN] = ACTIONS(2034), - [anon_sym_GT_LPAREN] = ACTIONS(2034), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2036), - }, - [868] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3146), - }, - [869] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [870] = { - [sym__concat] = ACTIONS(2196), - [anon_sym_EQ_TILDE] = ACTIONS(3109), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2196), - [sym__special_characters] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_DOLLAR] = ACTIONS(3109), - [sym_raw_string] = ACTIONS(2196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), - [anon_sym_BQUOTE] = ACTIONS(2196), - [anon_sym_LT_LPAREN] = ACTIONS(2196), - [anon_sym_GT_LPAREN] = ACTIONS(2196), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2198), - }, - [871] = { - [sym__concat] = ACTIONS(2402), - [anon_sym_EQ_TILDE] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3111), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2402), - [sym__special_characters] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_DOLLAR] = ACTIONS(3111), - [sym_raw_string] = ACTIONS(2402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), - [anon_sym_BQUOTE] = ACTIONS(2402), - [anon_sym_LT_LPAREN] = ACTIONS(2402), - [anon_sym_GT_LPAREN] = ACTIONS(2402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2404), - }, - [872] = { - [sym_variable_name] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_RPAREN] = ACTIONS(1281), - [anon_sym_SEMI_SEMI] = ACTIONS(1281), - [anon_sym_PIPE_AMP] = ACTIONS(1281), - [anon_sym_AMP_AMP] = ACTIONS(1281), - [anon_sym_PIPE_PIPE] = ACTIONS(1281), - [sym__special_characters] = ACTIONS(1281), - [anon_sym_DQUOTE] = ACTIONS(1281), - [anon_sym_DOLLAR] = ACTIONS(1281), - [sym_raw_string] = ACTIONS(1281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), - [anon_sym_BQUOTE] = ACTIONS(1281), - [anon_sym_LT_LPAREN] = ACTIONS(1281), - [anon_sym_GT_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1281), - [sym_word] = ACTIONS(1281), - [anon_sym_SEMI] = ACTIONS(1281), - [anon_sym_LF] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - }, - [873] = { - [sym_concatenation] = STATE(661), - [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), - [aux_sym_for_statement_repeat1] = STATE(1520), - [anon_sym_RPAREN] = ACTIONS(3148), - [sym__special_characters] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1287), - [anon_sym_DOLLAR] = ACTIONS(1289), - [sym_raw_string] = ACTIONS(1291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), - [anon_sym_BQUOTE] = ACTIONS(1297), - [anon_sym_LT_LPAREN] = ACTIONS(1299), - [anon_sym_GT_LPAREN] = ACTIONS(1299), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1301), - }, - [874] = { - [aux_sym_concatenation_repeat1] = STATE(377), - [sym__concat] = ACTIONS(686), - [sym_variable_name] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1307), - [anon_sym_SEMI_SEMI] = ACTIONS(1307), - [anon_sym_PIPE_AMP] = ACTIONS(1307), - [anon_sym_AMP_AMP] = ACTIONS(1307), - [anon_sym_PIPE_PIPE] = ACTIONS(1307), - [sym__special_characters] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1307), - [sym_raw_string] = ACTIONS(1307), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1307), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1307), - [anon_sym_BQUOTE] = ACTIONS(1307), - [anon_sym_LT_LPAREN] = ACTIONS(1307), - [anon_sym_GT_LPAREN] = ACTIONS(1307), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1307), - [sym_word] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1307), - [anon_sym_LF] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1307), - }, - [875] = { - [aux_sym_concatenation_repeat1] = STATE(377), - [sym__concat] = ACTIONS(686), - [sym_variable_name] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_SEMI_SEMI] = ACTIONS(1281), - [anon_sym_PIPE_AMP] = ACTIONS(1281), - [anon_sym_AMP_AMP] = ACTIONS(1281), - [anon_sym_PIPE_PIPE] = ACTIONS(1281), - [sym__special_characters] = ACTIONS(1281), - [anon_sym_DQUOTE] = ACTIONS(1281), - [anon_sym_DOLLAR] = ACTIONS(1281), - [sym_raw_string] = ACTIONS(1281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), - [anon_sym_BQUOTE] = ACTIONS(1281), - [anon_sym_LT_LPAREN] = ACTIONS(1281), - [anon_sym_GT_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1281), - [sym_word] = ACTIONS(1281), - [anon_sym_SEMI] = ACTIONS(1281), - [anon_sym_LF] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - }, - [876] = { - [sym__concat] = ACTIONS(1890), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [877] = { - [aux_sym_concatenation_repeat1] = STATE(877), - [sym__concat] = ACTIONS(3150), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [878] = { - [sym__concat] = ACTIONS(1927), - [sym_variable_name] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1929), - [anon_sym_PIPE_AMP] = ACTIONS(1929), - [anon_sym_AMP_AMP] = ACTIONS(1929), - [anon_sym_PIPE_PIPE] = ACTIONS(1929), - [sym__special_characters] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1929), - [sym_raw_string] = ACTIONS(1929), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), - [anon_sym_BQUOTE] = ACTIONS(1929), - [anon_sym_LT_LPAREN] = ACTIONS(1929), - [anon_sym_GT_LPAREN] = ACTIONS(1929), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1929), - [sym_word] = ACTIONS(1929), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - }, - [879] = { - [sym_concatenation] = STATE(1524), - [sym_string] = STATE(1523), - [sym_simple_expansion] = STATE(1523), - [sym_string_expansion] = STATE(1523), - [sym_expansion] = STATE(1523), - [sym_command_substitution] = STATE(1523), - [sym_process_substitution] = STATE(1523), - [anon_sym_RBRACE] = ACTIONS(3153), - [sym__special_characters] = ACTIONS(3155), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(3157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3159), - }, - [880] = { - [sym__concat] = ACTIONS(1972), - [sym_variable_name] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(1974), - [sym__special_characters] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(1974), - [sym_raw_string] = ACTIONS(1974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_BQUOTE] = ACTIONS(1974), - [anon_sym_LT_LPAREN] = ACTIONS(1974), - [anon_sym_GT_LPAREN] = ACTIONS(1974), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1974), - [sym_word] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_LF] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - }, - [881] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3161), - }, - [882] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3163), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [883] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(3165), - [sym_comment] = ACTIONS(56), - }, - [884] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1530), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [885] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1533), - [anon_sym_RBRACE] = ACTIONS(3171), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3173), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [886] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1535), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3175), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [887] = { - [sym__concat] = ACTIONS(2026), - [sym_variable_name] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_SEMI_SEMI] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(2028), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [sym__special_characters] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [anon_sym_DOLLAR] = ACTIONS(2028), - [sym_raw_string] = ACTIONS(2028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), - [anon_sym_BQUOTE] = ACTIONS(2028), - [anon_sym_LT_LPAREN] = ACTIONS(2028), - [anon_sym_GT_LPAREN] = ACTIONS(2028), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2028), - [sym_word] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - }, - [888] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3177), - }, - [889] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3179), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [890] = { - [sym__concat] = ACTIONS(2034), - [sym_variable_name] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_SEMI_SEMI] = ACTIONS(2036), - [anon_sym_PIPE_AMP] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [sym__special_characters] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2036), - [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(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2036), - [sym_word] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_LF] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - }, - [891] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3181), - }, - [892] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [893] = { - [sym__concat] = ACTIONS(2196), - [sym_variable_name] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_SEMI_SEMI] = ACTIONS(2198), - [anon_sym_PIPE_AMP] = ACTIONS(2198), - [anon_sym_AMP_AMP] = ACTIONS(2198), - [anon_sym_PIPE_PIPE] = ACTIONS(2198), - [sym__special_characters] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(2198), - [sym_raw_string] = ACTIONS(2198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), - [anon_sym_BQUOTE] = ACTIONS(2198), - [anon_sym_LT_LPAREN] = ACTIONS(2198), - [anon_sym_GT_LPAREN] = ACTIONS(2198), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2198), - [sym_word] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - }, - [894] = { - [sym__concat] = ACTIONS(2402), - [sym_variable_name] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_SEMI_SEMI] = ACTIONS(2404), - [anon_sym_PIPE_AMP] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [sym__special_characters] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2404), - [anon_sym_DOLLAR] = ACTIONS(2404), - [sym_raw_string] = ACTIONS(2404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2404), - [anon_sym_LT_LPAREN] = ACTIONS(2404), - [anon_sym_GT_LPAREN] = ACTIONS(2404), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2404), - [sym_word] = ACTIONS(2404), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LF] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - }, - [895] = { - [sym__concat] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [896] = { - [aux_sym_concatenation_repeat1] = STATE(896), - [sym__concat] = ACTIONS(3183), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [897] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1929), - [anon_sym_PIPE_AMP] = ACTIONS(1929), - [anon_sym_AMP_AMP] = ACTIONS(1929), - [anon_sym_PIPE_PIPE] = ACTIONS(1929), - [sym__special_characters] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1929), - [sym_raw_string] = ACTIONS(1929), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), - [anon_sym_BQUOTE] = ACTIONS(1929), - [anon_sym_LT_LPAREN] = ACTIONS(1929), - [anon_sym_GT_LPAREN] = ACTIONS(1929), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1929), - [sym_word] = ACTIONS(1929), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - }, - [898] = { - [sym_concatenation] = STATE(1542), - [sym_string] = STATE(1541), - [sym_simple_expansion] = STATE(1541), - [sym_string_expansion] = STATE(1541), - [sym_expansion] = STATE(1541), - [sym_command_substitution] = STATE(1541), - [sym_process_substitution] = STATE(1541), - [anon_sym_RBRACE] = ACTIONS(3186), - [sym__special_characters] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(3190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3192), - }, - [899] = { - [sym__concat] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(1974), - [sym__special_characters] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(1974), - [sym_raw_string] = ACTIONS(1974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_BQUOTE] = ACTIONS(1974), - [anon_sym_LT_LPAREN] = ACTIONS(1974), - [anon_sym_GT_LPAREN] = ACTIONS(1974), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1974), - [sym_word] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_LF] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - }, - [900] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3194), - }, - [901] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3196), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [902] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(3198), - [sym_comment] = ACTIONS(56), - }, - [903] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1548), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [904] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1551), - [anon_sym_RBRACE] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3206), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [905] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1553), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [906] = { - [sym__concat] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_SEMI_SEMI] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(2028), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [sym__special_characters] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [anon_sym_DOLLAR] = ACTIONS(2028), - [sym_raw_string] = ACTIONS(2028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), - [anon_sym_BQUOTE] = ACTIONS(2028), - [anon_sym_LT_LPAREN] = ACTIONS(2028), - [anon_sym_GT_LPAREN] = ACTIONS(2028), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2028), - [sym_word] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - }, - [907] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3210), - }, - [908] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [909] = { - [sym__concat] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_SEMI_SEMI] = ACTIONS(2036), - [anon_sym_PIPE_AMP] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [sym__special_characters] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2036), - [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(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2036), - [sym_word] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_LF] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - }, - [910] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3214), - }, - [911] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [912] = { - [sym__concat] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_SEMI_SEMI] = ACTIONS(2198), - [anon_sym_PIPE_AMP] = ACTIONS(2198), - [anon_sym_AMP_AMP] = ACTIONS(2198), - [anon_sym_PIPE_PIPE] = ACTIONS(2198), - [sym__special_characters] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(2198), - [sym_raw_string] = ACTIONS(2198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), - [anon_sym_BQUOTE] = ACTIONS(2198), - [anon_sym_LT_LPAREN] = ACTIONS(2198), - [anon_sym_GT_LPAREN] = ACTIONS(2198), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2198), - [sym_word] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - }, - [913] = { - [sym__concat] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_SEMI_SEMI] = ACTIONS(2404), - [anon_sym_PIPE_AMP] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [sym__special_characters] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2404), - [anon_sym_DOLLAR] = ACTIONS(2404), - [sym_raw_string] = ACTIONS(2404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2404), - [anon_sym_LT_LPAREN] = ACTIONS(2404), - [anon_sym_GT_LPAREN] = ACTIONS(2404), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2404), - [sym_word] = ACTIONS(2404), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LF] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - }, - [914] = { - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(1890), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_GT_GT] = ACTIONS(1890), - [anon_sym_AMP_GT] = ACTIONS(3066), - [anon_sym_AMP_GT_GT] = ACTIONS(1890), - [anon_sym_LT_AMP] = ACTIONS(1890), - [anon_sym_GT_AMP] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3066), - }, - [915] = { - [aux_sym_concatenation_repeat1] = STATE(915), - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(3216), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_GT_GT] = ACTIONS(1890), - [anon_sym_AMP_GT] = ACTIONS(3066), - [anon_sym_AMP_GT_GT] = ACTIONS(1890), - [anon_sym_LT_AMP] = ACTIONS(1890), - [anon_sym_GT_AMP] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3066), - }, - [916] = { - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [sym_variable_name] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(1927), - [anon_sym_AMP_GT] = ACTIONS(3071), - [anon_sym_AMP_GT_GT] = ACTIONS(1927), - [anon_sym_LT_AMP] = ACTIONS(1927), - [anon_sym_GT_AMP] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), - [anon_sym_BQUOTE] = ACTIONS(1927), - [anon_sym_LT_LPAREN] = ACTIONS(1927), - [anon_sym_GT_LPAREN] = ACTIONS(1927), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3071), - }, - [917] = { - [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), - [anon_sym_RBRACE] = ACTIONS(3219), - [sym__special_characters] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(3223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3225), - }, - [918] = { - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(1972), - [sym_variable_name] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_AMP_GT] = ACTIONS(3081), - [anon_sym_AMP_GT_GT] = ACTIONS(1972), - [anon_sym_LT_AMP] = ACTIONS(1972), - [anon_sym_GT_AMP] = ACTIONS(1972), - [sym__special_characters] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(3081), - [sym_raw_string] = ACTIONS(1972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1972), - [anon_sym_LT_LPAREN] = ACTIONS(1972), - [anon_sym_GT_LPAREN] = ACTIONS(1972), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3081), - }, - [919] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3227), - }, - [920] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [921] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(3231), - [sym_comment] = ACTIONS(56), - }, - [922] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1566), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3235), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [923] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1569), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3239), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [924] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1571), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3241), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [925] = { - [sym_file_descriptor] = ACTIONS(2026), - [sym__concat] = ACTIONS(2026), - [sym_variable_name] = ACTIONS(2026), - [anon_sym_LT] = ACTIONS(3099), - [anon_sym_GT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(2026), - [anon_sym_AMP_GT] = ACTIONS(3099), - [anon_sym_AMP_GT_GT] = ACTIONS(2026), - [anon_sym_LT_AMP] = ACTIONS(2026), - [anon_sym_GT_AMP] = ACTIONS(2026), - [sym__special_characters] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(2026), - [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), - [anon_sym_BQUOTE] = ACTIONS(2026), - [anon_sym_LT_LPAREN] = ACTIONS(2026), - [anon_sym_GT_LPAREN] = ACTIONS(2026), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3099), - }, - [926] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3243), - }, - [927] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [928] = { - [sym_file_descriptor] = ACTIONS(2034), - [sym__concat] = ACTIONS(2034), - [sym_variable_name] = ACTIONS(2034), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_AMP_GT] = ACTIONS(3105), - [anon_sym_AMP_GT_GT] = ACTIONS(2034), - [anon_sym_LT_AMP] = ACTIONS(2034), - [anon_sym_GT_AMP] = ACTIONS(2034), - [sym__special_characters] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(2034), - [anon_sym_DOLLAR] = ACTIONS(3105), - [sym_raw_string] = ACTIONS(2034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), - [anon_sym_BQUOTE] = ACTIONS(2034), - [anon_sym_LT_LPAREN] = ACTIONS(2034), - [anon_sym_GT_LPAREN] = ACTIONS(2034), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3105), - }, - [929] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3247), - }, - [930] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [931] = { - [sym_file_descriptor] = ACTIONS(2196), - [sym__concat] = ACTIONS(2196), - [sym_variable_name] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_GT_GT] = ACTIONS(2196), - [anon_sym_AMP_GT] = ACTIONS(3109), - [anon_sym_AMP_GT_GT] = ACTIONS(2196), - [anon_sym_LT_AMP] = ACTIONS(2196), - [anon_sym_GT_AMP] = ACTIONS(2196), - [sym__special_characters] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_DOLLAR] = ACTIONS(3109), - [sym_raw_string] = ACTIONS(2196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), - [anon_sym_BQUOTE] = ACTIONS(2196), - [anon_sym_LT_LPAREN] = ACTIONS(2196), - [anon_sym_GT_LPAREN] = ACTIONS(2196), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3109), - }, - [932] = { - [sym_file_descriptor] = ACTIONS(2402), - [sym__concat] = ACTIONS(2402), - [sym_variable_name] = ACTIONS(2402), - [anon_sym_LT] = ACTIONS(3111), - [anon_sym_GT] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(2402), - [anon_sym_AMP_GT] = ACTIONS(3111), - [anon_sym_AMP_GT_GT] = ACTIONS(2402), - [anon_sym_LT_AMP] = ACTIONS(2402), - [anon_sym_GT_AMP] = ACTIONS(2402), - [sym__special_characters] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_DOLLAR] = ACTIONS(3111), - [sym_raw_string] = ACTIONS(2402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), - [anon_sym_BQUOTE] = ACTIONS(2402), - [anon_sym_LT_LPAREN] = ACTIONS(2402), - [anon_sym_GT_LPAREN] = ACTIONS(2402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3111), - }, - [933] = { - [anon_sym_DQUOTE] = ACTIONS(3249), - [anon_sym_DOLLAR] = ACTIONS(3249), - [sym__string_content] = ACTIONS(3251), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3249), - [anon_sym_BQUOTE] = ACTIONS(3249), - [sym_comment] = ACTIONS(182), - }, - [934] = { - [sym_concatenation] = STATE(1578), - [sym_string] = STATE(1577), - [sym_simple_expansion] = STATE(1577), - [sym_string_expansion] = STATE(1577), - [sym_expansion] = STATE(1577), - [sym_command_substitution] = STATE(1577), - [sym_process_substitution] = STATE(1577), - [anon_sym_RBRACE] = ACTIONS(3253), - [sym__special_characters] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(3257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3259), - }, - [935] = { - [sym__concat] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(1974), - [sym__string_content] = ACTIONS(3081), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_BQUOTE] = ACTIONS(1974), - [sym_comment] = ACTIONS(182), - }, - [936] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3261), - }, - [937] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3263), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [938] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(3265), - [sym_comment] = ACTIONS(56), - }, - [939] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1584), - [anon_sym_RBRACE] = ACTIONS(3267), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3269), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [940] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1587), - [anon_sym_RBRACE] = ACTIONS(3271), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3273), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [941] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1589), - [anon_sym_RBRACE] = ACTIONS(3253), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3275), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [942] = { - [sym__concat] = ACTIONS(2026), - [anon_sym_DQUOTE] = ACTIONS(2028), - [anon_sym_DOLLAR] = ACTIONS(2028), - [sym__string_content] = ACTIONS(3099), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), - [anon_sym_BQUOTE] = ACTIONS(2028), - [sym_comment] = ACTIONS(182), - }, - [943] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3277), - }, - [944] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3279), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [945] = { - [sym__concat] = ACTIONS(2034), - [anon_sym_DQUOTE] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2036), - [sym__string_content] = ACTIONS(3105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2036), - [anon_sym_BQUOTE] = ACTIONS(2036), - [sym_comment] = ACTIONS(182), - }, - [946] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3281), - }, - [947] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3253), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [948] = { - [sym__concat] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(2198), - [sym__string_content] = ACTIONS(3109), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), - [anon_sym_BQUOTE] = ACTIONS(2198), - [sym_comment] = ACTIONS(182), - }, - [949] = { - [aux_sym_concatenation_repeat1] = STATE(632), - [sym__concat] = ACTIONS(3283), - [anon_sym_RBRACK] = ACTIONS(3285), - [sym_comment] = ACTIONS(56), - }, - [950] = { - [aux_sym_concatenation_repeat1] = STATE(632), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACK] = ACTIONS(3289), - [sym_comment] = ACTIONS(56), - }, - [951] = { - [sym__concat] = ACTIONS(3291), - [anon_sym_RBRACK] = ACTIONS(3289), - [sym_comment] = ACTIONS(56), - }, - [952] = { - [sym_file_descriptor] = ACTIONS(3293), - [sym__concat] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_SEMI_SEMI] = ACTIONS(3295), - [anon_sym_PIPE_AMP] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_EQ_TILDE] = ACTIONS(3295), - [anon_sym_EQ_EQ] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_GT_GT] = ACTIONS(3295), - [anon_sym_AMP_GT] = ACTIONS(3295), - [anon_sym_AMP_GT_GT] = ACTIONS(3295), - [anon_sym_LT_AMP] = ACTIONS(3295), - [anon_sym_GT_AMP] = ACTIONS(3295), - [anon_sym_LT_LT] = ACTIONS(3295), - [anon_sym_LT_LT_DASH] = ACTIONS(3295), - [anon_sym_LT_LT_LT] = ACTIONS(3295), - [sym__special_characters] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_DOLLAR] = ACTIONS(3295), - [sym_raw_string] = ACTIONS(3295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), - [anon_sym_BQUOTE] = ACTIONS(3295), - [anon_sym_LT_LPAREN] = ACTIONS(3295), - [anon_sym_GT_LPAREN] = ACTIONS(3295), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - }, - [953] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(3299), - [sym_comment] = ACTIONS(56), - }, - [954] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1602), - [anon_sym_DQUOTE] = ACTIONS(3301), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [955] = { - [sym_string] = STATE(1604), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(3303), - [sym_raw_string] = ACTIONS(3305), - [anon_sym_POUND] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3307), - [anon_sym_STAR] = ACTIONS(3303), - [anon_sym_AT] = ACTIONS(3303), - [anon_sym_QMARK] = ACTIONS(3303), - [anon_sym_0] = ACTIONS(3309), - [anon_sym__] = ACTIONS(3309), - }, - [956] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(3311), - [sym_comment] = ACTIONS(56), - }, - [957] = { - [sym_subscript] = STATE(1611), - [sym_variable_name] = ACTIONS(3313), - [anon_sym_DOLLAR] = ACTIONS(3315), - [anon_sym_POUND] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3315), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3315), - [anon_sym_AT] = ACTIONS(3315), - [anon_sym_QMARK] = ACTIONS(3315), - [anon_sym_0] = ACTIONS(3321), - [anon_sym__] = ACTIONS(3321), - }, - [958] = { - [sym_for_statement] = STATE(1612), - [sym_while_statement] = STATE(1612), - [sym_if_statement] = STATE(1612), - [sym_case_statement] = STATE(1612), - [sym_function_definition] = STATE(1612), - [sym_subshell] = STATE(1612), - [sym_pipeline] = STATE(1612), - [sym_list] = STATE(1612), - [sym_command] = STATE(1612), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1612), - [sym_variable_assignment] = STATE(1613), - [sym_declaration_command] = STATE(1612), - [sym_unset_command] = STATE(1612), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [959] = { - [sym_for_statement] = STATE(1614), - [sym_while_statement] = STATE(1614), - [sym_if_statement] = STATE(1614), - [sym_case_statement] = STATE(1614), - [sym_function_definition] = STATE(1614), - [sym_subshell] = STATE(1614), - [sym_pipeline] = STATE(1614), - [sym_list] = STATE(1614), - [sym_command] = STATE(1614), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1614), - [sym_variable_assignment] = STATE(1615), - [sym_declaration_command] = STATE(1614), - [sym_unset_command] = STATE(1614), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [960] = { - [sym_for_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_case_statement] = STATE(1616), - [sym_function_definition] = STATE(1616), - [sym_subshell] = STATE(1616), - [sym_pipeline] = STATE(1616), - [sym_list] = STATE(1616), - [sym_command] = STATE(1616), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1616), - [sym_variable_assignment] = STATE(1617), - [sym_declaration_command] = STATE(1616), - [sym_unset_command] = STATE(1616), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [961] = { - [anon_sym_RBRACE] = ACTIONS(3311), - [sym_comment] = ACTIONS(56), - }, - [962] = { - [sym_string] = STATE(1618), - [sym_simple_expansion] = STATE(1618), - [sym_string_expansion] = STATE(1618), - [sym_expansion] = STATE(1618), - [sym_command_substitution] = STATE(1618), - [sym_process_substitution] = STATE(1618), - [sym__special_characters] = ACTIONS(3323), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(3325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3323), - }, - [963] = { - [aux_sym_concatenation_repeat1] = STATE(1619), - [sym__concat] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(790), - [anon_sym_EQ] = ACTIONS(1571), - [sym__special_characters] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(1571), - [sym_raw_string] = ACTIONS(790), - [anon_sym_POUND] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_COLON] = ACTIONS(1571), - [anon_sym_COLON_QMARK] = ACTIONS(1571), - [anon_sym_COLON_DASH] = ACTIONS(1571), - [anon_sym_PERCENT] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(792), - }, - [964] = { - [sym__concat] = ACTIONS(794), - [anon_sym_RBRACE] = ACTIONS(794), - [anon_sym_EQ] = ACTIONS(1573), - [sym__special_characters] = ACTIONS(796), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(794), - [anon_sym_POUND] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_COLON] = ACTIONS(1573), - [anon_sym_COLON_QMARK] = ACTIONS(1573), - [anon_sym_COLON_DASH] = ACTIONS(1573), - [anon_sym_PERCENT] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(796), - }, - [965] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [966] = { - [sym__concat] = ACTIONS(826), - [anon_sym_RBRACE] = ACTIONS(826), - [anon_sym_EQ] = ACTIONS(1577), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(826), - [anon_sym_POUND] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_COLON_QMARK] = ACTIONS(1577), - [anon_sym_COLON_DASH] = ACTIONS(1577), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(828), - }, - [967] = { - [sym__concat] = ACTIONS(830), - [anon_sym_RBRACE] = ACTIONS(830), - [anon_sym_EQ] = ACTIONS(1579), - [sym__special_characters] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(1579), - [sym_raw_string] = ACTIONS(830), - [anon_sym_POUND] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_COLON] = ACTIONS(1579), - [anon_sym_COLON_QMARK] = ACTIONS(1579), - [anon_sym_COLON_DASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(832), - }, - [968] = { - [sym__concat] = ACTIONS(834), - [anon_sym_RBRACE] = ACTIONS(834), - [anon_sym_EQ] = ACTIONS(1581), - [sym__special_characters] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(1581), - [sym_raw_string] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_COLON] = ACTIONS(1581), - [anon_sym_COLON_QMARK] = ACTIONS(1581), - [anon_sym_COLON_DASH] = ACTIONS(1581), - [anon_sym_PERCENT] = ACTIONS(1581), - [anon_sym_DASH] = ACTIONS(1581), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(836), - }, - [969] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(3329), - [sym_comment] = ACTIONS(56), - }, - [970] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1624), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3333), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [971] = { - [sym_subscript] = STATE(1628), - [sym_variable_name] = ACTIONS(3335), - [anon_sym_DOLLAR] = ACTIONS(3337), - [anon_sym_DASH] = ACTIONS(3337), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3337), - [anon_sym_AT] = ACTIONS(3337), - [anon_sym_QMARK] = ACTIONS(3337), - [anon_sym_0] = ACTIONS(3341), - [anon_sym__] = ACTIONS(3341), - }, - [972] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1631), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3345), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [973] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1634), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3349), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [974] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1636), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [975] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3353), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [976] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3353), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [977] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(3353), - [sym_comment] = ACTIONS(56), - }, - [978] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(3353), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [979] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3355), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [980] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3355), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [981] = { - [sym_file_descriptor] = ACTIONS(3357), - [sym__concat] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_PIPE_AMP] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_EQ_TILDE] = ACTIONS(3359), - [anon_sym_EQ_EQ] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_GT_GT] = ACTIONS(3359), - [anon_sym_AMP_GT] = ACTIONS(3359), - [anon_sym_AMP_GT_GT] = ACTIONS(3359), - [anon_sym_LT_AMP] = ACTIONS(3359), - [anon_sym_GT_AMP] = ACTIONS(3359), - [anon_sym_LT_LT] = ACTIONS(3359), - [anon_sym_LT_LT_DASH] = ACTIONS(3359), - [anon_sym_LT_LT_LT] = ACTIONS(3359), - [sym__special_characters] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_DOLLAR] = ACTIONS(3359), - [sym_raw_string] = ACTIONS(3359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), - [anon_sym_BQUOTE] = ACTIONS(3359), - [anon_sym_LT_LPAREN] = ACTIONS(3359), - [anon_sym_GT_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - }, - [982] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_EQ] = ACTIONS(3363), - [sym__special_characters] = ACTIONS(3366), - [anon_sym_DQUOTE] = ACTIONS(3369), - [anon_sym_DOLLAR] = ACTIONS(3372), - [sym_raw_string] = ACTIONS(3375), - [anon_sym_POUND] = ACTIONS(3378), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3381), - [anon_sym_COLON] = ACTIONS(3363), - [anon_sym_COLON_QMARK] = ACTIONS(3363), - [anon_sym_COLON_DASH] = ACTIONS(3363), - [anon_sym_PERCENT] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3384), - [anon_sym_BQUOTE] = ACTIONS(3387), - [anon_sym_LT_LPAREN] = ACTIONS(3390), - [anon_sym_GT_LPAREN] = ACTIONS(3390), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3393), - }, - [983] = { - [sym_concatenation] = STATE(1641), - [sym_string] = STATE(1640), - [sym_simple_expansion] = STATE(1640), - [sym_string_expansion] = STATE(1640), - [sym_expansion] = STATE(1640), - [sym_command_substitution] = STATE(1640), - [sym_process_substitution] = STATE(1640), - [anon_sym_RBRACE] = ACTIONS(3311), - [sym__special_characters] = ACTIONS(3396), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(3398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3400), - }, - [984] = { - [sym_file_descriptor] = ACTIONS(3402), - [sym__concat] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_SEMI_SEMI] = ACTIONS(3404), - [anon_sym_PIPE_AMP] = ACTIONS(3404), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3404), - [anon_sym_EQ_TILDE] = ACTIONS(3404), - [anon_sym_EQ_EQ] = ACTIONS(3404), - [anon_sym_LT] = ACTIONS(3404), - [anon_sym_GT] = ACTIONS(3404), - [anon_sym_GT_GT] = ACTIONS(3404), - [anon_sym_AMP_GT] = ACTIONS(3404), - [anon_sym_AMP_GT_GT] = ACTIONS(3404), - [anon_sym_LT_AMP] = ACTIONS(3404), - [anon_sym_GT_AMP] = ACTIONS(3404), - [anon_sym_LT_LT] = ACTIONS(3404), - [anon_sym_LT_LT_DASH] = ACTIONS(3404), - [anon_sym_LT_LT_LT] = ACTIONS(3404), - [sym__special_characters] = ACTIONS(3404), - [anon_sym_DQUOTE] = ACTIONS(3404), - [anon_sym_DOLLAR] = ACTIONS(3404), - [sym_raw_string] = ACTIONS(3404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), - [anon_sym_BQUOTE] = ACTIONS(3404), - [anon_sym_LT_LPAREN] = ACTIONS(3404), - [anon_sym_GT_LPAREN] = ACTIONS(3404), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3404), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - }, - [985] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3406), - }, - [986] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3408), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [987] = { - [sym_file_descriptor] = ACTIONS(3410), - [sym__concat] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [anon_sym_EQ_TILDE] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT] = ACTIONS(3412), - [anon_sym_GT] = ACTIONS(3412), - [anon_sym_GT_GT] = ACTIONS(3412), - [anon_sym_AMP_GT] = ACTIONS(3412), - [anon_sym_AMP_GT_GT] = ACTIONS(3412), - [anon_sym_LT_AMP] = ACTIONS(3412), - [anon_sym_GT_AMP] = ACTIONS(3412), - [anon_sym_LT_LT] = ACTIONS(3412), - [anon_sym_LT_LT_DASH] = ACTIONS(3412), - [anon_sym_LT_LT_LT] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(3412), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3412), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - }, - [988] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3414), - }, - [989] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3416), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [990] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3418), - }, - [991] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [992] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1648), - [anon_sym_RBRACE] = ACTIONS(3420), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [993] = { - [sym_file_descriptor] = ACTIONS(3422), - [sym__concat] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_SEMI_SEMI] = ACTIONS(3424), - [anon_sym_PIPE_AMP] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_PIPE_PIPE] = ACTIONS(3424), - [anon_sym_EQ_TILDE] = ACTIONS(3424), - [anon_sym_EQ_EQ] = ACTIONS(3424), - [anon_sym_LT] = ACTIONS(3424), - [anon_sym_GT] = ACTIONS(3424), - [anon_sym_GT_GT] = ACTIONS(3424), - [anon_sym_AMP_GT] = ACTIONS(3424), - [anon_sym_AMP_GT_GT] = ACTIONS(3424), - [anon_sym_LT_AMP] = ACTIONS(3424), - [anon_sym_GT_AMP] = ACTIONS(3424), - [anon_sym_LT_LT] = ACTIONS(3424), - [anon_sym_LT_LT_DASH] = ACTIONS(3424), - [anon_sym_LT_LT_LT] = ACTIONS(3424), - [sym__special_characters] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [anon_sym_DOLLAR] = ACTIONS(3424), - [sym_raw_string] = ACTIONS(3424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), - [anon_sym_BQUOTE] = ACTIONS(3424), - [anon_sym_LT_LPAREN] = ACTIONS(3424), - [anon_sym_GT_LPAREN] = ACTIONS(3424), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - }, - [994] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1650), - [anon_sym_RBRACE] = ACTIONS(3426), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [995] = { - [sym_file_descriptor] = ACTIONS(1279), - [sym_variable_name] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(3428), - [anon_sym_RPAREN] = ACTIONS(1279), - [anon_sym_PIPE_AMP] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(3428), - [anon_sym_GT] = ACTIONS(3428), - [anon_sym_GT_GT] = ACTIONS(1279), - [anon_sym_AMP_GT] = ACTIONS(3428), - [anon_sym_AMP_GT_GT] = ACTIONS(1279), - [anon_sym_LT_AMP] = ACTIONS(1279), - [anon_sym_GT_AMP] = ACTIONS(1279), - [sym__special_characters] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(3428), - [sym_raw_string] = ACTIONS(1279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), - [anon_sym_BQUOTE] = ACTIONS(1279), - [anon_sym_LT_LPAREN] = ACTIONS(1279), - [anon_sym_GT_LPAREN] = ACTIONS(1279), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3428), - }, - [996] = { - [sym_concatenation] = STATE(661), - [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), - [aux_sym_for_statement_repeat1] = STATE(1652), - [anon_sym_RPAREN] = ACTIONS(3430), - [sym__special_characters] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1287), - [anon_sym_DOLLAR] = ACTIONS(1289), - [sym_raw_string] = ACTIONS(1291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), - [anon_sym_BQUOTE] = ACTIONS(1297), - [anon_sym_LT_LPAREN] = ACTIONS(1299), - [anon_sym_GT_LPAREN] = ACTIONS(1299), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1301), - }, - [997] = { - [aux_sym_concatenation_repeat1] = STATE(1654), - [sym_file_descriptor] = ACTIONS(1303), - [sym__concat] = ACTIONS(3432), - [sym_variable_name] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(3434), - [anon_sym_RPAREN] = ACTIONS(1303), - [anon_sym_PIPE_AMP] = ACTIONS(1303), - [anon_sym_AMP_AMP] = ACTIONS(1303), - [anon_sym_PIPE_PIPE] = ACTIONS(1303), - [anon_sym_LT] = ACTIONS(3434), - [anon_sym_GT] = ACTIONS(3434), - [anon_sym_GT_GT] = ACTIONS(1303), - [anon_sym_AMP_GT] = ACTIONS(3434), - [anon_sym_AMP_GT_GT] = ACTIONS(1303), - [anon_sym_LT_AMP] = ACTIONS(1303), - [anon_sym_GT_AMP] = ACTIONS(1303), - [sym__special_characters] = ACTIONS(3434), - [anon_sym_DQUOTE] = ACTIONS(1303), - [anon_sym_DOLLAR] = ACTIONS(3434), - [sym_raw_string] = ACTIONS(1303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1303), - [anon_sym_BQUOTE] = ACTIONS(1303), - [anon_sym_LT_LPAREN] = ACTIONS(1303), - [anon_sym_GT_LPAREN] = ACTIONS(1303), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3434), - }, - [998] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1656), - [anon_sym_DQUOTE] = ACTIONS(3436), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [999] = { - [sym_string] = STATE(1658), - [anon_sym_DQUOTE] = ACTIONS(2046), - [anon_sym_DOLLAR] = ACTIONS(3438), - [sym_raw_string] = ACTIONS(3440), - [anon_sym_POUND] = ACTIONS(3438), - [anon_sym_DASH] = ACTIONS(3438), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3442), - [anon_sym_STAR] = ACTIONS(3438), - [anon_sym_AT] = ACTIONS(3438), - [anon_sym_QMARK] = ACTIONS(3438), - [anon_sym_0] = ACTIONS(3444), - [anon_sym__] = ACTIONS(3444), - }, - [1000] = { - [aux_sym_concatenation_repeat1] = STATE(1654), - [sym_file_descriptor] = ACTIONS(1279), - [sym__concat] = ACTIONS(3432), - [sym_variable_name] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(3428), - [anon_sym_RPAREN] = ACTIONS(1279), - [anon_sym_PIPE_AMP] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(3428), - [anon_sym_GT] = ACTIONS(3428), - [anon_sym_GT_GT] = ACTIONS(1279), - [anon_sym_AMP_GT] = ACTIONS(3428), - [anon_sym_AMP_GT_GT] = ACTIONS(1279), - [anon_sym_LT_AMP] = ACTIONS(1279), - [anon_sym_GT_AMP] = ACTIONS(1279), - [sym__special_characters] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(3428), - [sym_raw_string] = ACTIONS(1279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), - [anon_sym_BQUOTE] = ACTIONS(1279), - [anon_sym_LT_LPAREN] = ACTIONS(1279), - [anon_sym_GT_LPAREN] = ACTIONS(1279), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3428), - }, - [1001] = { - [sym_subscript] = STATE(1664), - [sym_variable_name] = ACTIONS(3446), - [anon_sym_DOLLAR] = ACTIONS(3448), - [anon_sym_POUND] = ACTIONS(3450), - [anon_sym_DASH] = ACTIONS(3448), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3452), - [anon_sym_STAR] = ACTIONS(3448), - [anon_sym_AT] = ACTIONS(3448), - [anon_sym_QMARK] = ACTIONS(3448), - [anon_sym_0] = ACTIONS(3454), - [anon_sym__] = ACTIONS(3454), - }, - [1002] = { - [sym_for_statement] = STATE(1665), - [sym_while_statement] = STATE(1665), - [sym_if_statement] = STATE(1665), - [sym_case_statement] = STATE(1665), - [sym_function_definition] = STATE(1665), - [sym_subshell] = STATE(1665), - [sym_pipeline] = STATE(1665), - [sym_list] = STATE(1665), - [sym_command] = STATE(1665), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1665), - [sym_variable_assignment] = STATE(1666), - [sym_declaration_command] = STATE(1665), - [sym_unset_command] = STATE(1665), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [1003] = { - [sym_for_statement] = STATE(1667), - [sym_while_statement] = STATE(1667), - [sym_if_statement] = STATE(1667), - [sym_case_statement] = STATE(1667), - [sym_function_definition] = STATE(1667), - [sym_subshell] = STATE(1667), - [sym_pipeline] = STATE(1667), - [sym_list] = STATE(1667), - [sym_command] = STATE(1667), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1667), - [sym_variable_assignment] = STATE(1668), - [sym_declaration_command] = STATE(1667), - [sym_unset_command] = STATE(1667), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [1004] = { - [sym_for_statement] = STATE(1669), - [sym_while_statement] = STATE(1669), - [sym_if_statement] = STATE(1669), - [sym_case_statement] = STATE(1669), - [sym_function_definition] = STATE(1669), - [sym_subshell] = STATE(1669), - [sym_pipeline] = STATE(1669), - [sym_list] = STATE(1669), - [sym_command] = STATE(1669), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1669), - [sym_variable_assignment] = STATE(1670), - [sym_declaration_command] = STATE(1669), - [sym_unset_command] = STATE(1669), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [1005] = { - [sym_concatenation] = STATE(689), - [sym_string] = STATE(684), - [sym_simple_expansion] = STATE(684), - [sym_string_expansion] = STATE(684), - [sym_expansion] = STATE(684), - [sym_command_substitution] = STATE(684), - [sym_process_substitution] = STATE(684), - [aux_sym_for_statement_repeat1] = STATE(1671), - [sym__special_characters] = ACTIONS(1329), - [anon_sym_DQUOTE] = ACTIONS(1331), - [anon_sym_DOLLAR] = ACTIONS(1333), - [sym_raw_string] = ACTIONS(1335), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1337), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1339), - [anon_sym_BQUOTE] = ACTIONS(1341), - [anon_sym_LT_LPAREN] = ACTIONS(1343), - [anon_sym_GT_LPAREN] = ACTIONS(1343), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1345), - }, - [1006] = { - [sym_do_group] = STATE(1673), - [anon_sym_do] = ACTIONS(3456), - [sym_comment] = ACTIONS(56), - }, - [1007] = { - [sym__terminated_statement] = STATE(694), - [sym_for_statement] = STATE(695), - [sym_while_statement] = STATE(695), - [sym_if_statement] = STATE(695), - [sym_case_statement] = STATE(695), - [sym_function_definition] = STATE(695), - [sym_subshell] = STATE(695), - [sym_pipeline] = STATE(695), - [sym_list] = STATE(695), - [sym_command] = STATE(695), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(695), - [sym_variable_assignment] = STATE(696), - [sym_declaration_command] = STATE(695), - [sym_unset_command] = STATE(695), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1675), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [1008] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [aux_sym_while_statement_repeat1] = STATE(1676), - [sym_file_descriptor] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(3460), - [anon_sym_RPAREN] = ACTIONS(3462), - [anon_sym_PIPE_AMP] = ACTIONS(3462), - [anon_sym_AMP_AMP] = ACTIONS(3462), - [anon_sym_PIPE_PIPE] = ACTIONS(3462), - [anon_sym_LT] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_GT_GT] = ACTIONS(992), - [anon_sym_AMP_GT] = ACTIONS(990), - [anon_sym_AMP_GT_GT] = ACTIONS(992), - [anon_sym_LT_AMP] = ACTIONS(992), - [anon_sym_GT_AMP] = ACTIONS(992), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(998), - [sym_comment] = ACTIONS(56), - }, - [1009] = { - [sym__terminated_statement] = STATE(702), - [sym_for_statement] = STATE(703), - [sym_while_statement] = STATE(703), - [sym_if_statement] = STATE(703), - [sym_elif_clause] = STATE(704), - [sym_else_clause] = STATE(1678), - [sym_case_statement] = STATE(703), - [sym_function_definition] = STATE(703), - [sym_subshell] = STATE(703), - [sym_pipeline] = STATE(703), - [sym_list] = STATE(703), - [sym_command] = STATE(703), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(703), - [sym_variable_assignment] = STATE(706), - [sym_declaration_command] = STATE(703), - [sym_unset_command] = STATE(703), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1679), - [aux_sym_if_statement_repeat1] = STATE(1680), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(3464), - [anon_sym_elif] = ACTIONS(1355), - [anon_sym_else] = ACTIONS(1357), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [1010] = { - [anon_sym_SEMI_SEMI] = ACTIONS(3466), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3466), - [anon_sym_LF] = ACTIONS(3466), - [anon_sym_AMP] = ACTIONS(3466), - }, - [1011] = { - [anon_sym_in] = ACTIONS(3468), - [sym_comment] = ACTIONS(56), - }, - [1012] = { - [anon_sym_SEMI_SEMI] = ACTIONS(3470), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3470), - [anon_sym_LF] = ACTIONS(3470), - [anon_sym_AMP] = ACTIONS(3470), - }, - [1013] = { - [anon_sym_in] = ACTIONS(3472), - [sym_comment] = ACTIONS(56), - }, - [1014] = { - [anon_sym_RPAREN] = ACTIONS(3474), - [sym_comment] = ACTIONS(56), - }, - [1015] = { - [sym__terminated_statement] = STATE(734), - [sym_for_statement] = STATE(735), - [sym_while_statement] = STATE(735), - [sym_if_statement] = STATE(735), - [sym_case_statement] = STATE(735), - [sym_function_definition] = STATE(735), - [sym_subshell] = STATE(735), - [sym_pipeline] = STATE(735), - [sym_list] = STATE(735), - [sym_command] = STATE(735), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(735), - [sym_variable_assignment] = STATE(736), - [sym_declaration_command] = STATE(735), - [sym_unset_command] = STATE(735), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1687), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(3476), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [1016] = { - [sym_file_redirect] = STATE(1690), - [sym_file_descriptor] = ACTIONS(3478), - [anon_sym_PIPE] = ACTIONS(3480), - [anon_sym_RPAREN] = ACTIONS(3482), - [anon_sym_PIPE_AMP] = ACTIONS(3482), - [anon_sym_AMP_AMP] = ACTIONS(3482), - [anon_sym_PIPE_PIPE] = ACTIONS(3482), - [anon_sym_LT] = ACTIONS(3484), - [anon_sym_GT] = ACTIONS(3484), - [anon_sym_GT_GT] = ACTIONS(3486), - [anon_sym_AMP_GT] = ACTIONS(3484), - [anon_sym_AMP_GT_GT] = ACTIONS(3486), - [anon_sym_LT_AMP] = ACTIONS(3486), - [anon_sym_GT_AMP] = ACTIONS(3486), - [sym_comment] = ACTIONS(56), - }, - [1017] = { - [anon_sym_PIPE] = ACTIONS(3488), - [anon_sym_RPAREN] = ACTIONS(3490), - [anon_sym_PIPE_AMP] = ACTIONS(3490), - [anon_sym_AMP_AMP] = ACTIONS(3490), - [anon_sym_PIPE_PIPE] = ACTIONS(3490), - [anon_sym_BQUOTE] = ACTIONS(3490), - [sym_comment] = ACTIONS(56), - }, - [1018] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_RPAREN] = ACTIONS(3492), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1104), - [sym_raw_string] = ACTIONS(1102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), - [anon_sym_BQUOTE] = ACTIONS(1102), - [anon_sym_LT_LPAREN] = ACTIONS(1102), - [anon_sym_GT_LPAREN] = ACTIONS(1102), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1106), - }, - [1019] = { - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_RPAREN] = ACTIONS(3494), - [anon_sym_SEMI_SEMI] = ACTIONS(3496), - [anon_sym_PIPE_AMP] = ACTIONS(550), - [anon_sym_AMP_AMP] = ACTIONS(556), - [anon_sym_PIPE_PIPE] = ACTIONS(556), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3496), - [anon_sym_LF] = ACTIONS(3496), - [anon_sym_AMP] = ACTIONS(3496), - }, - [1020] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_RPAREN] = ACTIONS(3494), - [anon_sym_SEMI_SEMI] = ACTIONS(3496), - [anon_sym_PIPE_AMP] = ACTIONS(550), - [anon_sym_AMP_AMP] = ACTIONS(556), - [anon_sym_PIPE_PIPE] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(3496), - [anon_sym_LF] = ACTIONS(3496), - [anon_sym_AMP] = ACTIONS(3496), - }, - [1021] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [aux_sym_while_statement_repeat1] = STATE(1693), - [sym_file_descriptor] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(3498), - [anon_sym_RPAREN] = ACTIONS(3500), - [anon_sym_PIPE_AMP] = ACTIONS(3500), - [anon_sym_AMP_AMP] = ACTIONS(3500), - [anon_sym_PIPE_PIPE] = ACTIONS(3500), - [anon_sym_LT] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_GT_GT] = ACTIONS(992), - [anon_sym_AMP_GT] = ACTIONS(990), - [anon_sym_AMP_GT_GT] = ACTIONS(992), - [anon_sym_LT_AMP] = ACTIONS(992), - [anon_sym_GT_AMP] = ACTIONS(992), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(998), - [sym_comment] = ACTIONS(56), - }, - [1022] = { - [sym_concatenation] = STATE(1694), - [sym_string] = STATE(1697), - [sym_array] = STATE(1694), - [sym_simple_expansion] = STATE(1697), - [sym_string_expansion] = STATE(1697), - [sym_expansion] = STATE(1697), - [sym_command_substitution] = STATE(1697), - [sym_process_substitution] = STATE(1697), - [sym__empty_value] = ACTIONS(3502), - [anon_sym_LPAREN] = ACTIONS(3504), - [sym__special_characters] = ACTIONS(3506), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_DOLLAR] = ACTIONS(906), - [sym_raw_string] = ACTIONS(3508), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(912), - [anon_sym_BQUOTE] = ACTIONS(914), - [anon_sym_LT_LPAREN] = ACTIONS(916), - [anon_sym_GT_LPAREN] = ACTIONS(916), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3510), - }, - [1023] = { - [sym_variable_name] = ACTIONS(440), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_RPAREN] = ACTIONS(440), - [anon_sym_PIPE_AMP] = ACTIONS(440), - [anon_sym_AMP_AMP] = ACTIONS(440), - [anon_sym_PIPE_PIPE] = ACTIONS(440), - [sym__special_characters] = ACTIONS(2062), - [anon_sym_DQUOTE] = ACTIONS(440), - [anon_sym_DOLLAR] = ACTIONS(2062), - [sym_raw_string] = ACTIONS(440), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(440), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(440), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_LT_LPAREN] = ACTIONS(440), - [anon_sym_GT_LPAREN] = ACTIONS(440), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2062), - [sym_word] = ACTIONS(442), - }, - [1024] = { - [sym_string] = STATE(1698), - [sym_simple_expansion] = STATE(1698), - [sym_string_expansion] = STATE(1698), - [sym_expansion] = STATE(1698), - [sym_command_substitution] = STATE(1698), - [sym_process_substitution] = STATE(1698), - [sym__special_characters] = ACTIONS(3512), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_DOLLAR] = ACTIONS(906), - [sym_raw_string] = ACTIONS(3514), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(912), - [anon_sym_BQUOTE] = ACTIONS(914), - [anon_sym_LT_LPAREN] = ACTIONS(916), - [anon_sym_GT_LPAREN] = ACTIONS(916), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3512), - }, - [1025] = { - [aux_sym_concatenation_repeat1] = STATE(1699), - [sym__concat] = ACTIONS(2092), - [sym_variable_name] = ACTIONS(790), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [sym__special_characters] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(1571), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1571), - [sym_word] = ACTIONS(792), - }, - [1026] = { - [sym__concat] = ACTIONS(794), - [sym_variable_name] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [sym__special_characters] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1573), - [sym_word] = ACTIONS(796), - }, - [1027] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(3516), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1028] = { - [sym__concat] = ACTIONS(826), - [sym_variable_name] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [sym__special_characters] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1577), - [sym_word] = ACTIONS(828), - }, - [1029] = { - [sym__concat] = ACTIONS(830), - [sym_variable_name] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_RPAREN] = ACTIONS(830), - [anon_sym_PIPE_AMP] = ACTIONS(830), - [anon_sym_AMP_AMP] = ACTIONS(830), - [anon_sym_PIPE_PIPE] = ACTIONS(830), - [sym__special_characters] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(1579), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1579), - [sym_word] = ACTIONS(832), - }, - [1030] = { - [sym__concat] = ACTIONS(834), - [sym_variable_name] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [sym__special_characters] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(1581), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1581), - [sym_word] = ACTIONS(836), - }, - [1031] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(3518), - [sym_comment] = ACTIONS(56), - }, - [1032] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1704), - [anon_sym_RBRACE] = ACTIONS(3520), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3522), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1033] = { - [sym_subscript] = STATE(1708), - [sym_variable_name] = ACTIONS(3524), - [anon_sym_DOLLAR] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3526), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3528), - [anon_sym_STAR] = ACTIONS(3526), - [anon_sym_AT] = ACTIONS(3526), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_0] = ACTIONS(3530), - [anon_sym__] = ACTIONS(3530), - }, - [1034] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1711), - [anon_sym_RBRACE] = ACTIONS(3532), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3534), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1035] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1714), - [anon_sym_RBRACE] = ACTIONS(3536), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3538), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1036] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3540), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1037] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3540), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1038] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(3540), - [sym_comment] = ACTIONS(56), - }, - [1039] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(3540), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1040] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3542), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1041] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3542), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1042] = { - [sym_variable_assignment] = STATE(497), - [sym_subscript] = STATE(498), - [sym_concatenation] = STATE(497), - [sym_string] = STATE(491), - [sym_simple_expansion] = STATE(491), - [sym_string_expansion] = STATE(491), - [sym_expansion] = STATE(491), - [sym_command_substitution] = STATE(491), - [sym_process_substitution] = STATE(491), - [aux_sym_declaration_command_repeat1] = STATE(1042), - [sym_variable_name] = ACTIONS(3544), - [anon_sym_PIPE] = ACTIONS(3547), - [anon_sym_RPAREN] = ACTIONS(3549), - [anon_sym_PIPE_AMP] = ACTIONS(3549), - [anon_sym_AMP_AMP] = ACTIONS(3549), - [anon_sym_PIPE_PIPE] = ACTIONS(3549), - [sym__special_characters] = ACTIONS(3551), - [anon_sym_DQUOTE] = ACTIONS(3554), - [anon_sym_DOLLAR] = ACTIONS(3557), - [sym_raw_string] = ACTIONS(3560), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3566), - [anon_sym_BQUOTE] = ACTIONS(3569), - [anon_sym_LT_LPAREN] = ACTIONS(3572), - [anon_sym_GT_LPAREN] = ACTIONS(3572), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3575), - [sym_word] = ACTIONS(3578), - }, - [1043] = { - [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), - [sym__special_characters] = ACTIONS(3581), - [anon_sym_DQUOTE] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(930), - [sym_raw_string] = ACTIONS(3583), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(936), - [anon_sym_BQUOTE] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(940), - [anon_sym_GT_LPAREN] = ACTIONS(940), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3581), - }, - [1044] = { - [aux_sym_concatenation_repeat1] = STATE(1718), - [sym__concat] = ACTIONS(2124), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [sym__special_characters] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(1571), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1571), - [sym_word] = ACTIONS(792), - }, - [1045] = { - [sym__concat] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [sym__special_characters] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1573), - [sym_word] = ACTIONS(796), - }, - [1046] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(3585), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1047] = { - [sym__concat] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [sym__special_characters] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1577), - [sym_word] = ACTIONS(828), - }, - [1048] = { - [sym__concat] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_RPAREN] = ACTIONS(830), - [anon_sym_PIPE_AMP] = ACTIONS(830), - [anon_sym_AMP_AMP] = ACTIONS(830), - [anon_sym_PIPE_PIPE] = ACTIONS(830), - [sym__special_characters] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(1579), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1579), - [sym_word] = ACTIONS(832), - }, - [1049] = { - [sym__concat] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [sym__special_characters] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(1581), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1581), - [sym_word] = ACTIONS(836), - }, - [1050] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(3587), - [sym_comment] = ACTIONS(56), - }, - [1051] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1723), - [anon_sym_RBRACE] = ACTIONS(3589), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3591), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1052] = { - [sym_subscript] = STATE(1727), - [sym_variable_name] = ACTIONS(3593), - [anon_sym_DOLLAR] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3595), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3597), - [anon_sym_STAR] = ACTIONS(3595), - [anon_sym_AT] = ACTIONS(3595), - [anon_sym_QMARK] = ACTIONS(3595), - [anon_sym_0] = ACTIONS(3599), - [anon_sym__] = ACTIONS(3599), - }, - [1053] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1730), - [anon_sym_RBRACE] = ACTIONS(3601), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3603), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1054] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1733), - [anon_sym_RBRACE] = ACTIONS(3605), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3607), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1055] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3609), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1056] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3609), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1057] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(3609), - [sym_comment] = ACTIONS(56), - }, - [1058] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(3609), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1059] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3611), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1060] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3611), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1061] = { - [sym_concatenation] = STATE(509), - [sym_string] = STATE(503), - [sym_simple_expansion] = STATE(503), - [sym_string_expansion] = STATE(503), - [sym_expansion] = STATE(503), - [sym_command_substitution] = STATE(503), - [sym_process_substitution] = STATE(503), - [aux_sym_unset_command_repeat1] = STATE(1061), - [anon_sym_PIPE] = ACTIONS(3613), - [anon_sym_RPAREN] = ACTIONS(3615), - [anon_sym_PIPE_AMP] = ACTIONS(3615), - [anon_sym_AMP_AMP] = ACTIONS(3615), - [anon_sym_PIPE_PIPE] = ACTIONS(3615), - [sym__special_characters] = ACTIONS(3617), - [anon_sym_DQUOTE] = ACTIONS(3620), - [anon_sym_DOLLAR] = ACTIONS(3623), - [sym_raw_string] = ACTIONS(3626), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3632), - [anon_sym_BQUOTE] = ACTIONS(3635), - [anon_sym_LT_LPAREN] = ACTIONS(3638), - [anon_sym_GT_LPAREN] = ACTIONS(3638), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3641), - [sym_word] = ACTIONS(3644), - }, - [1062] = { - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_RPAREN] = ACTIONS(1890), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [anon_sym_EQ_TILDE] = ACTIONS(3066), - [anon_sym_EQ_EQ] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_GT_GT] = ACTIONS(1890), - [anon_sym_AMP_GT] = ACTIONS(3066), - [anon_sym_AMP_GT_GT] = ACTIONS(1890), - [anon_sym_LT_AMP] = ACTIONS(1890), - [anon_sym_GT_AMP] = ACTIONS(1890), - [anon_sym_LT_LT] = ACTIONS(3066), - [anon_sym_LT_LT_DASH] = ACTIONS(1890), - [anon_sym_LT_LT_LT] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1892), - }, - [1063] = { - [aux_sym_concatenation_repeat1] = STATE(1063), - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(3647), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_RPAREN] = ACTIONS(1890), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [anon_sym_EQ_TILDE] = ACTIONS(3066), - [anon_sym_EQ_EQ] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_GT_GT] = ACTIONS(1890), - [anon_sym_AMP_GT] = ACTIONS(3066), - [anon_sym_AMP_GT_GT] = ACTIONS(1890), - [anon_sym_LT_AMP] = ACTIONS(1890), - [anon_sym_GT_AMP] = ACTIONS(1890), - [anon_sym_LT_LT] = ACTIONS(3066), - [anon_sym_LT_LT_DASH] = ACTIONS(1890), - [anon_sym_LT_LT_LT] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1892), - }, - [1064] = { - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_PIPE_AMP] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [anon_sym_EQ_TILDE] = ACTIONS(3071), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(1927), - [anon_sym_AMP_GT] = ACTIONS(3071), - [anon_sym_AMP_GT_GT] = ACTIONS(1927), - [anon_sym_LT_AMP] = ACTIONS(1927), - [anon_sym_GT_AMP] = ACTIONS(1927), - [anon_sym_LT_LT] = ACTIONS(3071), - [anon_sym_LT_LT_DASH] = ACTIONS(1927), - [anon_sym_LT_LT_LT] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), - [anon_sym_BQUOTE] = ACTIONS(1927), - [anon_sym_LT_LPAREN] = ACTIONS(1927), - [anon_sym_GT_LPAREN] = ACTIONS(1927), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1929), - }, - [1065] = { - [sym_concatenation] = STATE(1739), - [sym_string] = STATE(1738), - [sym_simple_expansion] = STATE(1738), - [sym_string_expansion] = STATE(1738), - [sym_expansion] = STATE(1738), - [sym_command_substitution] = STATE(1738), - [sym_process_substitution] = STATE(1738), - [anon_sym_RBRACE] = ACTIONS(3650), - [sym__special_characters] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(3654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3656), - }, - [1066] = { - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [anon_sym_EQ_TILDE] = ACTIONS(3081), - [anon_sym_EQ_EQ] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_AMP_GT] = ACTIONS(3081), - [anon_sym_AMP_GT_GT] = ACTIONS(1972), - [anon_sym_LT_AMP] = ACTIONS(1972), - [anon_sym_GT_AMP] = ACTIONS(1972), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_LT_LT_DASH] = ACTIONS(1972), - [anon_sym_LT_LT_LT] = ACTIONS(1972), - [sym__special_characters] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(3081), - [sym_raw_string] = ACTIONS(1972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1972), - [anon_sym_LT_LPAREN] = ACTIONS(1972), - [anon_sym_GT_LPAREN] = ACTIONS(1972), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1974), - }, - [1067] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3658), - }, - [1068] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1069] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(3662), - [sym_comment] = ACTIONS(56), - }, - [1070] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1745), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3666), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1071] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1748), - [anon_sym_RBRACE] = ACTIONS(3668), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3670), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1072] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1750), - [anon_sym_RBRACE] = ACTIONS(3650), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3672), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1073] = { - [sym_file_descriptor] = ACTIONS(2026), - [sym__concat] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(2026), - [anon_sym_PIPE_AMP] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_EQ_TILDE] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3099), - [anon_sym_GT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(2026), - [anon_sym_AMP_GT] = ACTIONS(3099), - [anon_sym_AMP_GT_GT] = ACTIONS(2026), - [anon_sym_LT_AMP] = ACTIONS(2026), - [anon_sym_GT_AMP] = ACTIONS(2026), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_LT_LT_DASH] = ACTIONS(2026), - [anon_sym_LT_LT_LT] = ACTIONS(2026), - [sym__special_characters] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(2026), - [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), - [anon_sym_BQUOTE] = ACTIONS(2026), - [anon_sym_LT_LPAREN] = ACTIONS(2026), - [anon_sym_GT_LPAREN] = ACTIONS(2026), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2028), - }, - [1074] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3674), - }, - [1075] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3676), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1076] = { - [sym_file_descriptor] = ACTIONS(2034), - [sym__concat] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_RPAREN] = ACTIONS(2034), - [anon_sym_PIPE_AMP] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(3105), - [anon_sym_EQ_EQ] = ACTIONS(3105), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_AMP_GT] = ACTIONS(3105), - [anon_sym_AMP_GT_GT] = ACTIONS(2034), - [anon_sym_LT_AMP] = ACTIONS(2034), - [anon_sym_GT_AMP] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(3105), - [anon_sym_LT_LT_DASH] = ACTIONS(2034), - [anon_sym_LT_LT_LT] = ACTIONS(2034), - [sym__special_characters] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(2034), - [anon_sym_DOLLAR] = ACTIONS(3105), - [sym_raw_string] = ACTIONS(2034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), - [anon_sym_BQUOTE] = ACTIONS(2034), - [anon_sym_LT_LPAREN] = ACTIONS(2034), - [anon_sym_GT_LPAREN] = ACTIONS(2034), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2036), - }, - [1077] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3678), - }, - [1078] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3650), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1079] = { - [sym_file_descriptor] = ACTIONS(2196), - [sym__concat] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_RPAREN] = ACTIONS(2196), - [anon_sym_PIPE_AMP] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [anon_sym_EQ_TILDE] = ACTIONS(3109), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_GT_GT] = ACTIONS(2196), - [anon_sym_AMP_GT] = ACTIONS(3109), - [anon_sym_AMP_GT_GT] = ACTIONS(2196), - [anon_sym_LT_AMP] = ACTIONS(2196), - [anon_sym_GT_AMP] = ACTIONS(2196), - [anon_sym_LT_LT] = ACTIONS(3109), - [anon_sym_LT_LT_DASH] = ACTIONS(2196), - [anon_sym_LT_LT_LT] = ACTIONS(2196), - [sym__special_characters] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_DOLLAR] = ACTIONS(3109), - [sym_raw_string] = ACTIONS(2196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), - [anon_sym_BQUOTE] = ACTIONS(2196), - [anon_sym_LT_LPAREN] = ACTIONS(2196), - [anon_sym_GT_LPAREN] = ACTIONS(2196), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2198), - }, - [1080] = { - [sym_file_descriptor] = ACTIONS(2402), - [sym__concat] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_RPAREN] = ACTIONS(2402), - [anon_sym_PIPE_AMP] = ACTIONS(2402), - [anon_sym_AMP_AMP] = ACTIONS(2402), - [anon_sym_PIPE_PIPE] = ACTIONS(2402), - [anon_sym_EQ_TILDE] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3111), - [anon_sym_GT] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(2402), - [anon_sym_AMP_GT] = ACTIONS(3111), - [anon_sym_AMP_GT_GT] = ACTIONS(2402), - [anon_sym_LT_AMP] = ACTIONS(2402), - [anon_sym_GT_AMP] = ACTIONS(2402), - [anon_sym_LT_LT] = ACTIONS(3111), - [anon_sym_LT_LT_DASH] = ACTIONS(2402), - [anon_sym_LT_LT_LT] = ACTIONS(2402), - [sym__special_characters] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_DOLLAR] = ACTIONS(3111), - [sym_raw_string] = ACTIONS(2402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), - [anon_sym_BQUOTE] = ACTIONS(2402), - [anon_sym_LT_LPAREN] = ACTIONS(2402), - [anon_sym_GT_LPAREN] = ACTIONS(2402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2404), - }, - [1081] = { - [sym_compound_statement] = STATE(1754), - [anon_sym_LBRACE] = ACTIONS(2082), - [sym_comment] = ACTIONS(56), - }, - [1082] = { - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_PIPE_AMP] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_comment] = ACTIONS(56), - }, - [1083] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_RPAREN] = ACTIONS(3682), - [anon_sym_PIPE_AMP] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1084] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3684), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(3684), - [anon_sym_PIPE_PIPE] = ACTIONS(3684), - [sym_comment] = ACTIONS(56), - }, - [1085] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3684), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(3684), - [anon_sym_PIPE_PIPE] = ACTIONS(3684), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1086] = { - [sym_concatenation] = STATE(1757), - [sym_string] = STATE(1756), - [sym_simple_expansion] = STATE(1756), - [sym_string_expansion] = STATE(1756), - [sym_expansion] = STATE(1756), - [sym_command_substitution] = STATE(1756), - [sym_process_substitution] = STATE(1756), - [sym__special_characters] = ACTIONS(3686), - [anon_sym_DQUOTE] = ACTIONS(2224), - [anon_sym_DOLLAR] = ACTIONS(2226), - [sym_raw_string] = ACTIONS(3688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2232), - [anon_sym_BQUOTE] = ACTIONS(2234), - [anon_sym_LT_LPAREN] = ACTIONS(2236), - [anon_sym_GT_LPAREN] = ACTIONS(2236), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3690), - }, - [1087] = { - [aux_sym_concatenation_repeat1] = STATE(512), - [sym_file_descriptor] = ACTIONS(1557), - [sym__concat] = ACTIONS(946), - [anon_sym_PIPE] = ACTIONS(1555), - [anon_sym_RPAREN] = ACTIONS(1557), - [anon_sym_PIPE_AMP] = ACTIONS(1557), - [anon_sym_AMP_AMP] = ACTIONS(1557), - [anon_sym_PIPE_PIPE] = ACTIONS(1557), - [anon_sym_EQ_TILDE] = ACTIONS(1555), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_GT] = ACTIONS(1555), - [anon_sym_GT_GT] = ACTIONS(1557), - [anon_sym_AMP_GT] = ACTIONS(1555), - [anon_sym_AMP_GT_GT] = ACTIONS(1557), - [anon_sym_LT_AMP] = ACTIONS(1557), - [anon_sym_GT_AMP] = ACTIONS(1557), - [anon_sym_LT_LT] = ACTIONS(1555), - [anon_sym_LT_LT_DASH] = ACTIONS(1557), - [anon_sym_LT_LT_LT] = ACTIONS(1557), - [sym__special_characters] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_DOLLAR] = ACTIONS(1555), - [sym_raw_string] = ACTIONS(1557), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1557), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1557), - [anon_sym_BQUOTE] = ACTIONS(1557), - [anon_sym_LT_LPAREN] = ACTIONS(1557), - [anon_sym_GT_LPAREN] = ACTIONS(1557), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1559), - }, - [1088] = { - [aux_sym_concatenation_repeat1] = STATE(512), - [sym_file_descriptor] = ACTIONS(1563), - [sym__concat] = ACTIONS(946), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_RPAREN] = ACTIONS(1563), - [anon_sym_PIPE_AMP] = ACTIONS(1563), - [anon_sym_AMP_AMP] = ACTIONS(1563), - [anon_sym_PIPE_PIPE] = ACTIONS(1563), - [anon_sym_EQ_TILDE] = ACTIONS(1561), - [anon_sym_EQ_EQ] = ACTIONS(1561), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_GT] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1563), - [anon_sym_AMP_GT] = ACTIONS(1561), - [anon_sym_AMP_GT_GT] = ACTIONS(1563), - [anon_sym_LT_AMP] = ACTIONS(1563), - [anon_sym_GT_AMP] = ACTIONS(1563), - [anon_sym_LT_LT] = ACTIONS(1561), - [anon_sym_LT_LT_DASH] = ACTIONS(1563), - [anon_sym_LT_LT_LT] = ACTIONS(1563), - [sym__special_characters] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1563), - [anon_sym_DOLLAR] = ACTIONS(1561), - [sym_raw_string] = ACTIONS(1563), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1563), - [anon_sym_BQUOTE] = ACTIONS(1563), - [anon_sym_LT_LPAREN] = ACTIONS(1563), - [anon_sym_GT_LPAREN] = ACTIONS(1563), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1565), - }, - [1089] = { - [sym_file_descriptor] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_RPAREN] = ACTIONS(1563), - [anon_sym_PIPE_AMP] = ACTIONS(1563), - [anon_sym_AMP_AMP] = ACTIONS(1563), - [anon_sym_PIPE_PIPE] = ACTIONS(1563), - [anon_sym_EQ_TILDE] = ACTIONS(1561), - [anon_sym_EQ_EQ] = ACTIONS(1561), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_GT] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1563), - [anon_sym_AMP_GT] = ACTIONS(1561), - [anon_sym_AMP_GT_GT] = ACTIONS(1563), - [anon_sym_LT_AMP] = ACTIONS(1563), - [anon_sym_GT_AMP] = ACTIONS(1563), - [anon_sym_LT_LT] = ACTIONS(1561), - [anon_sym_LT_LT_DASH] = ACTIONS(1563), - [anon_sym_LT_LT_LT] = ACTIONS(1563), - [sym__special_characters] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1563), - [anon_sym_DOLLAR] = ACTIONS(1561), - [sym_raw_string] = ACTIONS(1563), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1563), - [anon_sym_BQUOTE] = ACTIONS(1563), - [anon_sym_LT_LPAREN] = ACTIONS(1563), - [anon_sym_GT_LPAREN] = ACTIONS(1563), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1565), - }, - [1090] = { - [aux_sym_concatenation_repeat1] = STATE(1759), - [sym_file_descriptor] = ACTIONS(756), - [sym__concat] = ACTIONS(3692), - [anon_sym_PIPE] = ACTIONS(760), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_PIPE_AMP] = ACTIONS(756), - [anon_sym_AMP_AMP] = ACTIONS(756), - [anon_sym_PIPE_PIPE] = ACTIONS(756), - [anon_sym_LT] = ACTIONS(760), - [anon_sym_GT] = ACTIONS(760), - [anon_sym_GT_GT] = ACTIONS(756), - [anon_sym_AMP_GT] = ACTIONS(760), - [anon_sym_AMP_GT_GT] = ACTIONS(756), - [anon_sym_LT_AMP] = ACTIONS(756), - [anon_sym_GT_AMP] = ACTIONS(756), - [anon_sym_LT_LT] = ACTIONS(760), - [anon_sym_LT_LT_DASH] = ACTIONS(756), - [anon_sym_LT_LT_LT] = ACTIONS(756), - [sym_comment] = ACTIONS(56), - }, - [1091] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1761), - [anon_sym_DQUOTE] = ACTIONS(3694), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1092] = { - [sym_string] = STATE(1763), - [anon_sym_DQUOTE] = ACTIONS(2224), - [anon_sym_DOLLAR] = ACTIONS(3696), - [sym_raw_string] = ACTIONS(3698), - [anon_sym_POUND] = ACTIONS(3696), - [anon_sym_DASH] = ACTIONS(3696), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3700), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AT] = ACTIONS(3696), - [anon_sym_QMARK] = ACTIONS(3696), - [anon_sym_0] = ACTIONS(3702), - [anon_sym__] = ACTIONS(3702), - }, - [1093] = { - [aux_sym_concatenation_repeat1] = STATE(1759), - [sym_file_descriptor] = ACTIONS(772), - [sym__concat] = ACTIONS(3692), - [anon_sym_PIPE] = ACTIONS(774), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_PIPE_AMP] = ACTIONS(772), - [anon_sym_AMP_AMP] = ACTIONS(772), - [anon_sym_PIPE_PIPE] = ACTIONS(772), - [anon_sym_LT] = ACTIONS(774), - [anon_sym_GT] = ACTIONS(774), - [anon_sym_GT_GT] = ACTIONS(772), - [anon_sym_AMP_GT] = ACTIONS(774), - [anon_sym_AMP_GT_GT] = ACTIONS(772), - [anon_sym_LT_AMP] = ACTIONS(772), - [anon_sym_GT_AMP] = ACTIONS(772), - [anon_sym_LT_LT] = ACTIONS(774), - [anon_sym_LT_LT_DASH] = ACTIONS(772), - [anon_sym_LT_LT_LT] = ACTIONS(772), - [sym_comment] = ACTIONS(56), - }, - [1094] = { - [sym_subscript] = STATE(1769), - [sym_variable_name] = ACTIONS(3704), - [anon_sym_DOLLAR] = ACTIONS(3706), - [anon_sym_POUND] = ACTIONS(3708), - [anon_sym_DASH] = ACTIONS(3706), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_AT] = ACTIONS(3706), - [anon_sym_QMARK] = ACTIONS(3706), - [anon_sym_0] = ACTIONS(3712), - [anon_sym__] = ACTIONS(3712), - }, - [1095] = { - [sym_for_statement] = STATE(1770), - [sym_while_statement] = STATE(1770), - [sym_if_statement] = STATE(1770), - [sym_case_statement] = STATE(1770), - [sym_function_definition] = STATE(1770), - [sym_subshell] = STATE(1770), - [sym_pipeline] = STATE(1770), - [sym_list] = STATE(1770), - [sym_command] = STATE(1770), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1770), - [sym_variable_assignment] = STATE(1771), - [sym_declaration_command] = STATE(1770), - [sym_unset_command] = STATE(1770), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [1096] = { - [sym_for_statement] = STATE(1772), - [sym_while_statement] = STATE(1772), - [sym_if_statement] = STATE(1772), - [sym_case_statement] = STATE(1772), - [sym_function_definition] = STATE(1772), - [sym_subshell] = STATE(1772), - [sym_pipeline] = STATE(1772), - [sym_list] = STATE(1772), - [sym_command] = STATE(1772), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1772), - [sym_variable_assignment] = STATE(1773), - [sym_declaration_command] = STATE(1772), - [sym_unset_command] = STATE(1772), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [1097] = { - [sym_for_statement] = STATE(1774), - [sym_while_statement] = STATE(1774), - [sym_if_statement] = STATE(1774), - [sym_case_statement] = STATE(1774), - [sym_function_definition] = STATE(1774), - [sym_subshell] = STATE(1774), - [sym_pipeline] = STATE(1774), - [sym_list] = STATE(1774), - [sym_command] = STATE(1774), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1774), - [sym_variable_assignment] = STATE(1775), - [sym_declaration_command] = STATE(1774), - [sym_unset_command] = STATE(1774), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [1098] = { - [sym_file_descriptor] = ACTIONS(772), - [anon_sym_PIPE] = ACTIONS(774), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_PIPE_AMP] = ACTIONS(772), - [anon_sym_AMP_AMP] = ACTIONS(772), - [anon_sym_PIPE_PIPE] = ACTIONS(772), - [anon_sym_LT] = ACTIONS(774), - [anon_sym_GT] = ACTIONS(774), - [anon_sym_GT_GT] = ACTIONS(772), - [anon_sym_AMP_GT] = ACTIONS(774), - [anon_sym_AMP_GT_GT] = ACTIONS(772), - [anon_sym_LT_AMP] = ACTIONS(772), - [anon_sym_GT_AMP] = ACTIONS(772), - [anon_sym_LT_LT] = ACTIONS(774), - [anon_sym_LT_LT_DASH] = ACTIONS(772), - [anon_sym_LT_LT_LT] = ACTIONS(772), - [anon_sym_BQUOTE] = ACTIONS(772), - [sym_comment] = ACTIONS(56), - }, - [1099] = { - [sym_file_descriptor] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(3714), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_PIPE_AMP] = ACTIONS(2442), - [anon_sym_AMP_AMP] = ACTIONS(2442), - [anon_sym_PIPE_PIPE] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(3714), - [anon_sym_GT] = ACTIONS(3714), - [anon_sym_GT_GT] = ACTIONS(2442), - [anon_sym_AMP_GT] = ACTIONS(3714), - [anon_sym_AMP_GT_GT] = ACTIONS(2442), - [anon_sym_LT_AMP] = ACTIONS(2442), - [anon_sym_GT_AMP] = ACTIONS(2442), - [anon_sym_LT_LT] = ACTIONS(3714), - [anon_sym_LT_LT_DASH] = ACTIONS(2442), - [anon_sym_LT_LT_LT] = ACTIONS(2442), - [anon_sym_BQUOTE] = ACTIONS(2442), - [sym_comment] = ACTIONS(56), - }, - [1100] = { - [sym_simple_expansion] = STATE(1222), - [sym_expansion] = STATE(1222), - [aux_sym_heredoc_repeat1] = STATE(1777), - [sym__heredoc_middle] = ACTIONS(2446), - [sym__heredoc_end] = ACTIONS(3716), - [anon_sym_DOLLAR] = ACTIONS(2450), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2452), - [sym_comment] = ACTIONS(56), - }, - [1101] = { - [sym_file_descriptor] = ACTIONS(2454), - [anon_sym_PIPE] = ACTIONS(3718), - [anon_sym_RPAREN] = ACTIONS(2454), - [anon_sym_PIPE_AMP] = ACTIONS(2454), - [anon_sym_AMP_AMP] = ACTIONS(2454), - [anon_sym_PIPE_PIPE] = ACTIONS(2454), - [anon_sym_LT] = ACTIONS(3718), - [anon_sym_GT] = ACTIONS(3718), - [anon_sym_GT_GT] = ACTIONS(2454), - [anon_sym_AMP_GT] = ACTIONS(3718), - [anon_sym_AMP_GT_GT] = ACTIONS(2454), - [anon_sym_LT_AMP] = ACTIONS(2454), - [anon_sym_GT_AMP] = ACTIONS(2454), - [anon_sym_LT_LT] = ACTIONS(3718), - [anon_sym_LT_LT_DASH] = ACTIONS(2454), - [anon_sym_LT_LT_LT] = ACTIONS(2454), - [anon_sym_BQUOTE] = ACTIONS(2454), - [sym_comment] = ACTIONS(56), - }, - [1102] = { - [aux_sym_concatenation_repeat1] = STATE(1759), - [sym_file_descriptor] = ACTIONS(2458), - [sym__concat] = ACTIONS(3692), - [anon_sym_PIPE] = ACTIONS(3720), - [anon_sym_RPAREN] = ACTIONS(2458), - [anon_sym_PIPE_AMP] = ACTIONS(2458), - [anon_sym_AMP_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2458), - [anon_sym_LT] = ACTIONS(3720), - [anon_sym_GT] = ACTIONS(3720), - [anon_sym_GT_GT] = ACTIONS(2458), - [anon_sym_AMP_GT] = ACTIONS(3720), - [anon_sym_AMP_GT_GT] = ACTIONS(2458), - [anon_sym_LT_AMP] = ACTIONS(2458), - [anon_sym_GT_AMP] = ACTIONS(2458), - [anon_sym_LT_LT] = ACTIONS(3720), - [anon_sym_LT_LT_DASH] = ACTIONS(2458), - [anon_sym_LT_LT_LT] = ACTIONS(2458), - [sym_comment] = ACTIONS(56), - }, - [1103] = { - [aux_sym_concatenation_repeat1] = STATE(1759), - [sym_file_descriptor] = ACTIONS(2462), - [sym__concat] = ACTIONS(3692), - [anon_sym_PIPE] = ACTIONS(3722), - [anon_sym_RPAREN] = ACTIONS(2462), - [anon_sym_PIPE_AMP] = ACTIONS(2462), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE_PIPE] = ACTIONS(2462), - [anon_sym_LT] = ACTIONS(3722), - [anon_sym_GT] = ACTIONS(3722), - [anon_sym_GT_GT] = ACTIONS(2462), - [anon_sym_AMP_GT] = ACTIONS(3722), - [anon_sym_AMP_GT_GT] = ACTIONS(2462), - [anon_sym_LT_AMP] = ACTIONS(2462), - [anon_sym_GT_AMP] = ACTIONS(2462), - [anon_sym_LT_LT] = ACTIONS(3722), - [anon_sym_LT_LT_DASH] = ACTIONS(2462), - [anon_sym_LT_LT_LT] = ACTIONS(2462), - [sym_comment] = ACTIONS(56), - }, - [1104] = { - [sym_file_descriptor] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(3722), - [anon_sym_RPAREN] = ACTIONS(2462), - [anon_sym_PIPE_AMP] = ACTIONS(2462), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE_PIPE] = ACTIONS(2462), - [anon_sym_LT] = ACTIONS(3722), - [anon_sym_GT] = ACTIONS(3722), - [anon_sym_GT_GT] = ACTIONS(2462), - [anon_sym_AMP_GT] = ACTIONS(3722), - [anon_sym_AMP_GT_GT] = ACTIONS(2462), - [anon_sym_LT_AMP] = ACTIONS(2462), - [anon_sym_GT_AMP] = ACTIONS(2462), - [anon_sym_LT_LT] = ACTIONS(3722), - [anon_sym_LT_LT_DASH] = ACTIONS(2462), - [anon_sym_LT_LT_LT] = ACTIONS(2462), - [anon_sym_BQUOTE] = ACTIONS(2462), - [sym_comment] = ACTIONS(56), - }, - [1105] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [aux_sym_while_statement_repeat1] = STATE(1105), - [sym_file_descriptor] = ACTIONS(3724), - [anon_sym_PIPE] = ACTIONS(3727), - [anon_sym_RPAREN] = ACTIONS(3729), - [anon_sym_PIPE_AMP] = ACTIONS(3729), - [anon_sym_AMP_AMP] = ACTIONS(3729), - [anon_sym_PIPE_PIPE] = ACTIONS(3729), - [anon_sym_LT] = ACTIONS(3731), - [anon_sym_GT] = ACTIONS(3731), - [anon_sym_GT_GT] = ACTIONS(3734), - [anon_sym_AMP_GT] = ACTIONS(3731), - [anon_sym_AMP_GT_GT] = ACTIONS(3734), - [anon_sym_LT_AMP] = ACTIONS(3734), - [anon_sym_GT_AMP] = ACTIONS(3734), - [anon_sym_LT_LT] = ACTIONS(3737), - [anon_sym_LT_LT_DASH] = ACTIONS(3740), - [anon_sym_LT_LT_LT] = ACTIONS(3743), - [sym_comment] = ACTIONS(56), - }, - [1106] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [aux_sym_while_statement_repeat1] = STATE(1105), - [sym_file_descriptor] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(3746), - [anon_sym_RPAREN] = ACTIONS(3748), - [anon_sym_PIPE_AMP] = ACTIONS(3748), - [anon_sym_AMP_AMP] = ACTIONS(3748), - [anon_sym_PIPE_PIPE] = ACTIONS(3748), - [anon_sym_LT] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_GT_GT] = ACTIONS(992), - [anon_sym_AMP_GT] = ACTIONS(990), - [anon_sym_AMP_GT_GT] = ACTIONS(992), - [anon_sym_LT_AMP] = ACTIONS(992), - [anon_sym_GT_AMP] = ACTIONS(992), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(998), - [sym_comment] = ACTIONS(56), - }, - [1107] = { - [sym_concatenation] = STATE(541), - [sym_string] = STATE(539), - [sym_simple_expansion] = STATE(539), - [sym_string_expansion] = STATE(539), - [sym_expansion] = STATE(539), - [sym_command_substitution] = STATE(539), - [sym_process_substitution] = STATE(539), - [aux_sym_command_repeat2] = STATE(1107), - [sym_file_descriptor] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_RPAREN] = ACTIONS(1563), - [anon_sym_PIPE_AMP] = ACTIONS(1563), - [anon_sym_AMP_AMP] = ACTIONS(1563), - [anon_sym_PIPE_PIPE] = ACTIONS(1563), - [anon_sym_EQ_TILDE] = ACTIONS(3750), - [anon_sym_EQ_EQ] = ACTIONS(3750), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_GT] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1563), - [anon_sym_AMP_GT] = ACTIONS(1561), - [anon_sym_AMP_GT_GT] = ACTIONS(1563), - [anon_sym_LT_AMP] = ACTIONS(1563), - [anon_sym_GT_AMP] = ACTIONS(1563), - [anon_sym_LT_LT] = ACTIONS(1561), - [anon_sym_LT_LT_DASH] = ACTIONS(1563), - [anon_sym_LT_LT_LT] = ACTIONS(1563), - [sym__special_characters] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3756), - [anon_sym_DOLLAR] = ACTIONS(3759), - [sym_raw_string] = ACTIONS(3762), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3768), - [anon_sym_BQUOTE] = ACTIONS(3771), - [anon_sym_LT_LPAREN] = ACTIONS(3774), - [anon_sym_GT_LPAREN] = ACTIONS(3774), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3777), - }, - [1108] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [sym_concatenation] = STATE(541), - [sym_string] = STATE(539), - [sym_simple_expansion] = STATE(539), - [sym_string_expansion] = STATE(539), - [sym_expansion] = STATE(539), - [sym_command_substitution] = STATE(539), - [sym_process_substitution] = STATE(539), - [aux_sym_while_statement_repeat1] = STATE(1778), - [aux_sym_command_repeat2] = STATE(1107), - [sym_file_descriptor] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(3746), - [anon_sym_RPAREN] = ACTIONS(3748), - [anon_sym_PIPE_AMP] = ACTIONS(3748), - [anon_sym_AMP_AMP] = ACTIONS(3748), - [anon_sym_PIPE_PIPE] = ACTIONS(3748), - [anon_sym_EQ_TILDE] = ACTIONS(988), - [anon_sym_EQ_EQ] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_GT_GT] = ACTIONS(992), - [anon_sym_AMP_GT] = ACTIONS(990), - [anon_sym_AMP_GT_GT] = ACTIONS(992), - [anon_sym_LT_AMP] = ACTIONS(992), - [anon_sym_GT_AMP] = ACTIONS(992), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(998), - [sym__special_characters] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(1002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1004), - }, - [1109] = { - [aux_sym_concatenation_repeat1] = STATE(1780), - [sym_file_descriptor] = ACTIONS(1303), - [sym__concat] = ACTIONS(3780), - [sym_variable_name] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(3434), - [anon_sym_PIPE_AMP] = ACTIONS(1303), - [anon_sym_AMP_AMP] = ACTIONS(1303), - [anon_sym_PIPE_PIPE] = ACTIONS(1303), - [anon_sym_LT] = ACTIONS(3434), - [anon_sym_GT] = ACTIONS(3434), - [anon_sym_GT_GT] = ACTIONS(1303), - [anon_sym_AMP_GT] = ACTIONS(3434), - [anon_sym_AMP_GT_GT] = ACTIONS(1303), - [anon_sym_LT_AMP] = ACTIONS(1303), - [anon_sym_GT_AMP] = ACTIONS(1303), - [sym__special_characters] = ACTIONS(3434), - [anon_sym_DQUOTE] = ACTIONS(1303), - [anon_sym_DOLLAR] = ACTIONS(3434), - [sym_raw_string] = ACTIONS(1303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1303), - [anon_sym_BQUOTE] = ACTIONS(1303), - [anon_sym_LT_LPAREN] = ACTIONS(1303), - [anon_sym_GT_LPAREN] = ACTIONS(1303), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3434), - }, - [1110] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1782), - [anon_sym_DQUOTE] = ACTIONS(3782), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1111] = { - [sym_string] = STATE(1784), - [anon_sym_DQUOTE] = ACTIONS(2258), - [anon_sym_DOLLAR] = ACTIONS(3784), - [sym_raw_string] = ACTIONS(3786), - [anon_sym_POUND] = ACTIONS(3784), - [anon_sym_DASH] = ACTIONS(3784), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3788), - [anon_sym_STAR] = ACTIONS(3784), - [anon_sym_AT] = ACTIONS(3784), - [anon_sym_QMARK] = ACTIONS(3784), - [anon_sym_0] = ACTIONS(3790), - [anon_sym__] = ACTIONS(3790), - }, - [1112] = { - [aux_sym_concatenation_repeat1] = STATE(1780), - [sym_file_descriptor] = ACTIONS(1279), - [sym__concat] = ACTIONS(3780), - [sym_variable_name] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(3428), - [anon_sym_PIPE_AMP] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(3428), - [anon_sym_GT] = ACTIONS(3428), - [anon_sym_GT_GT] = ACTIONS(1279), - [anon_sym_AMP_GT] = ACTIONS(3428), - [anon_sym_AMP_GT_GT] = ACTIONS(1279), - [anon_sym_LT_AMP] = ACTIONS(1279), - [anon_sym_GT_AMP] = ACTIONS(1279), - [sym__special_characters] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(3428), - [sym_raw_string] = ACTIONS(1279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), - [anon_sym_BQUOTE] = ACTIONS(1279), - [anon_sym_LT_LPAREN] = ACTIONS(1279), - [anon_sym_GT_LPAREN] = ACTIONS(1279), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3428), - }, - [1113] = { - [sym_subscript] = STATE(1790), - [sym_variable_name] = ACTIONS(3792), - [anon_sym_DOLLAR] = ACTIONS(3794), - [anon_sym_POUND] = ACTIONS(3796), - [anon_sym_DASH] = ACTIONS(3794), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3798), - [anon_sym_STAR] = ACTIONS(3794), - [anon_sym_AT] = ACTIONS(3794), - [anon_sym_QMARK] = ACTIONS(3794), - [anon_sym_0] = ACTIONS(3800), - [anon_sym__] = ACTIONS(3800), - }, - [1114] = { - [sym_for_statement] = STATE(1791), - [sym_while_statement] = STATE(1791), - [sym_if_statement] = STATE(1791), - [sym_case_statement] = STATE(1791), - [sym_function_definition] = STATE(1791), - [sym_subshell] = STATE(1791), - [sym_pipeline] = STATE(1791), - [sym_list] = STATE(1791), - [sym_command] = STATE(1791), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1791), - [sym_variable_assignment] = STATE(1792), - [sym_declaration_command] = STATE(1791), - [sym_unset_command] = STATE(1791), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [1115] = { - [sym_for_statement] = STATE(1793), - [sym_while_statement] = STATE(1793), - [sym_if_statement] = STATE(1793), - [sym_case_statement] = STATE(1793), - [sym_function_definition] = STATE(1793), - [sym_subshell] = STATE(1793), - [sym_pipeline] = STATE(1793), - [sym_list] = STATE(1793), - [sym_command] = STATE(1793), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1793), - [sym_variable_assignment] = STATE(1794), - [sym_declaration_command] = STATE(1793), - [sym_unset_command] = STATE(1793), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [1116] = { - [sym_for_statement] = STATE(1795), - [sym_while_statement] = STATE(1795), - [sym_if_statement] = STATE(1795), - [sym_case_statement] = STATE(1795), - [sym_function_definition] = STATE(1795), - [sym_subshell] = STATE(1795), - [sym_pipeline] = STATE(1795), - [sym_list] = STATE(1795), - [sym_command] = STATE(1795), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1795), - [sym_variable_assignment] = STATE(1796), - [sym_declaration_command] = STATE(1795), - [sym_unset_command] = STATE(1795), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [1117] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [aux_sym_while_statement_repeat1] = STATE(1797), - [sym_file_descriptor] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(3460), - [anon_sym_PIPE_AMP] = ACTIONS(3462), - [anon_sym_AMP_AMP] = ACTIONS(3462), - [anon_sym_PIPE_PIPE] = ACTIONS(3462), - [anon_sym_LT] = ACTIONS(1082), - [anon_sym_GT] = ACTIONS(1082), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1082), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_BQUOTE] = ACTIONS(3462), - [sym_comment] = ACTIONS(56), - }, - [1118] = { - [anon_sym_RPAREN] = ACTIONS(3802), - [sym_comment] = ACTIONS(56), - }, - [1119] = { - [sym_file_redirect] = STATE(1690), - [sym_file_descriptor] = ACTIONS(3804), - [anon_sym_PIPE] = ACTIONS(3480), - [anon_sym_PIPE_AMP] = ACTIONS(3482), - [anon_sym_AMP_AMP] = ACTIONS(3482), - [anon_sym_PIPE_PIPE] = ACTIONS(3482), - [anon_sym_LT] = ACTIONS(3806), - [anon_sym_GT] = ACTIONS(3806), - [anon_sym_GT_GT] = ACTIONS(3808), - [anon_sym_AMP_GT] = ACTIONS(3806), - [anon_sym_AMP_GT_GT] = ACTIONS(3808), - [anon_sym_LT_AMP] = ACTIONS(3808), - [anon_sym_GT_AMP] = ACTIONS(3808), - [anon_sym_BQUOTE] = ACTIONS(3482), - [sym_comment] = ACTIONS(56), - }, - [1120] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [aux_sym_while_statement_repeat1] = STATE(1801), - [sym_file_descriptor] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(3498), - [anon_sym_PIPE_AMP] = ACTIONS(3500), - [anon_sym_AMP_AMP] = ACTIONS(3500), - [anon_sym_PIPE_PIPE] = ACTIONS(3500), - [anon_sym_LT] = ACTIONS(1082), - [anon_sym_GT] = ACTIONS(1082), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1082), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_BQUOTE] = ACTIONS(3500), - [sym_comment] = ACTIONS(56), - }, - [1121] = { - [sym_concatenation] = STATE(1694), - [sym_string] = STATE(1803), - [sym_array] = STATE(1694), - [sym_simple_expansion] = STATE(1803), - [sym_string_expansion] = STATE(1803), - [sym_expansion] = STATE(1803), - [sym_command_substitution] = STATE(1803), - [sym_process_substitution] = STATE(1803), - [sym__empty_value] = ACTIONS(3502), - [anon_sym_LPAREN] = ACTIONS(3504), - [sym__special_characters] = ACTIONS(3810), - [anon_sym_DQUOTE] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(1020), - [sym_raw_string] = ACTIONS(3812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1026), - [anon_sym_BQUOTE] = ACTIONS(3814), - [anon_sym_LT_LPAREN] = ACTIONS(1028), - [anon_sym_GT_LPAREN] = ACTIONS(1028), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3816), - }, - [1122] = { - [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(3818), - [anon_sym_DQUOTE] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(1020), - [sym_raw_string] = ACTIONS(3820), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1026), - [anon_sym_BQUOTE] = ACTIONS(3814), - [anon_sym_LT_LPAREN] = ACTIONS(1028), - [anon_sym_GT_LPAREN] = ACTIONS(1028), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3818), - }, - [1123] = { - [aux_sym_concatenation_repeat1] = STATE(1805), - [sym__concat] = ACTIONS(2280), - [sym_variable_name] = ACTIONS(790), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [sym__special_characters] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(1571), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1571), - [sym_word] = ACTIONS(792), - }, - [1124] = { - [sym__concat] = ACTIONS(794), - [sym_variable_name] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [sym__special_characters] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1573), - [sym_word] = ACTIONS(796), - }, - [1125] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(3822), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1126] = { - [sym__concat] = ACTIONS(826), - [sym_variable_name] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [sym__special_characters] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1577), - [sym_word] = ACTIONS(828), - }, - [1127] = { - [sym__concat] = ACTIONS(830), - [sym_variable_name] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_PIPE_AMP] = ACTIONS(830), - [anon_sym_AMP_AMP] = ACTIONS(830), - [anon_sym_PIPE_PIPE] = ACTIONS(830), - [sym__special_characters] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(1579), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1579), - [sym_word] = ACTIONS(832), - }, - [1128] = { - [sym__concat] = ACTIONS(834), - [sym_variable_name] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [sym__special_characters] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(1581), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1581), - [sym_word] = ACTIONS(836), - }, - [1129] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(3824), - [sym_comment] = ACTIONS(56), - }, - [1130] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1810), - [anon_sym_RBRACE] = ACTIONS(3826), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3828), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1131] = { - [sym_subscript] = STATE(1814), - [sym_variable_name] = ACTIONS(3830), - [anon_sym_DOLLAR] = ACTIONS(3832), - [anon_sym_DASH] = ACTIONS(3832), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3834), - [anon_sym_STAR] = ACTIONS(3832), - [anon_sym_AT] = ACTIONS(3832), - [anon_sym_QMARK] = ACTIONS(3832), - [anon_sym_0] = ACTIONS(3836), - [anon_sym__] = ACTIONS(3836), - }, - [1132] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1817), - [anon_sym_RBRACE] = ACTIONS(3838), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3840), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1133] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1820), - [anon_sym_RBRACE] = ACTIONS(3842), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3844), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1134] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3846), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1135] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3846), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1136] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(3846), - [sym_comment] = ACTIONS(56), - }, - [1137] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(3846), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1138] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3848), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1139] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3848), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1140] = { - [sym_variable_assignment] = STATE(497), - [sym_subscript] = STATE(559), - [sym_concatenation] = STATE(497), - [sym_string] = STATE(554), - [sym_simple_expansion] = STATE(554), - [sym_string_expansion] = STATE(554), - [sym_expansion] = STATE(554), - [sym_command_substitution] = STATE(554), - [sym_process_substitution] = STATE(554), - [aux_sym_declaration_command_repeat1] = STATE(1140), - [sym_variable_name] = ACTIONS(3850), - [anon_sym_PIPE] = ACTIONS(3547), - [anon_sym_PIPE_AMP] = ACTIONS(3549), - [anon_sym_AMP_AMP] = ACTIONS(3549), - [anon_sym_PIPE_PIPE] = ACTIONS(3549), - [sym__special_characters] = ACTIONS(3853), - [anon_sym_DQUOTE] = ACTIONS(3856), - [anon_sym_DOLLAR] = ACTIONS(3859), - [sym_raw_string] = ACTIONS(3862), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3865), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3868), - [anon_sym_BQUOTE] = ACTIONS(3871), - [anon_sym_LT_LPAREN] = ACTIONS(3874), - [anon_sym_GT_LPAREN] = ACTIONS(3874), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3575), - [sym_word] = ACTIONS(3877), - }, - [1141] = { - [sym_string] = STATE(1823), - [sym_simple_expansion] = STATE(1823), - [sym_string_expansion] = STATE(1823), - [sym_expansion] = STATE(1823), - [sym_command_substitution] = STATE(1823), - [sym_process_substitution] = STATE(1823), - [sym__special_characters] = ACTIONS(3880), - [anon_sym_DQUOTE] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1036), - [sym_raw_string] = ACTIONS(3882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1042), - [anon_sym_BQUOTE] = ACTIONS(3884), - [anon_sym_LT_LPAREN] = ACTIONS(1044), - [anon_sym_GT_LPAREN] = ACTIONS(1044), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3880), - }, - [1142] = { - [aux_sym_concatenation_repeat1] = STATE(1824), - [sym__concat] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [sym__special_characters] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(1571), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1571), - [sym_word] = ACTIONS(792), - }, - [1143] = { - [sym__concat] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [sym__special_characters] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1573), - [sym_word] = ACTIONS(796), - }, - [1144] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(3886), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1145] = { - [sym__concat] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [sym__special_characters] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1577), - [sym_word] = ACTIONS(828), - }, - [1146] = { - [sym__concat] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_PIPE_AMP] = ACTIONS(830), - [anon_sym_AMP_AMP] = ACTIONS(830), - [anon_sym_PIPE_PIPE] = ACTIONS(830), - [sym__special_characters] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(1579), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1579), - [sym_word] = ACTIONS(832), - }, - [1147] = { - [sym__concat] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [sym__special_characters] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(1581), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1581), - [sym_word] = ACTIONS(836), - }, - [1148] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(3888), - [sym_comment] = ACTIONS(56), - }, - [1149] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1829), - [anon_sym_RBRACE] = ACTIONS(3890), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3892), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1150] = { - [sym_subscript] = STATE(1833), - [sym_variable_name] = ACTIONS(3894), - [anon_sym_DOLLAR] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3896), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3898), - [anon_sym_STAR] = ACTIONS(3896), - [anon_sym_AT] = ACTIONS(3896), - [anon_sym_QMARK] = ACTIONS(3896), - [anon_sym_0] = ACTIONS(3900), - [anon_sym__] = ACTIONS(3900), - }, - [1151] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1836), - [anon_sym_RBRACE] = ACTIONS(3902), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3904), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1152] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1839), - [anon_sym_RBRACE] = ACTIONS(3906), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3908), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1153] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3910), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1154] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3910), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1155] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(3910), - [sym_comment] = ACTIONS(56), - }, - [1156] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(3910), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1157] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3912), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1158] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3912), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1159] = { - [sym_concatenation] = STATE(509), - [sym_string] = STATE(564), - [sym_simple_expansion] = STATE(564), - [sym_string_expansion] = STATE(564), - [sym_expansion] = STATE(564), - [sym_command_substitution] = STATE(564), - [sym_process_substitution] = STATE(564), - [aux_sym_unset_command_repeat1] = STATE(1159), - [anon_sym_PIPE] = ACTIONS(3613), - [anon_sym_PIPE_AMP] = ACTIONS(3615), - [anon_sym_AMP_AMP] = ACTIONS(3615), - [anon_sym_PIPE_PIPE] = ACTIONS(3615), - [sym__special_characters] = ACTIONS(3914), - [anon_sym_DQUOTE] = ACTIONS(3917), - [anon_sym_DOLLAR] = ACTIONS(3920), - [sym_raw_string] = ACTIONS(3923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3926), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3929), - [anon_sym_BQUOTE] = ACTIONS(3932), - [anon_sym_LT_LPAREN] = ACTIONS(3935), - [anon_sym_GT_LPAREN] = ACTIONS(3935), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3641), - [sym_word] = ACTIONS(3938), - }, - [1160] = { - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [anon_sym_EQ_TILDE] = ACTIONS(3066), - [anon_sym_EQ_EQ] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_GT_GT] = ACTIONS(1890), - [anon_sym_AMP_GT] = ACTIONS(3066), - [anon_sym_AMP_GT_GT] = ACTIONS(1890), - [anon_sym_LT_AMP] = ACTIONS(1890), - [anon_sym_GT_AMP] = ACTIONS(1890), - [anon_sym_LT_LT] = ACTIONS(3066), - [anon_sym_LT_LT_DASH] = ACTIONS(1890), - [anon_sym_LT_LT_LT] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1892), - }, - [1161] = { - [aux_sym_concatenation_repeat1] = STATE(1161), - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(3941), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [anon_sym_EQ_TILDE] = ACTIONS(3066), - [anon_sym_EQ_EQ] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_GT_GT] = ACTIONS(1890), - [anon_sym_AMP_GT] = ACTIONS(3066), - [anon_sym_AMP_GT_GT] = ACTIONS(1890), - [anon_sym_LT_AMP] = ACTIONS(1890), - [anon_sym_GT_AMP] = ACTIONS(1890), - [anon_sym_LT_LT] = ACTIONS(3066), - [anon_sym_LT_LT_DASH] = ACTIONS(1890), - [anon_sym_LT_LT_LT] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1892), - }, - [1162] = { - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [anon_sym_EQ_TILDE] = ACTIONS(3071), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(1927), - [anon_sym_AMP_GT] = ACTIONS(3071), - [anon_sym_AMP_GT_GT] = ACTIONS(1927), - [anon_sym_LT_AMP] = ACTIONS(1927), - [anon_sym_GT_AMP] = ACTIONS(1927), - [anon_sym_LT_LT] = ACTIONS(3071), - [anon_sym_LT_LT_DASH] = ACTIONS(1927), - [anon_sym_LT_LT_LT] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), - [anon_sym_BQUOTE] = ACTIONS(1927), - [anon_sym_LT_LPAREN] = ACTIONS(1927), - [anon_sym_GT_LPAREN] = ACTIONS(1927), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1929), - }, - [1163] = { - [sym_concatenation] = STATE(1845), - [sym_string] = STATE(1844), - [sym_simple_expansion] = STATE(1844), - [sym_string_expansion] = STATE(1844), - [sym_expansion] = STATE(1844), - [sym_command_substitution] = STATE(1844), - [sym_process_substitution] = STATE(1844), - [anon_sym_RBRACE] = ACTIONS(3944), - [sym__special_characters] = ACTIONS(3946), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(3948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3950), - }, - [1164] = { - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [anon_sym_EQ_TILDE] = ACTIONS(3081), - [anon_sym_EQ_EQ] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_AMP_GT] = ACTIONS(3081), - [anon_sym_AMP_GT_GT] = ACTIONS(1972), - [anon_sym_LT_AMP] = ACTIONS(1972), - [anon_sym_GT_AMP] = ACTIONS(1972), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_LT_LT_DASH] = ACTIONS(1972), - [anon_sym_LT_LT_LT] = ACTIONS(1972), - [sym__special_characters] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(3081), - [sym_raw_string] = ACTIONS(1972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1972), - [anon_sym_LT_LPAREN] = ACTIONS(1972), - [anon_sym_GT_LPAREN] = ACTIONS(1972), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1974), - }, - [1165] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3952), - }, - [1166] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3954), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1167] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(3956), - [sym_comment] = ACTIONS(56), - }, - [1168] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1851), - [anon_sym_RBRACE] = ACTIONS(3958), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3960), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1169] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1854), - [anon_sym_RBRACE] = ACTIONS(3962), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3964), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1170] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1856), - [anon_sym_RBRACE] = ACTIONS(3944), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(3966), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1171] = { - [sym_file_descriptor] = ACTIONS(2026), - [sym__concat] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PIPE_AMP] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_EQ_TILDE] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3099), - [anon_sym_GT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(2026), - [anon_sym_AMP_GT] = ACTIONS(3099), - [anon_sym_AMP_GT_GT] = ACTIONS(2026), - [anon_sym_LT_AMP] = ACTIONS(2026), - [anon_sym_GT_AMP] = ACTIONS(2026), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_LT_LT_DASH] = ACTIONS(2026), - [anon_sym_LT_LT_LT] = ACTIONS(2026), - [sym__special_characters] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(2026), - [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), - [anon_sym_BQUOTE] = ACTIONS(2026), - [anon_sym_LT_LPAREN] = ACTIONS(2026), - [anon_sym_GT_LPAREN] = ACTIONS(2026), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2028), - }, - [1172] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3968), - }, - [1173] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3970), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1174] = { - [sym_file_descriptor] = ACTIONS(2034), - [sym__concat] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_PIPE_AMP] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(3105), - [anon_sym_EQ_EQ] = ACTIONS(3105), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_AMP_GT] = ACTIONS(3105), - [anon_sym_AMP_GT_GT] = ACTIONS(2034), - [anon_sym_LT_AMP] = ACTIONS(2034), - [anon_sym_GT_AMP] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(3105), - [anon_sym_LT_LT_DASH] = ACTIONS(2034), - [anon_sym_LT_LT_LT] = ACTIONS(2034), - [sym__special_characters] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(2034), - [anon_sym_DOLLAR] = ACTIONS(3105), - [sym_raw_string] = ACTIONS(2034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), - [anon_sym_BQUOTE] = ACTIONS(2034), - [anon_sym_LT_LPAREN] = ACTIONS(2034), - [anon_sym_GT_LPAREN] = ACTIONS(2034), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2036), - }, - [1175] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3972), - }, - [1176] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(3944), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1177] = { - [sym_file_descriptor] = ACTIONS(2196), - [sym__concat] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_PIPE_AMP] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [anon_sym_EQ_TILDE] = ACTIONS(3109), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_GT_GT] = ACTIONS(2196), - [anon_sym_AMP_GT] = ACTIONS(3109), - [anon_sym_AMP_GT_GT] = ACTIONS(2196), - [anon_sym_LT_AMP] = ACTIONS(2196), - [anon_sym_GT_AMP] = ACTIONS(2196), - [anon_sym_LT_LT] = ACTIONS(3109), - [anon_sym_LT_LT_DASH] = ACTIONS(2196), - [anon_sym_LT_LT_LT] = ACTIONS(2196), - [sym__special_characters] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_DOLLAR] = ACTIONS(3109), - [sym_raw_string] = ACTIONS(2196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), - [anon_sym_BQUOTE] = ACTIONS(2196), - [anon_sym_LT_LPAREN] = ACTIONS(2196), - [anon_sym_GT_LPAREN] = ACTIONS(2196), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2198), - }, - [1178] = { - [sym_file_descriptor] = ACTIONS(2402), - [sym__concat] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_PIPE_AMP] = ACTIONS(2402), - [anon_sym_AMP_AMP] = ACTIONS(2402), - [anon_sym_PIPE_PIPE] = ACTIONS(2402), - [anon_sym_EQ_TILDE] = ACTIONS(3111), - [anon_sym_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3111), - [anon_sym_GT] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(2402), - [anon_sym_AMP_GT] = ACTIONS(3111), - [anon_sym_AMP_GT_GT] = ACTIONS(2402), - [anon_sym_LT_AMP] = ACTIONS(2402), - [anon_sym_GT_AMP] = ACTIONS(2402), - [anon_sym_LT_LT] = ACTIONS(3111), - [anon_sym_LT_LT_DASH] = ACTIONS(2402), - [anon_sym_LT_LT_LT] = ACTIONS(2402), - [sym__special_characters] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_DOLLAR] = ACTIONS(3111), - [sym_raw_string] = ACTIONS(2402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), - [anon_sym_BQUOTE] = ACTIONS(2402), - [anon_sym_LT_LPAREN] = ACTIONS(2402), - [anon_sym_GT_LPAREN] = ACTIONS(2402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2404), - }, - [1179] = { - [sym_compound_statement] = STATE(1860), - [anon_sym_LBRACE] = ACTIONS(2082), - [sym_comment] = ACTIONS(56), - }, - [1180] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(3680), - [anon_sym_PIPE_AMP] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(3682), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1181] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(3684), - [anon_sym_PIPE_PIPE] = ACTIONS(3684), - [anon_sym_BQUOTE] = ACTIONS(3684), - [sym_comment] = ACTIONS(56), - }, - [1182] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(3684), - [anon_sym_PIPE_PIPE] = ACTIONS(3684), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1183] = { - [sym_concatenation] = STATE(1757), - [sym_string] = STATE(1862), - [sym_simple_expansion] = STATE(1862), - [sym_string_expansion] = STATE(1862), - [sym_expansion] = STATE(1862), - [sym_command_substitution] = STATE(1862), - [sym_process_substitution] = STATE(1862), - [sym__special_characters] = ACTIONS(3974), - [anon_sym_DQUOTE] = ACTIONS(2380), - [anon_sym_DOLLAR] = ACTIONS(2382), - [sym_raw_string] = ACTIONS(3976), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2386), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2388), - [anon_sym_BQUOTE] = ACTIONS(2390), - [anon_sym_LT_LPAREN] = ACTIONS(2392), - [anon_sym_GT_LPAREN] = ACTIONS(2392), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3978), - }, - [1184] = { - [aux_sym_concatenation_repeat1] = STATE(571), - [sym_file_descriptor] = ACTIONS(1557), - [sym__concat] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1555), - [anon_sym_PIPE_AMP] = ACTIONS(1557), - [anon_sym_AMP_AMP] = ACTIONS(1557), - [anon_sym_PIPE_PIPE] = ACTIONS(1557), - [anon_sym_EQ_TILDE] = ACTIONS(1555), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_GT] = ACTIONS(1555), - [anon_sym_GT_GT] = ACTIONS(1557), - [anon_sym_AMP_GT] = ACTIONS(1555), - [anon_sym_AMP_GT_GT] = ACTIONS(1557), - [anon_sym_LT_AMP] = ACTIONS(1557), - [anon_sym_GT_AMP] = ACTIONS(1557), - [anon_sym_LT_LT] = ACTIONS(1555), - [anon_sym_LT_LT_DASH] = ACTIONS(1557), - [anon_sym_LT_LT_LT] = ACTIONS(1557), - [sym__special_characters] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_DOLLAR] = ACTIONS(1555), - [sym_raw_string] = ACTIONS(1557), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1557), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1557), - [anon_sym_BQUOTE] = ACTIONS(1557), - [anon_sym_LT_LPAREN] = ACTIONS(1557), - [anon_sym_GT_LPAREN] = ACTIONS(1557), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1559), - }, - [1185] = { - [aux_sym_concatenation_repeat1] = STATE(571), - [sym_file_descriptor] = ACTIONS(1563), - [sym__concat] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_PIPE_AMP] = ACTIONS(1563), - [anon_sym_AMP_AMP] = ACTIONS(1563), - [anon_sym_PIPE_PIPE] = ACTIONS(1563), - [anon_sym_EQ_TILDE] = ACTIONS(1561), - [anon_sym_EQ_EQ] = ACTIONS(1561), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_GT] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1563), - [anon_sym_AMP_GT] = ACTIONS(1561), - [anon_sym_AMP_GT_GT] = ACTIONS(1563), - [anon_sym_LT_AMP] = ACTIONS(1563), - [anon_sym_GT_AMP] = ACTIONS(1563), - [anon_sym_LT_LT] = ACTIONS(1561), - [anon_sym_LT_LT_DASH] = ACTIONS(1563), - [anon_sym_LT_LT_LT] = ACTIONS(1563), - [sym__special_characters] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1563), - [anon_sym_DOLLAR] = ACTIONS(1561), - [sym_raw_string] = ACTIONS(1563), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1563), - [anon_sym_BQUOTE] = ACTIONS(1563), - [anon_sym_LT_LPAREN] = ACTIONS(1563), - [anon_sym_GT_LPAREN] = ACTIONS(1563), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1565), - }, - [1186] = { - [aux_sym_concatenation_repeat1] = STATE(1864), - [sym_file_descriptor] = ACTIONS(756), - [sym__concat] = ACTIONS(3980), - [anon_sym_PIPE] = ACTIONS(760), - [anon_sym_PIPE_AMP] = ACTIONS(756), - [anon_sym_AMP_AMP] = ACTIONS(756), - [anon_sym_PIPE_PIPE] = ACTIONS(756), - [anon_sym_LT] = ACTIONS(760), - [anon_sym_GT] = ACTIONS(760), - [anon_sym_GT_GT] = ACTIONS(756), - [anon_sym_AMP_GT] = ACTIONS(760), - [anon_sym_AMP_GT_GT] = ACTIONS(756), - [anon_sym_LT_AMP] = ACTIONS(756), - [anon_sym_GT_AMP] = ACTIONS(756), - [anon_sym_LT_LT] = ACTIONS(760), - [anon_sym_LT_LT_DASH] = ACTIONS(756), - [anon_sym_LT_LT_LT] = ACTIONS(756), - [anon_sym_BQUOTE] = ACTIONS(756), - [sym_comment] = ACTIONS(56), - }, - [1187] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1866), - [anon_sym_DQUOTE] = ACTIONS(3982), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1188] = { - [sym_string] = STATE(1868), - [anon_sym_DQUOTE] = ACTIONS(2380), - [anon_sym_DOLLAR] = ACTIONS(3984), - [sym_raw_string] = ACTIONS(3986), - [anon_sym_POUND] = ACTIONS(3984), - [anon_sym_DASH] = ACTIONS(3984), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3988), - [anon_sym_STAR] = ACTIONS(3984), - [anon_sym_AT] = ACTIONS(3984), - [anon_sym_QMARK] = ACTIONS(3984), - [anon_sym_0] = ACTIONS(3990), - [anon_sym__] = ACTIONS(3990), - }, - [1189] = { - [aux_sym_concatenation_repeat1] = STATE(1864), - [sym_file_descriptor] = ACTIONS(772), - [sym__concat] = ACTIONS(3980), - [anon_sym_PIPE] = ACTIONS(774), - [anon_sym_PIPE_AMP] = ACTIONS(772), - [anon_sym_AMP_AMP] = ACTIONS(772), - [anon_sym_PIPE_PIPE] = ACTIONS(772), - [anon_sym_LT] = ACTIONS(774), - [anon_sym_GT] = ACTIONS(774), - [anon_sym_GT_GT] = ACTIONS(772), - [anon_sym_AMP_GT] = ACTIONS(774), - [anon_sym_AMP_GT_GT] = ACTIONS(772), - [anon_sym_LT_AMP] = ACTIONS(772), - [anon_sym_GT_AMP] = ACTIONS(772), - [anon_sym_LT_LT] = ACTIONS(774), - [anon_sym_LT_LT_DASH] = ACTIONS(772), - [anon_sym_LT_LT_LT] = ACTIONS(772), - [anon_sym_BQUOTE] = ACTIONS(772), - [sym_comment] = ACTIONS(56), - }, - [1190] = { - [sym_subscript] = STATE(1874), - [sym_variable_name] = ACTIONS(3992), - [anon_sym_DOLLAR] = ACTIONS(3994), - [anon_sym_POUND] = ACTIONS(3996), - [anon_sym_DASH] = ACTIONS(3994), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3998), - [anon_sym_STAR] = ACTIONS(3994), - [anon_sym_AT] = ACTIONS(3994), - [anon_sym_QMARK] = ACTIONS(3994), - [anon_sym_0] = ACTIONS(4000), - [anon_sym__] = ACTIONS(4000), - }, - [1191] = { - [sym_for_statement] = STATE(1875), - [sym_while_statement] = STATE(1875), - [sym_if_statement] = STATE(1875), - [sym_case_statement] = STATE(1875), - [sym_function_definition] = STATE(1875), - [sym_subshell] = STATE(1875), - [sym_pipeline] = STATE(1875), - [sym_list] = STATE(1875), - [sym_command] = STATE(1875), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1875), - [sym_variable_assignment] = STATE(1876), - [sym_declaration_command] = STATE(1875), - [sym_unset_command] = STATE(1875), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [1192] = { - [sym_for_statement] = STATE(1877), - [sym_while_statement] = STATE(1877), - [sym_if_statement] = STATE(1877), - [sym_case_statement] = STATE(1877), - [sym_function_definition] = STATE(1877), - [sym_subshell] = STATE(1877), - [sym_pipeline] = STATE(1877), - [sym_list] = STATE(1877), - [sym_command] = STATE(1877), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1877), - [sym_variable_assignment] = STATE(1878), - [sym_declaration_command] = STATE(1877), - [sym_unset_command] = STATE(1877), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [1193] = { - [sym_for_statement] = STATE(1879), - [sym_while_statement] = STATE(1879), - [sym_if_statement] = STATE(1879), - [sym_case_statement] = STATE(1879), - [sym_function_definition] = STATE(1879), - [sym_subshell] = STATE(1879), - [sym_pipeline] = STATE(1879), - [sym_list] = STATE(1879), - [sym_command] = STATE(1879), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1879), - [sym_variable_assignment] = STATE(1880), - [sym_declaration_command] = STATE(1879), - [sym_unset_command] = STATE(1879), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [1194] = { - [aux_sym_concatenation_repeat1] = STATE(1864), - [sym_file_descriptor] = ACTIONS(2458), - [sym__concat] = ACTIONS(3980), - [anon_sym_PIPE] = ACTIONS(3720), - [anon_sym_PIPE_AMP] = ACTIONS(2458), - [anon_sym_AMP_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2458), - [anon_sym_LT] = ACTIONS(3720), - [anon_sym_GT] = ACTIONS(3720), - [anon_sym_GT_GT] = ACTIONS(2458), - [anon_sym_AMP_GT] = ACTIONS(3720), - [anon_sym_AMP_GT_GT] = ACTIONS(2458), - [anon_sym_LT_AMP] = ACTIONS(2458), - [anon_sym_GT_AMP] = ACTIONS(2458), - [anon_sym_LT_LT] = ACTIONS(3720), - [anon_sym_LT_LT_DASH] = ACTIONS(2458), - [anon_sym_LT_LT_LT] = ACTIONS(2458), - [anon_sym_BQUOTE] = ACTIONS(2458), - [sym_comment] = ACTIONS(56), - }, - [1195] = { - [aux_sym_concatenation_repeat1] = STATE(1864), - [sym_file_descriptor] = ACTIONS(2462), - [sym__concat] = ACTIONS(3980), - [anon_sym_PIPE] = ACTIONS(3722), - [anon_sym_PIPE_AMP] = ACTIONS(2462), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE_PIPE] = ACTIONS(2462), - [anon_sym_LT] = ACTIONS(3722), - [anon_sym_GT] = ACTIONS(3722), - [anon_sym_GT_GT] = ACTIONS(2462), - [anon_sym_AMP_GT] = ACTIONS(3722), - [anon_sym_AMP_GT_GT] = ACTIONS(2462), - [anon_sym_LT_AMP] = ACTIONS(2462), - [anon_sym_GT_AMP] = ACTIONS(2462), - [anon_sym_LT_LT] = ACTIONS(3722), - [anon_sym_LT_LT_DASH] = ACTIONS(2462), - [anon_sym_LT_LT_LT] = ACTIONS(2462), - [anon_sym_BQUOTE] = ACTIONS(2462), - [sym_comment] = ACTIONS(56), - }, - [1196] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [aux_sym_while_statement_repeat1] = STATE(1196), - [sym_file_descriptor] = ACTIONS(4002), - [anon_sym_PIPE] = ACTIONS(3727), - [anon_sym_PIPE_AMP] = ACTIONS(3729), - [anon_sym_AMP_AMP] = ACTIONS(3729), - [anon_sym_PIPE_PIPE] = ACTIONS(3729), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_GT_GT] = ACTIONS(4008), - [anon_sym_AMP_GT] = ACTIONS(4005), - [anon_sym_AMP_GT_GT] = ACTIONS(4008), - [anon_sym_LT_AMP] = ACTIONS(4008), - [anon_sym_GT_AMP] = ACTIONS(4008), - [anon_sym_LT_LT] = ACTIONS(3737), - [anon_sym_LT_LT_DASH] = ACTIONS(3740), - [anon_sym_LT_LT_LT] = ACTIONS(4011), - [anon_sym_BQUOTE] = ACTIONS(3729), - [sym_comment] = ACTIONS(56), - }, - [1197] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [aux_sym_while_statement_repeat1] = STATE(1196), - [sym_file_descriptor] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(3746), - [anon_sym_PIPE_AMP] = ACTIONS(3748), - [anon_sym_AMP_AMP] = ACTIONS(3748), - [anon_sym_PIPE_PIPE] = ACTIONS(3748), - [anon_sym_LT] = ACTIONS(1082), - [anon_sym_GT] = ACTIONS(1082), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1082), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_BQUOTE] = ACTIONS(3748), - [sym_comment] = ACTIONS(56), - }, - [1198] = { - [sym_concatenation] = STATE(541), - [sym_string] = STATE(596), - [sym_simple_expansion] = STATE(596), - [sym_string_expansion] = STATE(596), - [sym_expansion] = STATE(596), - [sym_command_substitution] = STATE(596), - [sym_process_substitution] = STATE(596), - [aux_sym_command_repeat2] = STATE(1198), - [sym_file_descriptor] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_PIPE_AMP] = ACTIONS(1563), - [anon_sym_AMP_AMP] = ACTIONS(1563), - [anon_sym_PIPE_PIPE] = ACTIONS(1563), - [anon_sym_EQ_TILDE] = ACTIONS(4014), - [anon_sym_EQ_EQ] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_GT] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1563), - [anon_sym_AMP_GT] = ACTIONS(1561), - [anon_sym_AMP_GT_GT] = ACTIONS(1563), - [anon_sym_LT_AMP] = ACTIONS(1563), - [anon_sym_GT_AMP] = ACTIONS(1563), - [anon_sym_LT_LT] = ACTIONS(1561), - [anon_sym_LT_LT_DASH] = ACTIONS(1563), - [anon_sym_LT_LT_LT] = ACTIONS(1563), - [sym__special_characters] = ACTIONS(4017), - [anon_sym_DQUOTE] = ACTIONS(4020), - [anon_sym_DOLLAR] = ACTIONS(4023), - [sym_raw_string] = ACTIONS(4026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4029), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4032), - [anon_sym_BQUOTE] = ACTIONS(4035), - [anon_sym_LT_LPAREN] = ACTIONS(4038), - [anon_sym_GT_LPAREN] = ACTIONS(4038), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4041), - }, - [1199] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [sym_concatenation] = STATE(541), - [sym_string] = STATE(596), - [sym_simple_expansion] = STATE(596), - [sym_string_expansion] = STATE(596), - [sym_expansion] = STATE(596), - [sym_command_substitution] = STATE(596), - [sym_process_substitution] = STATE(596), - [aux_sym_while_statement_repeat1] = STATE(1881), - [aux_sym_command_repeat2] = STATE(1198), - [sym_file_descriptor] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(3746), - [anon_sym_PIPE_AMP] = ACTIONS(3748), - [anon_sym_AMP_AMP] = ACTIONS(3748), - [anon_sym_PIPE_PIPE] = ACTIONS(3748), - [anon_sym_EQ_TILDE] = ACTIONS(1080), - [anon_sym_EQ_EQ] = ACTIONS(1080), - [anon_sym_LT] = ACTIONS(1082), - [anon_sym_GT] = ACTIONS(1082), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1082), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [sym__special_characters] = ACTIONS(1088), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(1090), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(3748), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1092), - }, - [1200] = { - [sym_file_redirect] = STATE(1882), - [sym_file_descriptor] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_SEMI_SEMI] = ACTIONS(2794), - [anon_sym_PIPE_AMP] = ACTIONS(2794), - [anon_sym_AMP_AMP] = ACTIONS(2794), - [anon_sym_PIPE_PIPE] = ACTIONS(2794), - [anon_sym_LT] = ACTIONS(1407), - [anon_sym_GT] = ACTIONS(1407), - [anon_sym_GT_GT] = ACTIONS(1407), - [anon_sym_AMP_GT] = ACTIONS(1407), - [anon_sym_AMP_GT_GT] = ACTIONS(1407), - [anon_sym_LT_AMP] = ACTIONS(1407), - [anon_sym_GT_AMP] = ACTIONS(1407), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_LF] = ACTIONS(2794), - [anon_sym_AMP] = ACTIONS(2794), - }, - [1201] = { - [aux_sym_concatenation_repeat1] = STATE(1205), - [sym_file_descriptor] = ACTIONS(1241), - [sym__concat] = ACTIONS(2416), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_SEMI_SEMI] = ACTIONS(4044), - [anon_sym_PIPE_AMP] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_PIPE_PIPE] = ACTIONS(4044), - [anon_sym_LT] = ACTIONS(4044), - [anon_sym_GT] = ACTIONS(4044), - [anon_sym_GT_GT] = ACTIONS(4044), - [anon_sym_AMP_GT] = ACTIONS(4044), - [anon_sym_AMP_GT_GT] = ACTIONS(4044), - [anon_sym_LT_AMP] = ACTIONS(4044), - [anon_sym_GT_AMP] = ACTIONS(4044), - [anon_sym_LT_LT] = ACTIONS(4044), - [anon_sym_LT_LT_DASH] = ACTIONS(4044), - [anon_sym_LT_LT_LT] = ACTIONS(4044), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4044), - }, - [1202] = { - [aux_sym_concatenation_repeat1] = STATE(1205), - [sym_file_descriptor] = ACTIONS(1245), - [sym__concat] = ACTIONS(2416), - [anon_sym_PIPE] = ACTIONS(4046), - [anon_sym_SEMI_SEMI] = ACTIONS(4046), - [anon_sym_PIPE_AMP] = ACTIONS(4046), - [anon_sym_AMP_AMP] = ACTIONS(4046), - [anon_sym_PIPE_PIPE] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(4046), - [anon_sym_GT] = ACTIONS(4046), - [anon_sym_GT_GT] = ACTIONS(4046), - [anon_sym_AMP_GT] = ACTIONS(4046), - [anon_sym_AMP_GT_GT] = ACTIONS(4046), - [anon_sym_LT_AMP] = ACTIONS(4046), - [anon_sym_GT_AMP] = ACTIONS(4046), - [anon_sym_LT_LT] = ACTIONS(4046), - [anon_sym_LT_LT_DASH] = ACTIONS(4046), - [anon_sym_LT_LT_LT] = ACTIONS(4046), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4046), - [anon_sym_AMP] = ACTIONS(4046), - }, - [1203] = { - [sym_file_descriptor] = ACTIONS(1245), - [anon_sym_esac] = ACTIONS(4046), - [anon_sym_PIPE] = ACTIONS(4046), - [anon_sym_RPAREN] = ACTIONS(4046), - [anon_sym_SEMI_SEMI] = ACTIONS(4046), - [anon_sym_PIPE_AMP] = ACTIONS(4046), - [anon_sym_AMP_AMP] = ACTIONS(4046), - [anon_sym_PIPE_PIPE] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(4046), - [anon_sym_GT] = ACTIONS(4046), - [anon_sym_GT_GT] = ACTIONS(4046), - [anon_sym_AMP_GT] = ACTIONS(4046), - [anon_sym_AMP_GT_GT] = ACTIONS(4046), - [anon_sym_LT_AMP] = ACTIONS(4046), - [anon_sym_GT_AMP] = ACTIONS(4046), - [anon_sym_LT_LT] = ACTIONS(4046), - [anon_sym_LT_LT_DASH] = ACTIONS(4046), - [anon_sym_LT_LT_LT] = ACTIONS(4046), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4046), - [anon_sym_AMP] = ACTIONS(4046), - }, - [1204] = { - [sym_string] = STATE(1883), - [sym_simple_expansion] = STATE(1883), - [sym_string_expansion] = STATE(1883), - [sym_expansion] = STATE(1883), - [sym_command_substitution] = STATE(1883), - [sym_process_substitution] = STATE(1883), - [sym__special_characters] = ACTIONS(4048), - [anon_sym_DQUOTE] = ACTIONS(1120), - [anon_sym_DOLLAR] = ACTIONS(1122), - [sym_raw_string] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1130), - [anon_sym_LT_LPAREN] = ACTIONS(1132), - [anon_sym_GT_LPAREN] = ACTIONS(1132), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4048), - }, - [1205] = { - [aux_sym_concatenation_repeat1] = STATE(1884), - [sym_file_descriptor] = ACTIONS(790), - [sym__concat] = ACTIONS(2416), - [anon_sym_PIPE] = ACTIONS(792), - [anon_sym_SEMI_SEMI] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [anon_sym_LT] = ACTIONS(792), - [anon_sym_GT] = ACTIONS(792), - [anon_sym_GT_GT] = ACTIONS(792), - [anon_sym_AMP_GT] = ACTIONS(792), - [anon_sym_AMP_GT_GT] = ACTIONS(792), - [anon_sym_LT_AMP] = ACTIONS(792), - [anon_sym_GT_AMP] = ACTIONS(792), - [anon_sym_LT_LT] = ACTIONS(792), - [anon_sym_LT_LT_DASH] = ACTIONS(792), - [anon_sym_LT_LT_LT] = ACTIONS(792), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LF] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(792), - }, - [1206] = { - [sym_file_descriptor] = ACTIONS(794), - [sym__concat] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_SEMI_SEMI] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_GT] = ACTIONS(796), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_AMP_GT] = ACTIONS(796), - [anon_sym_AMP_GT_GT] = ACTIONS(796), - [anon_sym_LT_AMP] = ACTIONS(796), - [anon_sym_GT_AMP] = ACTIONS(796), - [anon_sym_LT_LT] = ACTIONS(796), - [anon_sym_LT_LT_DASH] = ACTIONS(796), - [anon_sym_LT_LT_LT] = ACTIONS(796), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_LF] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - }, - [1207] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1208] = { - [sym_file_descriptor] = ACTIONS(826), - [sym__concat] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_SEMI_SEMI] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(828), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(828), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), - [anon_sym_LT_LT] = ACTIONS(828), - [anon_sym_LT_LT_DASH] = ACTIONS(828), - [anon_sym_LT_LT_LT] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(828), - }, - [1209] = { - [sym_file_descriptor] = ACTIONS(830), - [sym__concat] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_GT] = ACTIONS(832), - [anon_sym_GT_GT] = ACTIONS(832), - [anon_sym_AMP_GT] = ACTIONS(832), - [anon_sym_AMP_GT_GT] = ACTIONS(832), - [anon_sym_LT_AMP] = ACTIONS(832), - [anon_sym_GT_AMP] = ACTIONS(832), - [anon_sym_LT_LT] = ACTIONS(832), - [anon_sym_LT_LT_DASH] = ACTIONS(832), - [anon_sym_LT_LT_LT] = ACTIONS(832), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(832), - [anon_sym_AMP] = ACTIONS(832), - }, - [1210] = { - [sym_file_descriptor] = ACTIONS(834), - [sym__concat] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_SEMI_SEMI] = ACTIONS(836), - [anon_sym_PIPE_AMP] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_AMP_GT] = ACTIONS(836), - [anon_sym_AMP_GT_GT] = ACTIONS(836), - [anon_sym_LT_AMP] = ACTIONS(836), - [anon_sym_GT_AMP] = ACTIONS(836), - [anon_sym_LT_LT] = ACTIONS(836), - [anon_sym_LT_LT_DASH] = ACTIONS(836), - [anon_sym_LT_LT_LT] = ACTIONS(836), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(836), - }, - [1211] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(4054), - [sym_comment] = ACTIONS(56), - }, - [1212] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1889), - [anon_sym_RBRACE] = ACTIONS(4056), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4058), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1213] = { - [sym_subscript] = STATE(1893), - [sym_variable_name] = ACTIONS(4060), - [anon_sym_DOLLAR] = ACTIONS(4062), - [anon_sym_DASH] = ACTIONS(4062), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4064), - [anon_sym_STAR] = ACTIONS(4062), - [anon_sym_AT] = ACTIONS(4062), - [anon_sym_QMARK] = ACTIONS(4062), - [anon_sym_0] = ACTIONS(4066), - [anon_sym__] = ACTIONS(4066), - }, - [1214] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1896), - [anon_sym_RBRACE] = ACTIONS(4068), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4070), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1215] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1899), - [anon_sym_RBRACE] = ACTIONS(4072), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4074), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1216] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4076), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1217] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4076), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1218] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(4076), - [sym_comment] = ACTIONS(56), - }, - [1219] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(4076), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1220] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4078), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1221] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4078), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1222] = { - [sym__heredoc_middle] = ACTIONS(4080), - [sym__heredoc_end] = ACTIONS(4080), - [anon_sym_DOLLAR] = ACTIONS(4082), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4080), - [sym_comment] = ACTIONS(56), - }, - [1223] = { - [sym_file_descriptor] = ACTIONS(4084), - [anon_sym_esac] = ACTIONS(4086), - [anon_sym_PIPE] = ACTIONS(4086), - [anon_sym_RPAREN] = ACTIONS(4086), - [anon_sym_SEMI_SEMI] = ACTIONS(4086), - [anon_sym_PIPE_AMP] = ACTIONS(4086), - [anon_sym_AMP_AMP] = ACTIONS(4086), - [anon_sym_PIPE_PIPE] = ACTIONS(4086), - [anon_sym_LT] = ACTIONS(4086), - [anon_sym_GT] = ACTIONS(4086), - [anon_sym_GT_GT] = ACTIONS(4086), - [anon_sym_AMP_GT] = ACTIONS(4086), - [anon_sym_AMP_GT_GT] = ACTIONS(4086), - [anon_sym_LT_AMP] = ACTIONS(4086), - [anon_sym_GT_AMP] = ACTIONS(4086), - [anon_sym_LT_LT] = ACTIONS(4086), - [anon_sym_LT_LT_DASH] = ACTIONS(4086), - [anon_sym_LT_LT_LT] = ACTIONS(4086), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4086), - [anon_sym_LF] = ACTIONS(4086), - [anon_sym_AMP] = ACTIONS(4086), - }, - [1224] = { - [anon_sym_DOLLAR] = ACTIONS(4088), - [anon_sym_POUND] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4090), - [anon_sym_STAR] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(4088), - [anon_sym_0] = ACTIONS(4092), - [anon_sym__] = ACTIONS(4092), - }, - [1225] = { - [sym_subscript] = STATE(1908), - [sym_variable_name] = ACTIONS(4094), - [anon_sym_DOLLAR] = ACTIONS(4096), - [anon_sym_POUND] = ACTIONS(4098), - [anon_sym_DASH] = ACTIONS(4096), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_AT] = ACTIONS(4096), - [anon_sym_QMARK] = ACTIONS(4096), - [anon_sym_0] = ACTIONS(4102), - [anon_sym__] = ACTIONS(4102), - }, - [1226] = { - [sym_simple_expansion] = STATE(1222), - [sym_expansion] = STATE(1222), - [aux_sym_heredoc_repeat1] = STATE(1910), - [sym__heredoc_middle] = ACTIONS(2446), - [sym__heredoc_end] = ACTIONS(4104), - [anon_sym_DOLLAR] = ACTIONS(2450), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2452), - [sym_comment] = ACTIONS(56), - }, - [1227] = { - [aux_sym_concatenation_repeat1] = STATE(415), - [sym_file_descriptor] = ACTIONS(1303), - [sym__concat] = ACTIONS(758), - [sym_variable_name] = ACTIONS(1303), - [anon_sym_LT] = ACTIONS(3434), - [anon_sym_GT] = ACTIONS(3434), - [anon_sym_GT_GT] = ACTIONS(1303), - [anon_sym_AMP_GT] = ACTIONS(3434), - [anon_sym_AMP_GT_GT] = ACTIONS(1303), - [anon_sym_LT_AMP] = ACTIONS(1303), - [anon_sym_GT_AMP] = ACTIONS(1303), - [sym__special_characters] = ACTIONS(3434), - [anon_sym_DQUOTE] = ACTIONS(1303), - [anon_sym_DOLLAR] = ACTIONS(3434), - [sym_raw_string] = ACTIONS(1303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1303), - [anon_sym_BQUOTE] = ACTIONS(1303), - [anon_sym_LT_LPAREN] = ACTIONS(1303), - [anon_sym_GT_LPAREN] = ACTIONS(1303), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3434), - }, - [1228] = { - [aux_sym_concatenation_repeat1] = STATE(415), - [sym_file_descriptor] = ACTIONS(1279), - [sym__concat] = ACTIONS(758), - [sym_variable_name] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(3428), - [anon_sym_GT] = ACTIONS(3428), - [anon_sym_GT_GT] = ACTIONS(1279), - [anon_sym_AMP_GT] = ACTIONS(3428), - [anon_sym_AMP_GT_GT] = ACTIONS(1279), - [anon_sym_LT_AMP] = ACTIONS(1279), - [anon_sym_GT_AMP] = ACTIONS(1279), - [sym__special_characters] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(3428), - [sym_raw_string] = ACTIONS(1279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), - [anon_sym_BQUOTE] = ACTIONS(1279), - [anon_sym_LT_LPAREN] = ACTIONS(1279), - [anon_sym_GT_LPAREN] = ACTIONS(1279), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3428), - }, - [1229] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(625), - [sym_file_descriptor] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(4106), - [anon_sym_SEMI_SEMI] = ACTIONS(4106), - [anon_sym_PIPE_AMP] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_LT] = ACTIONS(358), - [anon_sym_GT] = ACTIONS(358), - [anon_sym_GT_GT] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(358), - [anon_sym_AMP_GT_GT] = ACTIONS(358), - [anon_sym_LT_AMP] = ACTIONS(358), - [anon_sym_GT_AMP] = ACTIONS(358), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(362), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_LF] = ACTIONS(4106), - [anon_sym_AMP] = ACTIONS(4106), - }, - [1230] = { - [sym__concat] = ACTIONS(4108), - [anon_sym_EQ] = ACTIONS(4110), - [anon_sym_PLUS_EQ] = ACTIONS(4110), - [sym_comment] = ACTIONS(56), - }, - [1231] = { - [sym__concat] = ACTIONS(1890), - [anon_sym_RBRACK] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - }, - [1232] = { - [anon_sym_EQ] = ACTIONS(4110), - [anon_sym_PLUS_EQ] = ACTIONS(4110), - [sym_comment] = ACTIONS(56), - }, - [1233] = { - [sym_string] = STATE(1231), - [sym_simple_expansion] = STATE(1231), - [sym_string_expansion] = STATE(1231), - [sym_expansion] = STATE(1231), - [sym_command_substitution] = STATE(1231), - [sym_process_substitution] = STATE(1231), - [sym__special_characters] = ACTIONS(2521), - [anon_sym_DQUOTE] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_raw_string] = ACTIONS(2519), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), - [anon_sym_BQUOTE] = ACTIONS(412), - [anon_sym_LT_LPAREN] = ACTIONS(414), - [anon_sym_GT_LPAREN] = ACTIONS(414), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2521), - }, - [1234] = { - [aux_sym_concatenation_repeat1] = STATE(1234), - [sym__concat] = ACTIONS(4112), - [anon_sym_RBRACK] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - }, - [1235] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_RBRACK] = ACTIONS(1927), - [sym_comment] = ACTIONS(56), - }, - [1236] = { - [sym__concat] = ACTIONS(4115), - [anon_sym_EQ] = ACTIONS(4117), - [anon_sym_PLUS_EQ] = ACTIONS(4117), - [sym_comment] = ACTIONS(56), - }, - [1237] = { - [anon_sym_EQ] = ACTIONS(4117), - [anon_sym_PLUS_EQ] = ACTIONS(4117), - [sym_comment] = ACTIONS(56), - }, - [1238] = { - [sym_concatenation] = STATE(1916), - [sym_string] = STATE(1915), - [sym_simple_expansion] = STATE(1915), - [sym_string_expansion] = STATE(1915), - [sym_expansion] = STATE(1915), - [sym_command_substitution] = STATE(1915), - [sym_process_substitution] = STATE(1915), - [anon_sym_RBRACE] = ACTIONS(4119), - [sym__special_characters] = ACTIONS(4121), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(4123), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4125), - }, - [1239] = { - [sym__concat] = ACTIONS(1972), - [anon_sym_RBRACK] = ACTIONS(1972), - [sym_comment] = ACTIONS(56), - }, - [1240] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4127), - }, - [1241] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4129), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1242] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(4131), - [sym_comment] = ACTIONS(56), - }, - [1243] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1922), - [anon_sym_RBRACE] = ACTIONS(4133), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4135), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1244] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1925), - [anon_sym_RBRACE] = ACTIONS(4137), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4139), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1245] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1927), - [anon_sym_RBRACE] = ACTIONS(4119), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4141), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1246] = { - [sym__concat] = ACTIONS(2026), - [anon_sym_RBRACK] = ACTIONS(2026), - [sym_comment] = ACTIONS(56), - }, - [1247] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4143), - }, - [1248] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4145), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1249] = { - [sym__concat] = ACTIONS(2034), - [anon_sym_RBRACK] = ACTIONS(2034), - [sym_comment] = ACTIONS(56), - }, - [1250] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4147), - }, - [1251] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4119), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1252] = { - [sym__concat] = ACTIONS(2196), - [anon_sym_RBRACK] = ACTIONS(2196), - [sym_comment] = ACTIONS(56), - }, - [1253] = { - [sym__concat] = ACTIONS(2402), - [anon_sym_RBRACK] = ACTIONS(2402), - [sym_comment] = ACTIONS(56), - }, - [1254] = { - [sym_string] = STATE(1931), - [sym_simple_expansion] = STATE(1931), - [sym_string_expansion] = STATE(1931), - [sym_expansion] = STATE(1931), - [sym_command_substitution] = STATE(1931), - [sym_process_substitution] = STATE(1931), - [sym__special_characters] = ACTIONS(4149), - [anon_sym_DQUOTE] = ACTIONS(1287), - [anon_sym_DOLLAR] = ACTIONS(1289), - [sym_raw_string] = ACTIONS(4151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), - [anon_sym_BQUOTE] = ACTIONS(1297), - [anon_sym_LT_LPAREN] = ACTIONS(1299), - [anon_sym_GT_LPAREN] = ACTIONS(1299), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4149), - }, - [1255] = { - [aux_sym_concatenation_repeat1] = STATE(1932), - [sym__concat] = ACTIONS(2567), - [anon_sym_RPAREN] = ACTIONS(790), - [sym__special_characters] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(1571), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1571), - }, - [1256] = { - [sym__concat] = ACTIONS(794), - [anon_sym_RPAREN] = ACTIONS(794), - [sym__special_characters] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1573), - }, - [1257] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(4153), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1258] = { - [sym__concat] = ACTIONS(826), - [anon_sym_RPAREN] = ACTIONS(826), - [sym__special_characters] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1577), - }, - [1259] = { - [sym__concat] = ACTIONS(830), - [anon_sym_RPAREN] = ACTIONS(830), - [sym__special_characters] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(1579), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1579), - }, - [1260] = { - [sym__concat] = ACTIONS(834), - [anon_sym_RPAREN] = ACTIONS(834), - [sym__special_characters] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(1581), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1581), - }, - [1261] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(4155), - [sym_comment] = ACTIONS(56), - }, - [1262] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1937), - [anon_sym_RBRACE] = ACTIONS(4157), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4159), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1263] = { - [sym_subscript] = STATE(1941), - [sym_variable_name] = ACTIONS(4161), - [anon_sym_DOLLAR] = ACTIONS(4163), - [anon_sym_DASH] = ACTIONS(4163), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4165), - [anon_sym_STAR] = ACTIONS(4163), - [anon_sym_AT] = ACTIONS(4163), - [anon_sym_QMARK] = ACTIONS(4163), - [anon_sym_0] = ACTIONS(4167), - [anon_sym__] = ACTIONS(4167), - }, - [1264] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1944), - [anon_sym_RBRACE] = ACTIONS(4169), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4171), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1265] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1947), - [anon_sym_RBRACE] = ACTIONS(4173), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4175), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1266] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4177), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1267] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4177), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1268] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(4177), - [sym_comment] = ACTIONS(56), - }, - [1269] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(4177), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1270] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4179), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1271] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4179), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1272] = { - [sym_file_descriptor] = ACTIONS(4181), - [sym_variable_name] = ACTIONS(4181), - [anon_sym_PIPE] = ACTIONS(4183), - [anon_sym_RPAREN] = ACTIONS(4183), - [anon_sym_SEMI_SEMI] = ACTIONS(4183), - [anon_sym_PIPE_AMP] = ACTIONS(4183), - [anon_sym_AMP_AMP] = ACTIONS(4183), - [anon_sym_PIPE_PIPE] = ACTIONS(4183), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_GT_GT] = ACTIONS(4183), - [anon_sym_AMP_GT] = ACTIONS(4183), - [anon_sym_AMP_GT_GT] = ACTIONS(4183), - [anon_sym_LT_AMP] = ACTIONS(4183), - [anon_sym_GT_AMP] = ACTIONS(4183), - [sym__special_characters] = ACTIONS(4183), - [anon_sym_DQUOTE] = ACTIONS(4183), - [anon_sym_DOLLAR] = ACTIONS(4183), - [sym_raw_string] = ACTIONS(4183), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4183), - [anon_sym_BQUOTE] = ACTIONS(4183), - [anon_sym_LT_LPAREN] = ACTIONS(4183), - [anon_sym_GT_LPAREN] = ACTIONS(4183), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4183), - [anon_sym_LF] = ACTIONS(4183), - [anon_sym_AMP] = ACTIONS(4183), - }, - [1273] = { - [sym_concatenation] = STATE(661), - [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), - [aux_sym_for_statement_repeat1] = STATE(1273), - [anon_sym_RPAREN] = ACTIONS(4185), - [sym__special_characters] = ACTIONS(4187), - [anon_sym_DQUOTE] = ACTIONS(4190), - [anon_sym_DOLLAR] = ACTIONS(4193), - [sym_raw_string] = ACTIONS(4196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4199), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4202), - [anon_sym_BQUOTE] = ACTIONS(4205), - [anon_sym_LT_LPAREN] = ACTIONS(4208), - [anon_sym_GT_LPAREN] = ACTIONS(4208), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4211), - }, - [1274] = { - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(1890), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_AMP_GT] = ACTIONS(1892), - [anon_sym_AMP_GT_GT] = ACTIONS(1892), - [anon_sym_LT_AMP] = ACTIONS(1892), - [anon_sym_GT_AMP] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [1275] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(4214), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_AMP_GT] = ACTIONS(1892), - [anon_sym_AMP_GT_GT] = ACTIONS(1892), - [anon_sym_LT_AMP] = ACTIONS(1892), - [anon_sym_GT_AMP] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [1276] = { - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [sym_variable_name] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1929), - [anon_sym_PIPE_AMP] = ACTIONS(1929), - [anon_sym_AMP_AMP] = ACTIONS(1929), - [anon_sym_PIPE_PIPE] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_GT_GT] = ACTIONS(1929), - [anon_sym_AMP_GT] = ACTIONS(1929), - [anon_sym_AMP_GT_GT] = ACTIONS(1929), - [anon_sym_LT_AMP] = ACTIONS(1929), - [anon_sym_GT_AMP] = ACTIONS(1929), - [sym__special_characters] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1929), - [sym_raw_string] = ACTIONS(1929), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), - [anon_sym_BQUOTE] = ACTIONS(1929), - [anon_sym_LT_LPAREN] = ACTIONS(1929), - [anon_sym_GT_LPAREN] = ACTIONS(1929), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1929), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - }, - [1277] = { - [sym_concatenation] = STATE(1953), - [sym_string] = STATE(1952), - [sym_simple_expansion] = STATE(1952), - [sym_string_expansion] = STATE(1952), - [sym_expansion] = STATE(1952), - [sym_command_substitution] = STATE(1952), - [sym_process_substitution] = STATE(1952), - [anon_sym_RBRACE] = ACTIONS(4217), - [sym__special_characters] = ACTIONS(4219), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(4221), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4223), - }, - [1278] = { - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(1972), - [sym_variable_name] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1974), - [anon_sym_GT_GT] = ACTIONS(1974), - [anon_sym_AMP_GT] = ACTIONS(1974), - [anon_sym_AMP_GT_GT] = ACTIONS(1974), - [anon_sym_LT_AMP] = ACTIONS(1974), - [anon_sym_GT_AMP] = ACTIONS(1974), - [sym__special_characters] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(1974), - [sym_raw_string] = ACTIONS(1974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_BQUOTE] = ACTIONS(1974), - [anon_sym_LT_LPAREN] = ACTIONS(1974), - [anon_sym_GT_LPAREN] = ACTIONS(1974), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_LF] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - }, - [1279] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4225), - }, - [1280] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1281] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(4229), - [sym_comment] = ACTIONS(56), - }, - [1282] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1959), - [anon_sym_RBRACE] = ACTIONS(4231), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4233), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1283] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1962), - [anon_sym_RBRACE] = ACTIONS(4235), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4237), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1284] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1964), - [anon_sym_RBRACE] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4239), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1285] = { - [sym_file_descriptor] = ACTIONS(2026), - [sym__concat] = ACTIONS(2026), - [sym_variable_name] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_SEMI_SEMI] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(2028), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [anon_sym_LT] = ACTIONS(2028), - [anon_sym_GT] = ACTIONS(2028), - [anon_sym_GT_GT] = ACTIONS(2028), - [anon_sym_AMP_GT] = ACTIONS(2028), - [anon_sym_AMP_GT_GT] = ACTIONS(2028), - [anon_sym_LT_AMP] = ACTIONS(2028), - [anon_sym_GT_AMP] = ACTIONS(2028), - [sym__special_characters] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [anon_sym_DOLLAR] = ACTIONS(2028), - [sym_raw_string] = ACTIONS(2028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), - [anon_sym_BQUOTE] = ACTIONS(2028), - [anon_sym_LT_LPAREN] = ACTIONS(2028), - [anon_sym_GT_LPAREN] = ACTIONS(2028), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - }, - [1286] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4241), - }, - [1287] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4243), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1288] = { - [sym_file_descriptor] = ACTIONS(2034), - [sym__concat] = ACTIONS(2034), - [sym_variable_name] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_SEMI_SEMI] = ACTIONS(2036), - [anon_sym_PIPE_AMP] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [anon_sym_LT] = ACTIONS(2036), - [anon_sym_GT] = ACTIONS(2036), - [anon_sym_GT_GT] = ACTIONS(2036), - [anon_sym_AMP_GT] = ACTIONS(2036), - [anon_sym_AMP_GT_GT] = ACTIONS(2036), - [anon_sym_LT_AMP] = ACTIONS(2036), - [anon_sym_GT_AMP] = ACTIONS(2036), - [sym__special_characters] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2036), - [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(182), - [sym_word] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_LF] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - }, - [1289] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4245), - }, - [1290] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1291] = { - [sym_file_descriptor] = ACTIONS(2196), - [sym__concat] = ACTIONS(2196), - [sym_variable_name] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_SEMI_SEMI] = ACTIONS(2198), - [anon_sym_PIPE_AMP] = ACTIONS(2198), - [anon_sym_AMP_AMP] = ACTIONS(2198), - [anon_sym_PIPE_PIPE] = ACTIONS(2198), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_GT] = ACTIONS(2198), - [anon_sym_GT_GT] = ACTIONS(2198), - [anon_sym_AMP_GT] = ACTIONS(2198), - [anon_sym_AMP_GT_GT] = ACTIONS(2198), - [anon_sym_LT_AMP] = ACTIONS(2198), - [anon_sym_GT_AMP] = ACTIONS(2198), - [sym__special_characters] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(2198), - [sym_raw_string] = ACTIONS(2198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), - [anon_sym_BQUOTE] = ACTIONS(2198), - [anon_sym_LT_LPAREN] = ACTIONS(2198), - [anon_sym_GT_LPAREN] = ACTIONS(2198), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - }, - [1292] = { - [sym_file_descriptor] = ACTIONS(2402), - [sym__concat] = ACTIONS(2402), - [sym_variable_name] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_SEMI_SEMI] = ACTIONS(2404), - [anon_sym_PIPE_AMP] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2404), - [anon_sym_GT] = ACTIONS(2404), - [anon_sym_GT_GT] = ACTIONS(2404), - [anon_sym_AMP_GT] = ACTIONS(2404), - [anon_sym_AMP_GT_GT] = ACTIONS(2404), - [anon_sym_LT_AMP] = ACTIONS(2404), - [anon_sym_GT_AMP] = ACTIONS(2404), - [sym__special_characters] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2404), - [anon_sym_DOLLAR] = ACTIONS(2404), - [sym_raw_string] = ACTIONS(2404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2404), - [anon_sym_LT_LPAREN] = ACTIONS(2404), - [anon_sym_GT_LPAREN] = ACTIONS(2404), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2404), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LF] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - }, - [1293] = { - [sym_string] = STATE(1968), - [sym_simple_expansion] = STATE(1968), - [sym_string_expansion] = STATE(1968), - [sym_expansion] = STATE(1968), - [sym_command_substitution] = STATE(1968), - [sym_process_substitution] = STATE(1968), - [sym__special_characters] = ACTIONS(4247), - [anon_sym_DQUOTE] = ACTIONS(1331), - [anon_sym_DOLLAR] = ACTIONS(1333), - [sym_raw_string] = ACTIONS(4249), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1337), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1339), - [anon_sym_BQUOTE] = ACTIONS(1341), - [anon_sym_LT_LPAREN] = ACTIONS(1343), - [anon_sym_GT_LPAREN] = ACTIONS(1343), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4247), - }, - [1294] = { - [aux_sym_concatenation_repeat1] = STATE(1969), - [sym__concat] = ACTIONS(2631), - [anon_sym_SEMI_SEMI] = ACTIONS(792), - [sym__special_characters] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(792), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(792), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LF] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(792), - }, - [1295] = { - [sym__concat] = ACTIONS(794), - [anon_sym_SEMI_SEMI] = ACTIONS(796), - [sym__special_characters] = ACTIONS(796), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(796), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(796), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_LF] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - }, - [1296] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(4251), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1297] = { - [sym__concat] = ACTIONS(826), - [anon_sym_SEMI_SEMI] = ACTIONS(828), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(828), - }, - [1298] = { - [sym__concat] = ACTIONS(830), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [sym__special_characters] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(832), - [anon_sym_AMP] = ACTIONS(832), - }, - [1299] = { - [sym__concat] = ACTIONS(834), - [anon_sym_SEMI_SEMI] = ACTIONS(836), - [sym__special_characters] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [sym_raw_string] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), - [anon_sym_BQUOTE] = ACTIONS(836), - [anon_sym_LT_LPAREN] = ACTIONS(836), - [anon_sym_GT_LPAREN] = ACTIONS(836), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(836), - }, - [1300] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(4253), - [sym_comment] = ACTIONS(56), - }, - [1301] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1974), - [anon_sym_RBRACE] = ACTIONS(4255), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4257), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1302] = { - [sym_subscript] = STATE(1978), - [sym_variable_name] = ACTIONS(4259), - [anon_sym_DOLLAR] = ACTIONS(4261), - [anon_sym_DASH] = ACTIONS(4261), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4263), - [anon_sym_STAR] = ACTIONS(4261), - [anon_sym_AT] = ACTIONS(4261), - [anon_sym_QMARK] = ACTIONS(4261), - [anon_sym_0] = ACTIONS(4265), - [anon_sym__] = ACTIONS(4265), - }, - [1303] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1981), - [anon_sym_RBRACE] = ACTIONS(4267), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4269), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1304] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(1984), - [anon_sym_RBRACE] = ACTIONS(4271), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4273), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1305] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4275), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1306] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4275), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1307] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(4275), - [sym_comment] = ACTIONS(56), - }, - [1308] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1309] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4277), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1310] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4277), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1311] = { - [sym_do_group] = STATE(1987), - [anon_sym_do] = ACTIONS(1347), - [sym_comment] = ACTIONS(56), - }, - [1312] = { - [sym_concatenation] = STATE(689), - [sym_string] = STATE(684), - [sym_simple_expansion] = STATE(684), - [sym_string_expansion] = STATE(684), - [sym_expansion] = STATE(684), - [sym_command_substitution] = STATE(684), - [sym_process_substitution] = STATE(684), - [aux_sym_for_statement_repeat1] = STATE(1312), - [anon_sym_SEMI_SEMI] = ACTIONS(4279), - [sym__special_characters] = ACTIONS(4281), - [anon_sym_DQUOTE] = ACTIONS(4284), - [anon_sym_DOLLAR] = ACTIONS(4287), - [sym_raw_string] = ACTIONS(4290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4296), - [anon_sym_BQUOTE] = ACTIONS(4299), - [anon_sym_LT_LPAREN] = ACTIONS(4302), - [anon_sym_GT_LPAREN] = ACTIONS(4302), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4290), - [anon_sym_SEMI] = ACTIONS(4279), - [anon_sym_LF] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(4279), - }, - [1313] = { - [anon_sym_esac] = ACTIONS(2681), - [anon_sym_PIPE] = ACTIONS(2681), - [anon_sym_RPAREN] = ACTIONS(2681), - [anon_sym_SEMI_SEMI] = ACTIONS(2681), - [anon_sym_PIPE_AMP] = ACTIONS(2681), - [anon_sym_AMP_AMP] = ACTIONS(2681), - [anon_sym_PIPE_PIPE] = ACTIONS(2681), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym_LF] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2681), - }, - [1314] = { - [sym__terminated_statement] = STATE(694), - [sym_for_statement] = STATE(695), - [sym_while_statement] = STATE(695), - [sym_if_statement] = STATE(695), - [sym_case_statement] = STATE(695), - [sym_function_definition] = STATE(695), - [sym_subshell] = STATE(695), - [sym_pipeline] = STATE(695), - [sym_list] = STATE(695), - [sym_command] = STATE(695), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(695), - [sym_variable_assignment] = STATE(696), - [sym_declaration_command] = STATE(695), - [sym_unset_command] = STATE(695), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1317), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(4305), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [1315] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_done] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1104), - [sym_raw_string] = ACTIONS(1102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), - [anon_sym_BQUOTE] = ACTIONS(1102), - [anon_sym_LT_LPAREN] = ACTIONS(1102), - [anon_sym_GT_LPAREN] = ACTIONS(1102), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1106), - }, - [1316] = { - [sym_file_descriptor] = ACTIONS(4307), - [anon_sym_esac] = ACTIONS(4309), - [anon_sym_PIPE] = ACTIONS(4309), - [anon_sym_RPAREN] = ACTIONS(4309), - [anon_sym_SEMI_SEMI] = ACTIONS(4309), - [anon_sym_PIPE_AMP] = ACTIONS(4309), - [anon_sym_AMP_AMP] = ACTIONS(4309), - [anon_sym_PIPE_PIPE] = ACTIONS(4309), - [anon_sym_LT] = ACTIONS(4309), - [anon_sym_GT] = ACTIONS(4309), - [anon_sym_GT_GT] = ACTIONS(4309), - [anon_sym_AMP_GT] = ACTIONS(4309), - [anon_sym_AMP_GT_GT] = ACTIONS(4309), - [anon_sym_LT_AMP] = ACTIONS(4309), - [anon_sym_GT_AMP] = ACTIONS(4309), - [anon_sym_LT_LT] = ACTIONS(4309), - [anon_sym_LT_LT_DASH] = ACTIONS(4309), - [anon_sym_LT_LT_LT] = ACTIONS(4309), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4309), - [anon_sym_LF] = ACTIONS(4309), - [anon_sym_AMP] = ACTIONS(4309), - }, - [1317] = { - [sym__terminated_statement] = STATE(694), - [sym_for_statement] = STATE(695), - [sym_while_statement] = STATE(695), - [sym_if_statement] = STATE(695), - [sym_case_statement] = STATE(695), - [sym_function_definition] = STATE(695), - [sym_subshell] = STATE(695), - [sym_pipeline] = STATE(695), - [sym_list] = STATE(695), - [sym_command] = STATE(695), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(695), - [sym_variable_assignment] = STATE(696), - [sym_declaration_command] = STATE(695), - [sym_unset_command] = STATE(695), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1317), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1152), - [sym_variable_name] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_done] = ACTIONS(4311), - [anon_sym_if] = ACTIONS(1166), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_function] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), - [anon_sym_declare] = ACTIONS(1184), - [anon_sym_typeset] = ACTIONS(1184), - [anon_sym_export] = ACTIONS(1184), - [anon_sym_readonly] = ACTIONS(1184), - [anon_sym_local] = ACTIONS(1184), - [anon_sym_unset] = ACTIONS(1187), - [anon_sym_unsetenv] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1193), - [anon_sym_AMP_GT] = ACTIONS(1190), - [anon_sym_AMP_GT_GT] = ACTIONS(1193), - [anon_sym_LT_AMP] = ACTIONS(1193), - [anon_sym_GT_AMP] = ACTIONS(1193), - [sym__special_characters] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1199), - [anon_sym_DOLLAR] = ACTIONS(1202), - [sym_raw_string] = ACTIONS(1205), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1211), - [anon_sym_BQUOTE] = ACTIONS(1214), - [anon_sym_LT_LPAREN] = ACTIONS(1217), - [anon_sym_GT_LPAREN] = ACTIONS(1217), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1220), - }, - [1318] = { - [anon_sym_then] = ACTIONS(4313), - [sym_comment] = ACTIONS(56), - }, - [1319] = { - [sym_file_descriptor] = ACTIONS(340), - [sym_variable_name] = ACTIONS(340), - [anon_sym_for] = ACTIONS(342), - [anon_sym_while] = ACTIONS(342), - [anon_sym_if] = ACTIONS(342), - [anon_sym_fi] = ACTIONS(342), - [anon_sym_case] = ACTIONS(342), - [anon_sym_function] = ACTIONS(342), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_LBRACK] = ACTIONS(342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(340), - [anon_sym_declare] = ACTIONS(342), - [anon_sym_typeset] = ACTIONS(342), - [anon_sym_export] = ACTIONS(342), - [anon_sym_readonly] = ACTIONS(342), - [anon_sym_local] = ACTIONS(342), - [anon_sym_unset] = ACTIONS(342), - [anon_sym_unsetenv] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(340), - [anon_sym_AMP_GT] = ACTIONS(342), - [anon_sym_AMP_GT_GT] = ACTIONS(340), - [anon_sym_LT_AMP] = ACTIONS(340), - [anon_sym_GT_AMP] = ACTIONS(340), - [sym__special_characters] = ACTIONS(344), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(342), - [sym_raw_string] = ACTIONS(340), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(340), - [anon_sym_BQUOTE] = ACTIONS(340), - [anon_sym_LT_LPAREN] = ACTIONS(340), - [anon_sym_GT_LPAREN] = ACTIONS(340), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(344), - }, - [1320] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(4315), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4315), - [anon_sym_LF] = ACTIONS(4315), - [anon_sym_AMP] = ACTIONS(4315), - }, - [1321] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(4315), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(4315), - [anon_sym_LF] = ACTIONS(4315), - [anon_sym_AMP] = ACTIONS(4315), - }, - [1322] = { - [sym__terminated_statement] = STATE(1319), - [sym_for_statement] = STATE(1320), - [sym_while_statement] = STATE(1320), - [sym_if_statement] = STATE(1320), - [sym_case_statement] = STATE(1320), - [sym_function_definition] = STATE(1320), - [sym_subshell] = STATE(1320), - [sym_pipeline] = STATE(1320), - [sym_list] = STATE(1320), - [sym_command] = STATE(1320), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(1320), - [sym_variable_assignment] = STATE(1321), - [sym_declaration_command] = STATE(1320), - [sym_unset_command] = STATE(1320), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1991), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(4317), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [1323] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_fi] = ACTIONS(1104), - [anon_sym_elif] = ACTIONS(1104), - [anon_sym_else] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1104), - [sym_raw_string] = ACTIONS(1102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), - [anon_sym_BQUOTE] = ACTIONS(1102), - [anon_sym_LT_LPAREN] = ACTIONS(1102), - [anon_sym_GT_LPAREN] = ACTIONS(1102), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1106), - }, - [1324] = { - [anon_sym_esac] = ACTIONS(4319), - [anon_sym_PIPE] = ACTIONS(4319), - [anon_sym_RPAREN] = ACTIONS(4319), - [anon_sym_SEMI_SEMI] = ACTIONS(4319), - [anon_sym_PIPE_AMP] = ACTIONS(4319), - [anon_sym_AMP_AMP] = ACTIONS(4319), - [anon_sym_PIPE_PIPE] = ACTIONS(4319), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4319), - [anon_sym_LF] = ACTIONS(4319), - [anon_sym_AMP] = ACTIONS(4319), - }, - [1325] = { - [anon_sym_fi] = ACTIONS(4321), - [sym_comment] = ACTIONS(56), - }, - [1326] = { - [sym__terminated_statement] = STATE(702), - [sym_for_statement] = STATE(703), - [sym_while_statement] = STATE(703), - [sym_if_statement] = STATE(703), - [sym_case_statement] = STATE(703), - [sym_function_definition] = STATE(703), - [sym_subshell] = STATE(703), - [sym_pipeline] = STATE(703), - [sym_list] = STATE(703), - [sym_command] = STATE(703), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(703), - [sym_variable_assignment] = STATE(706), - [sym_declaration_command] = STATE(703), - [sym_unset_command] = STATE(703), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1326), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1152), - [sym_variable_name] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1166), - [anon_sym_fi] = ACTIONS(4311), - [anon_sym_elif] = ACTIONS(4311), - [anon_sym_else] = ACTIONS(4311), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_function] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), - [anon_sym_declare] = ACTIONS(1184), - [anon_sym_typeset] = ACTIONS(1184), - [anon_sym_export] = ACTIONS(1184), - [anon_sym_readonly] = ACTIONS(1184), - [anon_sym_local] = ACTIONS(1184), - [anon_sym_unset] = ACTIONS(1187), - [anon_sym_unsetenv] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1193), - [anon_sym_AMP_GT] = ACTIONS(1190), - [anon_sym_AMP_GT_GT] = ACTIONS(1193), - [anon_sym_LT_AMP] = ACTIONS(1193), - [anon_sym_GT_AMP] = ACTIONS(1193), - [sym__special_characters] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1199), - [anon_sym_DOLLAR] = ACTIONS(1202), - [sym_raw_string] = ACTIONS(1205), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1211), - [anon_sym_BQUOTE] = ACTIONS(1214), - [anon_sym_LT_LPAREN] = ACTIONS(1217), - [anon_sym_GT_LPAREN] = ACTIONS(1217), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1220), - }, - [1327] = { - [sym_elif_clause] = STATE(704), - [sym_else_clause] = STATE(1993), - [aux_sym_if_statement_repeat1] = STATE(1328), - [anon_sym_fi] = ACTIONS(4321), - [anon_sym_elif] = ACTIONS(2701), - [anon_sym_else] = ACTIONS(2703), - [sym_comment] = ACTIONS(56), - }, - [1328] = { - [sym_elif_clause] = STATE(704), - [aux_sym_if_statement_repeat1] = STATE(1328), - [anon_sym_fi] = ACTIONS(4323), - [anon_sym_elif] = ACTIONS(4325), - [anon_sym_else] = ACTIONS(4323), - [sym_comment] = ACTIONS(56), - }, - [1329] = { - [anon_sym_esac] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4328), - [anon_sym_RPAREN] = ACTIONS(4328), - [anon_sym_SEMI_SEMI] = ACTIONS(4328), - [anon_sym_PIPE_AMP] = ACTIONS(4328), - [anon_sym_AMP_AMP] = ACTIONS(4328), - [anon_sym_PIPE_PIPE] = ACTIONS(4328), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4328), - [anon_sym_LF] = ACTIONS(4328), - [anon_sym_AMP] = ACTIONS(4328), - }, - [1330] = { - [aux_sym_case_item_repeat1] = STATE(1997), - [aux_sym_concatenation_repeat1] = STATE(1998), - [sym__concat] = ACTIONS(4330), - [anon_sym_PIPE] = ACTIONS(4332), - [anon_sym_RPAREN] = ACTIONS(4334), - [sym_comment] = ACTIONS(56), - }, - [1331] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(2000), - [anon_sym_DQUOTE] = ACTIONS(4336), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1332] = { - [sym_string] = STATE(2002), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(4338), - [sym_raw_string] = ACTIONS(4340), - [anon_sym_POUND] = ACTIONS(4338), - [anon_sym_DASH] = ACTIONS(4338), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4342), - [anon_sym_STAR] = ACTIONS(4338), - [anon_sym_AT] = ACTIONS(4338), - [anon_sym_QMARK] = ACTIONS(4338), - [anon_sym_0] = ACTIONS(4344), - [anon_sym__] = ACTIONS(4344), - }, - [1333] = { - [aux_sym_case_item_repeat1] = STATE(2005), - [aux_sym_concatenation_repeat1] = STATE(1998), - [sym__concat] = ACTIONS(4330), - [anon_sym_PIPE] = ACTIONS(4332), - [anon_sym_RPAREN] = ACTIONS(4346), - [sym_comment] = ACTIONS(56), - }, - [1334] = { - [sym_subscript] = STATE(2010), - [sym_variable_name] = ACTIONS(4348), - [anon_sym_DOLLAR] = ACTIONS(4350), - [anon_sym_POUND] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4350), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4354), - [anon_sym_STAR] = ACTIONS(4350), - [anon_sym_AT] = ACTIONS(4350), - [anon_sym_QMARK] = ACTIONS(4350), - [anon_sym_0] = ACTIONS(4356), - [anon_sym__] = ACTIONS(4356), - }, - [1335] = { - [sym_for_statement] = STATE(2011), - [sym_while_statement] = STATE(2011), - [sym_if_statement] = STATE(2011), - [sym_case_statement] = STATE(2011), - [sym_function_definition] = STATE(2011), - [sym_subshell] = STATE(2011), - [sym_pipeline] = STATE(2011), - [sym_list] = STATE(2011), - [sym_command] = STATE(2011), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(2011), - [sym_variable_assignment] = STATE(2012), - [sym_declaration_command] = STATE(2011), - [sym_unset_command] = STATE(2011), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [1336] = { - [sym_for_statement] = STATE(2013), - [sym_while_statement] = STATE(2013), - [sym_if_statement] = STATE(2013), - [sym_case_statement] = STATE(2013), - [sym_function_definition] = STATE(2013), - [sym_subshell] = STATE(2013), - [sym_pipeline] = STATE(2013), - [sym_list] = STATE(2013), - [sym_command] = STATE(2013), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(2013), - [sym_variable_assignment] = STATE(2014), - [sym_declaration_command] = STATE(2013), - [sym_unset_command] = STATE(2013), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [1337] = { - [sym_for_statement] = STATE(2015), - [sym_while_statement] = STATE(2015), - [sym_if_statement] = STATE(2015), - [sym_case_statement] = STATE(2015), - [sym_function_definition] = STATE(2015), - [sym_subshell] = STATE(2015), - [sym_pipeline] = STATE(2015), - [sym_list] = STATE(2015), - [sym_command] = STATE(2015), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(2015), - [sym_variable_assignment] = STATE(2016), - [sym_declaration_command] = STATE(2015), - [sym_unset_command] = STATE(2015), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [1338] = { - [sym__special_characters] = ACTIONS(4358), - [anon_sym_DQUOTE] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4358), - [sym_raw_string] = ACTIONS(4360), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4360), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4360), - [anon_sym_BQUOTE] = ACTIONS(4360), - [anon_sym_LT_LPAREN] = ACTIONS(4360), - [anon_sym_GT_LPAREN] = ACTIONS(4360), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4358), - }, - [1339] = { - [anon_sym_esac] = ACTIONS(4362), - [sym_comment] = ACTIONS(56), - }, - [1340] = { - [aux_sym_case_item_repeat1] = STATE(2005), - [anon_sym_PIPE] = ACTIONS(4332), - [anon_sym_RPAREN] = ACTIONS(4346), - [sym_comment] = ACTIONS(56), - }, - [1341] = { - [sym_case_item] = STATE(1338), - [sym_last_case_item] = STATE(2018), - [sym_concatenation] = STATE(1340), - [sym_string] = STATE(1333), - [sym_simple_expansion] = STATE(1333), - [sym_string_expansion] = STATE(1333), - [sym_expansion] = STATE(1333), - [sym_command_substitution] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_case_statement_repeat1] = STATE(2019), - [sym__special_characters] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2711), - [sym_raw_string] = ACTIONS(2713), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), - [anon_sym_BQUOTE] = ACTIONS(2719), - [anon_sym_LT_LPAREN] = ACTIONS(2721), - [anon_sym_GT_LPAREN] = ACTIONS(2721), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4364), - }, - [1342] = { - [sym_case_item] = STATE(1338), - [sym_last_case_item] = STATE(2018), - [sym_concatenation] = STATE(1340), - [sym_string] = STATE(1333), - [sym_simple_expansion] = STATE(1333), - [sym_string_expansion] = STATE(1333), - [sym_expansion] = STATE(1333), - [sym_command_substitution] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_case_statement_repeat1] = STATE(2021), - [anon_sym_esac] = ACTIONS(4366), - [sym__special_characters] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2711), - [sym_raw_string] = ACTIONS(2713), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), - [anon_sym_BQUOTE] = ACTIONS(2719), - [anon_sym_LT_LPAREN] = ACTIONS(2721), - [anon_sym_GT_LPAREN] = ACTIONS(2721), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2723), - }, - [1343] = { - [anon_sym_esac] = ACTIONS(4368), - [anon_sym_PIPE] = ACTIONS(4368), - [anon_sym_RPAREN] = ACTIONS(4368), - [anon_sym_SEMI_SEMI] = ACTIONS(4368), - [anon_sym_PIPE_AMP] = ACTIONS(4368), - [anon_sym_AMP_AMP] = ACTIONS(4368), - [anon_sym_PIPE_PIPE] = ACTIONS(4368), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4368), - [anon_sym_LF] = ACTIONS(4368), - [anon_sym_AMP] = ACTIONS(4368), - }, - [1344] = { - [anon_sym_esac] = ACTIONS(4370), - [sym_comment] = ACTIONS(56), - }, - [1345] = { - [sym_case_item] = STATE(1338), - [sym_last_case_item] = STATE(2023), - [sym_concatenation] = STATE(1340), - [sym_string] = STATE(1333), - [sym_simple_expansion] = STATE(1333), - [sym_string_expansion] = STATE(1333), - [sym_expansion] = STATE(1333), - [sym_command_substitution] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_case_statement_repeat1] = STATE(2019), - [sym__special_characters] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2711), - [sym_raw_string] = ACTIONS(2713), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), - [anon_sym_BQUOTE] = ACTIONS(2719), - [anon_sym_LT_LPAREN] = ACTIONS(2721), - [anon_sym_GT_LPAREN] = ACTIONS(2721), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4364), - }, - [1346] = { - [sym_case_item] = STATE(1338), - [sym_last_case_item] = STATE(2023), - [sym_concatenation] = STATE(1340), - [sym_string] = STATE(1333), - [sym_simple_expansion] = STATE(1333), - [sym_string_expansion] = STATE(1333), - [sym_expansion] = STATE(1333), - [sym_command_substitution] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_case_statement_repeat1] = STATE(2025), - [anon_sym_esac] = ACTIONS(4372), - [sym__special_characters] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2711), - [sym_raw_string] = ACTIONS(2713), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), - [anon_sym_BQUOTE] = ACTIONS(2719), - [anon_sym_LT_LPAREN] = ACTIONS(2721), - [anon_sym_GT_LPAREN] = ACTIONS(2721), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2723), - }, - [1347] = { - [sym__concat] = ACTIONS(3293), - [anon_sym_in] = ACTIONS(3295), - [anon_sym_SEMI_SEMI] = ACTIONS(3295), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - }, - [1348] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(4374), - [sym_comment] = ACTIONS(56), - }, - [1349] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(4376), - [sym_comment] = ACTIONS(56), - }, - [1350] = { - [anon_sym_RBRACE] = ACTIONS(4376), - [sym_comment] = ACTIONS(56), - }, - [1351] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2029), - [anon_sym_RBRACE] = ACTIONS(4378), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1352] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_in] = ACTIONS(3359), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - }, - [1353] = { - [sym_concatenation] = STATE(2032), - [sym_string] = STATE(2031), - [sym_simple_expansion] = STATE(2031), - [sym_string_expansion] = STATE(2031), - [sym_expansion] = STATE(2031), - [sym_command_substitution] = STATE(2031), - [sym_process_substitution] = STATE(2031), - [anon_sym_RBRACE] = ACTIONS(4376), - [sym__special_characters] = ACTIONS(4380), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(4382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4384), - }, - [1354] = { - [sym__concat] = ACTIONS(3402), - [anon_sym_in] = ACTIONS(3404), - [anon_sym_SEMI_SEMI] = ACTIONS(3404), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - }, - [1355] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4386), - }, - [1356] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4388), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1357] = { - [sym__concat] = ACTIONS(3410), - [anon_sym_in] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3412), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - }, - [1358] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4390), - }, - [1359] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4392), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1360] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4394), - }, - [1361] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4376), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1362] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2039), - [anon_sym_RBRACE] = ACTIONS(4396), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1363] = { - [sym__concat] = ACTIONS(3422), - [anon_sym_in] = ACTIONS(3424), - [anon_sym_SEMI_SEMI] = ACTIONS(3424), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - }, - [1364] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2041), - [anon_sym_RBRACE] = ACTIONS(4398), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1365] = { - [sym_file_redirect] = STATE(2042), - [sym_file_descriptor] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(4400), - [anon_sym_SEMI_SEMI] = ACTIONS(4400), - [anon_sym_PIPE_AMP] = ACTIONS(4400), - [anon_sym_AMP_AMP] = ACTIONS(4400), - [anon_sym_PIPE_PIPE] = ACTIONS(4400), - [anon_sym_LT] = ACTIONS(1407), - [anon_sym_GT] = ACTIONS(1407), - [anon_sym_GT_GT] = ACTIONS(1407), - [anon_sym_AMP_GT] = ACTIONS(1407), - [anon_sym_AMP_GT_GT] = ACTIONS(1407), - [anon_sym_LT_AMP] = ACTIONS(1407), - [anon_sym_GT_AMP] = ACTIONS(1407), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4400), - [anon_sym_LF] = ACTIONS(4400), - [anon_sym_AMP] = ACTIONS(4400), - }, - [1366] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1104), - [sym_raw_string] = ACTIONS(1102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), - [anon_sym_BQUOTE] = ACTIONS(1102), - [anon_sym_LT_LPAREN] = ACTIONS(1102), - [anon_sym_GT_LPAREN] = ACTIONS(1102), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1106), - }, - [1367] = { - [sym_file_descriptor] = ACTIONS(4402), - [anon_sym_esac] = ACTIONS(4404), - [anon_sym_PIPE] = ACTIONS(4404), - [anon_sym_RPAREN] = ACTIONS(4404), - [anon_sym_SEMI_SEMI] = ACTIONS(4404), - [anon_sym_PIPE_AMP] = ACTIONS(4404), - [anon_sym_AMP_AMP] = ACTIONS(4404), - [anon_sym_PIPE_PIPE] = ACTIONS(4404), - [anon_sym_LT] = ACTIONS(4404), - [anon_sym_GT] = ACTIONS(4404), - [anon_sym_GT_GT] = ACTIONS(4404), - [anon_sym_AMP_GT] = ACTIONS(4404), - [anon_sym_AMP_GT_GT] = ACTIONS(4404), - [anon_sym_LT_AMP] = ACTIONS(4404), - [anon_sym_GT_AMP] = ACTIONS(4404), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4404), - [anon_sym_LF] = ACTIONS(4404), - [anon_sym_AMP] = ACTIONS(4404), - }, - [1368] = { - [sym__terminated_statement] = STATE(734), - [sym_for_statement] = STATE(735), - [sym_while_statement] = STATE(735), - [sym_if_statement] = STATE(735), - [sym_case_statement] = STATE(735), - [sym_function_definition] = STATE(735), - [sym_subshell] = STATE(735), - [sym_pipeline] = STATE(735), - [sym_list] = STATE(735), - [sym_command] = STATE(735), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(735), - [sym_variable_assignment] = STATE(736), - [sym_declaration_command] = STATE(735), - [sym_unset_command] = STATE(735), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1368), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1152), - [sym_variable_name] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1166), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_function] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), - [anon_sym_declare] = ACTIONS(1184), - [anon_sym_typeset] = ACTIONS(1184), - [anon_sym_export] = ACTIONS(1184), - [anon_sym_readonly] = ACTIONS(1184), - [anon_sym_local] = ACTIONS(1184), - [anon_sym_unset] = ACTIONS(1187), - [anon_sym_unsetenv] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1193), - [anon_sym_AMP_GT] = ACTIONS(1190), - [anon_sym_AMP_GT_GT] = ACTIONS(1193), - [anon_sym_LT_AMP] = ACTIONS(1193), - [anon_sym_GT_AMP] = ACTIONS(1193), - [sym__special_characters] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1199), - [anon_sym_DOLLAR] = ACTIONS(1202), - [sym_raw_string] = ACTIONS(1205), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1211), - [anon_sym_BQUOTE] = ACTIONS(1214), - [anon_sym_LT_LPAREN] = ACTIONS(1217), - [anon_sym_GT_LPAREN] = ACTIONS(1217), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1220), - }, - [1369] = { - [sym_concatenation] = STATE(2045), - [sym_string] = STATE(2044), - [sym_simple_expansion] = STATE(2044), - [sym_string_expansion] = STATE(2044), - [sym_expansion] = STATE(2044), - [sym_command_substitution] = STATE(2044), - [sym_process_substitution] = STATE(2044), - [sym__special_characters] = ACTIONS(4406), - [anon_sym_DQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2780), - [sym_raw_string] = ACTIONS(4408), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2784), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2786), - [anon_sym_BQUOTE] = ACTIONS(2788), - [anon_sym_LT_LPAREN] = ACTIONS(2790), - [anon_sym_GT_LPAREN] = ACTIONS(2790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4410), - }, - [1370] = { - [aux_sym_concatenation_repeat1] = STATE(2047), - [sym__concat] = ACTIONS(4412), - [anon_sym_PIPE] = 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), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_LF] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2418), - }, - [1371] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(2049), - [anon_sym_DQUOTE] = ACTIONS(4414), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1372] = { - [sym_string] = STATE(2051), - [anon_sym_DQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(4416), - [sym_raw_string] = ACTIONS(4418), - [anon_sym_POUND] = ACTIONS(4416), - [anon_sym_DASH] = ACTIONS(4416), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4420), - [anon_sym_STAR] = ACTIONS(4416), - [anon_sym_AT] = ACTIONS(4416), - [anon_sym_QMARK] = ACTIONS(4416), - [anon_sym_0] = ACTIONS(4422), - [anon_sym__] = ACTIONS(4422), - }, - [1373] = { - [aux_sym_concatenation_repeat1] = STATE(2047), - [sym__concat] = ACTIONS(4412), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_SEMI_SEMI] = ACTIONS(2430), - [anon_sym_PIPE_AMP] = ACTIONS(2430), - [anon_sym_AMP_AMP] = ACTIONS(2430), - [anon_sym_PIPE_PIPE] = ACTIONS(2430), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2430), - [anon_sym_LF] = ACTIONS(2430), - [anon_sym_AMP] = ACTIONS(2430), - }, - [1374] = { - [sym_subscript] = STATE(2057), - [sym_variable_name] = ACTIONS(4424), - [anon_sym_DOLLAR] = ACTIONS(4426), - [anon_sym_POUND] = ACTIONS(4428), - [anon_sym_DASH] = ACTIONS(4426), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4430), - [anon_sym_STAR] = ACTIONS(4426), - [anon_sym_AT] = ACTIONS(4426), - [anon_sym_QMARK] = ACTIONS(4426), - [anon_sym_0] = ACTIONS(4432), - [anon_sym__] = ACTIONS(4432), - }, - [1375] = { - [sym_for_statement] = STATE(2058), - [sym_while_statement] = STATE(2058), - [sym_if_statement] = STATE(2058), - [sym_case_statement] = STATE(2058), - [sym_function_definition] = STATE(2058), - [sym_subshell] = STATE(2058), - [sym_pipeline] = STATE(2058), - [sym_list] = STATE(2058), - [sym_command] = STATE(2058), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(2058), - [sym_variable_assignment] = STATE(2059), - [sym_declaration_command] = STATE(2058), - [sym_unset_command] = STATE(2058), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [1376] = { - [sym_for_statement] = STATE(2060), - [sym_while_statement] = STATE(2060), - [sym_if_statement] = STATE(2060), - [sym_case_statement] = STATE(2060), - [sym_function_definition] = STATE(2060), - [sym_subshell] = STATE(2060), - [sym_pipeline] = STATE(2060), - [sym_list] = STATE(2060), - [sym_command] = STATE(2060), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(2060), - [sym_variable_assignment] = STATE(2061), - [sym_declaration_command] = STATE(2060), - [sym_unset_command] = STATE(2060), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [1377] = { - [sym_for_statement] = STATE(2062), - [sym_while_statement] = STATE(2062), - [sym_if_statement] = STATE(2062), - [sym_case_statement] = STATE(2062), - [sym_function_definition] = STATE(2062), - [sym_subshell] = STATE(2062), - [sym_pipeline] = STATE(2062), - [sym_list] = STATE(2062), - [sym_command] = STATE(2062), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(2062), - [sym_variable_assignment] = STATE(2063), - [sym_declaration_command] = STATE(2062), - [sym_unset_command] = STATE(2062), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [1378] = { - [anon_sym_esac] = ACTIONS(2430), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_RPAREN] = ACTIONS(2430), - [anon_sym_SEMI_SEMI] = ACTIONS(2430), - [anon_sym_PIPE_AMP] = ACTIONS(2430), - [anon_sym_AMP_AMP] = ACTIONS(2430), - [anon_sym_PIPE_PIPE] = ACTIONS(2430), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2430), - [anon_sym_LF] = ACTIONS(2430), - [anon_sym_AMP] = ACTIONS(2430), - }, - [1379] = { - [sym_string] = STATE(2064), - [sym_simple_expansion] = STATE(2064), - [sym_string_expansion] = STATE(2064), - [sym_expansion] = STATE(2064), - [sym_command_substitution] = STATE(2064), - [sym_process_substitution] = STATE(2064), - [sym__special_characters] = ACTIONS(4434), - [anon_sym_DQUOTE] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1413), - [sym_raw_string] = ACTIONS(4436), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1419), - [anon_sym_BQUOTE] = ACTIONS(1421), - [anon_sym_LT_LPAREN] = ACTIONS(1423), - [anon_sym_GT_LPAREN] = ACTIONS(1423), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4434), - }, - [1380] = { - [aux_sym_concatenation_repeat1] = STATE(2065), - [sym_file_descriptor] = ACTIONS(790), - [sym__concat] = ACTIONS(2796), - [sym_variable_name] = ACTIONS(790), - [anon_sym_PIPE] = ACTIONS(792), - [anon_sym_RPAREN] = ACTIONS(792), - [anon_sym_SEMI_SEMI] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [anon_sym_LT] = ACTIONS(792), - [anon_sym_GT] = ACTIONS(792), - [anon_sym_GT_GT] = ACTIONS(792), - [anon_sym_AMP_GT] = ACTIONS(792), - [anon_sym_AMP_GT_GT] = ACTIONS(792), - [anon_sym_LT_AMP] = ACTIONS(792), - [anon_sym_GT_AMP] = ACTIONS(792), - [sym__special_characters] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(792), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(792), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LF] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(792), - }, - [1381] = { - [sym_file_descriptor] = ACTIONS(794), - [sym__concat] = ACTIONS(794), - [sym_variable_name] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_RPAREN] = ACTIONS(796), - [anon_sym_SEMI_SEMI] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_GT] = ACTIONS(796), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_AMP_GT] = ACTIONS(796), - [anon_sym_AMP_GT_GT] = ACTIONS(796), - [anon_sym_LT_AMP] = ACTIONS(796), - [anon_sym_GT_AMP] = ACTIONS(796), - [sym__special_characters] = ACTIONS(796), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(796), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(796), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_LF] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - }, - [1382] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(4438), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1383] = { - [sym_file_descriptor] = ACTIONS(826), - [sym__concat] = ACTIONS(826), - [sym_variable_name] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_SEMI_SEMI] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(828), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(828), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(828), - }, - [1384] = { - [sym_file_descriptor] = ACTIONS(830), - [sym__concat] = ACTIONS(830), - [sym_variable_name] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_GT] = ACTIONS(832), - [anon_sym_GT_GT] = ACTIONS(832), - [anon_sym_AMP_GT] = ACTIONS(832), - [anon_sym_AMP_GT_GT] = ACTIONS(832), - [anon_sym_LT_AMP] = ACTIONS(832), - [anon_sym_GT_AMP] = ACTIONS(832), - [sym__special_characters] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(832), - [anon_sym_AMP] = ACTIONS(832), - }, - [1385] = { - [sym_file_descriptor] = ACTIONS(834), - [sym__concat] = ACTIONS(834), - [sym_variable_name] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_SEMI_SEMI] = ACTIONS(836), - [anon_sym_PIPE_AMP] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_AMP_GT] = ACTIONS(836), - [anon_sym_AMP_GT_GT] = ACTIONS(836), - [anon_sym_LT_AMP] = ACTIONS(836), - [anon_sym_GT_AMP] = ACTIONS(836), - [sym__special_characters] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [sym_raw_string] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), - [anon_sym_BQUOTE] = ACTIONS(836), - [anon_sym_LT_LPAREN] = ACTIONS(836), - [anon_sym_GT_LPAREN] = ACTIONS(836), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(836), - }, - [1386] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(4440), - [sym_comment] = ACTIONS(56), - }, - [1387] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2070), - [anon_sym_RBRACE] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4444), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1388] = { - [sym_subscript] = STATE(2074), - [sym_variable_name] = ACTIONS(4446), - [anon_sym_DOLLAR] = ACTIONS(4448), - [anon_sym_DASH] = ACTIONS(4448), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4450), - [anon_sym_STAR] = ACTIONS(4448), - [anon_sym_AT] = ACTIONS(4448), - [anon_sym_QMARK] = ACTIONS(4448), - [anon_sym_0] = ACTIONS(4452), - [anon_sym__] = ACTIONS(4452), - }, - [1389] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2077), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4456), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1390] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2080), - [anon_sym_RBRACE] = ACTIONS(4458), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4460), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1391] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4462), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1392] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4462), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1393] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(4462), - [sym_comment] = ACTIONS(56), - }, - [1394] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(4462), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1395] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4464), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1396] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4464), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1397] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(828), - [sym_file_descriptor] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_RPAREN] = ACTIONS(2687), - [anon_sym_SEMI_SEMI] = ACTIONS(2687), - [anon_sym_PIPE_AMP] = ACTIONS(2687), - [anon_sym_AMP_AMP] = ACTIONS(2687), - [anon_sym_PIPE_PIPE] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(562), - [anon_sym_AMP_GT] = ACTIONS(562), - [anon_sym_AMP_GT_GT] = ACTIONS(562), - [anon_sym_LT_AMP] = ACTIONS(562), - [anon_sym_GT_AMP] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(564), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_LF] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2687), - }, - [1398] = { - [sym_compound_statement] = STATE(2083), - [anon_sym_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(56), - }, - [1399] = { - [anon_sym_LT] = ACTIONS(4466), - [anon_sym_GT] = ACTIONS(4466), - [anon_sym_GT_GT] = ACTIONS(4468), - [anon_sym_AMP_GT] = ACTIONS(4466), - [anon_sym_AMP_GT_GT] = ACTIONS(4468), - [anon_sym_LT_AMP] = ACTIONS(4468), - [anon_sym_GT_AMP] = ACTIONS(4468), - [sym_comment] = ACTIONS(56), - }, - [1400] = { - [sym_concatenation] = STATE(1378), + [2094] = { + [sym__assignment] = STATE(2292), + [anon_sym_EQ] = ACTIONS(5380), + [anon_sym_PLUS_EQ] = ACTIONS(5380), + [sym_comment] = ACTIONS(54), + }, + [2095] = { + [sym_variable_assignment] = STATE(2311), + [sym_subscript] = STATE(2094), + [sym_concatenation] = STATE(2311), [sym_string] = STATE(2088), [sym_simple_expansion] = STATE(2088), [sym_string_expansion] = STATE(2088), [sym_expansion] = STATE(2088), [sym_command_substitution] = STATE(2088), [sym_process_substitution] = STATE(2088), - [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(56), - [sym_word] = ACTIONS(4486), + [aux_sym_declaration_command_repeat1] = STATE(2311), + [sym_variable_name] = ACTIONS(4941), + [anon_sym_esac] = ACTIONS(612), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_SEMI_SEMI] = ACTIONS(612), + [anon_sym_PIPE_AMP] = ACTIONS(612), + [anon_sym_AMP_AMP] = ACTIONS(612), + [anon_sym_PIPE_PIPE] = ACTIONS(612), + [sym__special_characters] = ACTIONS(4943), + [anon_sym_DQUOTE] = ACTIONS(4945), + [anon_sym_DOLLAR] = ACTIONS(4947), + [sym_raw_string] = ACTIONS(4949), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4953), + [anon_sym_BQUOTE] = ACTIONS(4955), + [anon_sym_LT_LPAREN] = ACTIONS(4957), + [anon_sym_GT_LPAREN] = ACTIONS(4957), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4959), + [sym_word] = ACTIONS(4949), + [anon_sym_SEMI] = ACTIONS(612), + [anon_sym_LF] = ACTIONS(614), + [anon_sym_AMP] = ACTIONS(612), }, - [1401] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(828), - [sym_file_descriptor] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_RPAREN] = ACTIONS(3113), - [anon_sym_SEMI_SEMI] = ACTIONS(3113), - [anon_sym_PIPE_AMP] = ACTIONS(3113), - [anon_sym_AMP_AMP] = ACTIONS(3113), - [anon_sym_PIPE_PIPE] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(562), - [anon_sym_AMP_GT] = ACTIONS(562), - [anon_sym_AMP_GT_GT] = ACTIONS(562), - [anon_sym_LT_AMP] = ACTIONS(562), - [anon_sym_GT_AMP] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(564), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3113), - [anon_sym_LF] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3113), + [2096] = { + [aux_sym_concatenation_repeat1] = STATE(2313), + [sym__concat] = ACTIONS(5406), + [anon_sym_esac] = ACTIONS(618), + [anon_sym_PIPE] = ACTIONS(618), + [anon_sym_SEMI_SEMI] = ACTIONS(618), + [anon_sym_PIPE_AMP] = ACTIONS(618), + [anon_sym_AMP_AMP] = ACTIONS(618), + [anon_sym_PIPE_PIPE] = ACTIONS(618), + [sym__special_characters] = ACTIONS(618), + [anon_sym_DQUOTE] = ACTIONS(618), + [anon_sym_DOLLAR] = ACTIONS(618), + [sym_raw_string] = ACTIONS(618), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(618), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(618), + [anon_sym_BQUOTE] = ACTIONS(618), + [anon_sym_LT_LPAREN] = ACTIONS(618), + [anon_sym_GT_LPAREN] = ACTIONS(618), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(618), + [sym_word] = ACTIONS(618), + [anon_sym_SEMI] = ACTIONS(618), + [anon_sym_LF] = ACTIONS(620), + [anon_sym_AMP] = ACTIONS(618), }, - [1402] = { - [aux_sym_concatenation_repeat1] = STATE(755), - [sym__concat] = ACTIONS(1433), - [sym_variable_name] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1307), - [anon_sym_RPAREN] = ACTIONS(1307), - [anon_sym_SEMI_SEMI] = ACTIONS(1307), - [anon_sym_PIPE_AMP] = ACTIONS(1307), - [anon_sym_AMP_AMP] = ACTIONS(1307), - [anon_sym_PIPE_PIPE] = ACTIONS(1307), - [sym__special_characters] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1307), - [sym_raw_string] = ACTIONS(1307), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1307), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1307), - [anon_sym_BQUOTE] = ACTIONS(1307), - [anon_sym_LT_LPAREN] = ACTIONS(1307), - [anon_sym_GT_LPAREN] = ACTIONS(1307), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1307), - [sym_word] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1307), - [anon_sym_LF] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1307), + [2097] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(2315), + [anon_sym_DQUOTE] = ACTIONS(5408), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), }, - [1403] = { - [aux_sym_concatenation_repeat1] = STATE(755), - [sym__concat] = ACTIONS(1433), - [sym_variable_name] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_RPAREN] = ACTIONS(1281), - [anon_sym_SEMI_SEMI] = ACTIONS(1281), - [anon_sym_PIPE_AMP] = ACTIONS(1281), - [anon_sym_AMP_AMP] = ACTIONS(1281), - [anon_sym_PIPE_PIPE] = ACTIONS(1281), - [sym__special_characters] = ACTIONS(1281), - [anon_sym_DQUOTE] = ACTIONS(1281), - [anon_sym_DOLLAR] = ACTIONS(1281), - [sym_raw_string] = ACTIONS(1281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), - [anon_sym_BQUOTE] = ACTIONS(1281), - [anon_sym_LT_LPAREN] = ACTIONS(1281), - [anon_sym_GT_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1281), - [sym_word] = ACTIONS(1281), - [anon_sym_SEMI] = ACTIONS(1281), - [anon_sym_LF] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), + [2098] = { + [sym_string] = STATE(2317), + [anon_sym_DQUOTE] = ACTIONS(5410), + [anon_sym_DOLLAR] = ACTIONS(5412), + [sym_raw_string] = ACTIONS(5414), + [anon_sym_POUND] = ACTIONS(5412), + [anon_sym_DASH] = ACTIONS(5412), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5416), + [anon_sym_STAR] = ACTIONS(5412), + [anon_sym_AT] = ACTIONS(5412), + [anon_sym_QMARK] = ACTIONS(5412), + [anon_sym_0] = ACTIONS(5418), + [anon_sym__] = ACTIONS(5418), }, - [1404] = { - [sym__concat] = ACTIONS(1890), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), + [2099] = { + [aux_sym_concatenation_repeat1] = STATE(2313), + [sym__concat] = ACTIONS(5406), + [anon_sym_esac] = ACTIONS(634), + [anon_sym_PIPE] = ACTIONS(634), + [anon_sym_SEMI_SEMI] = ACTIONS(634), + [anon_sym_PIPE_AMP] = ACTIONS(634), + [anon_sym_AMP_AMP] = ACTIONS(634), + [anon_sym_PIPE_PIPE] = ACTIONS(634), + [sym__special_characters] = ACTIONS(634), + [anon_sym_DQUOTE] = ACTIONS(634), + [anon_sym_DOLLAR] = ACTIONS(634), + [sym_raw_string] = ACTIONS(634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(634), + [anon_sym_BQUOTE] = ACTIONS(634), + [anon_sym_LT_LPAREN] = ACTIONS(634), + [anon_sym_GT_LPAREN] = ACTIONS(634), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(634), + [sym_word] = ACTIONS(634), + [anon_sym_SEMI] = ACTIONS(634), + [anon_sym_LF] = ACTIONS(636), + [anon_sym_AMP] = ACTIONS(634), }, - [1405] = { - [aux_sym_concatenation_repeat1] = STATE(1405), - [sym__concat] = ACTIONS(4488), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), + [2100] = { + [sym_subscript] = STATE(2323), + [sym_variable_name] = ACTIONS(5420), + [anon_sym_DOLLAR] = ACTIONS(5422), + [anon_sym_POUND] = ACTIONS(5424), + [anon_sym_DASH] = ACTIONS(5422), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5426), + [anon_sym_STAR] = ACTIONS(5422), + [anon_sym_AT] = ACTIONS(5422), + [anon_sym_QMARK] = ACTIONS(5422), + [anon_sym_0] = ACTIONS(5428), + [anon_sym__] = ACTIONS(5428), }, - [1406] = { - [sym__concat] = ACTIONS(1927), - [sym_variable_name] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_RPAREN] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1929), - [anon_sym_PIPE_AMP] = ACTIONS(1929), - [anon_sym_AMP_AMP] = ACTIONS(1929), - [anon_sym_PIPE_PIPE] = ACTIONS(1929), - [sym__special_characters] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1929), - [sym_raw_string] = ACTIONS(1929), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), - [anon_sym_BQUOTE] = ACTIONS(1929), - [anon_sym_LT_LPAREN] = ACTIONS(1929), - [anon_sym_GT_LPAREN] = ACTIONS(1929), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1929), - [sym_word] = ACTIONS(1929), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), + [2101] = { + [sym_for_statement] = STATE(2324), + [sym_while_statement] = STATE(2324), + [sym_if_statement] = STATE(2324), + [sym_case_statement] = STATE(2324), + [sym_function_definition] = STATE(2324), + [sym_subshell] = STATE(2324), + [sym_pipeline] = STATE(2324), + [sym_list] = STATE(2324), + [sym_command] = STATE(2324), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(2324), + [sym_variable_assignment] = STATE(2325), + [sym_declaration_command] = STATE(2324), + [sym_unset_command] = STATE(2324), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), }, - [1407] = { - [sym_concatenation] = STATE(2096), - [sym_string] = STATE(2095), - [sym_simple_expansion] = STATE(2095), - [sym_string_expansion] = STATE(2095), - [sym_expansion] = STATE(2095), - [sym_command_substitution] = STATE(2095), - [sym_process_substitution] = STATE(2095), - [anon_sym_RBRACE] = ACTIONS(4491), - [sym__special_characters] = ACTIONS(4493), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(4495), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4497), + [2102] = { + [sym_for_statement] = STATE(2326), + [sym_while_statement] = STATE(2326), + [sym_if_statement] = STATE(2326), + [sym_case_statement] = STATE(2326), + [sym_function_definition] = STATE(2326), + [sym_subshell] = STATE(2326), + [sym_pipeline] = STATE(2326), + [sym_list] = STATE(2326), + [sym_command] = STATE(2326), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(2326), + [sym_variable_assignment] = STATE(2327), + [sym_declaration_command] = STATE(2326), + [sym_unset_command] = STATE(2326), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), }, - [1408] = { - [sym__concat] = ACTIONS(1972), - [sym_variable_name] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(1974), - [sym__special_characters] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(1974), - [sym_raw_string] = ACTIONS(1974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_BQUOTE] = ACTIONS(1974), - [anon_sym_LT_LPAREN] = ACTIONS(1974), - [anon_sym_GT_LPAREN] = ACTIONS(1974), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1974), - [sym_word] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_LF] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), + [2103] = { + [sym_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_command] = STATE(2328), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(2328), + [sym_variable_assignment] = STATE(2329), + [sym_declaration_command] = STATE(2328), + [sym_unset_command] = STATE(2328), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), }, - [1409] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4499), + [2104] = { + [anon_sym_esac] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(648), + [anon_sym_SEMI_SEMI] = ACTIONS(648), + [anon_sym_PIPE_AMP] = ACTIONS(648), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [sym__special_characters] = ACTIONS(648), + [anon_sym_DQUOTE] = ACTIONS(648), + [anon_sym_DOLLAR] = ACTIONS(648), + [sym_raw_string] = ACTIONS(648), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(648), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(648), + [anon_sym_BQUOTE] = ACTIONS(648), + [anon_sym_LT_LPAREN] = ACTIONS(648), + [anon_sym_GT_LPAREN] = ACTIONS(648), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(648), + [sym_word] = ACTIONS(648), + [anon_sym_SEMI] = ACTIONS(648), + [anon_sym_LF] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(648), }, - [1410] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [2105] = { + [sym_concatenation] = STATE(2330), + [sym_string] = STATE(2099), + [sym_simple_expansion] = STATE(2099), + [sym_string_expansion] = STATE(2099), + [sym_expansion] = STATE(2099), + [sym_command_substitution] = STATE(2099), + [sym_process_substitution] = STATE(2099), + [aux_sym_unset_command_repeat1] = STATE(2330), + [anon_sym_esac] = ACTIONS(652), + [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_SEMI_SEMI] = ACTIONS(652), + [anon_sym_PIPE_AMP] = ACTIONS(652), + [anon_sym_AMP_AMP] = ACTIONS(652), + [anon_sym_PIPE_PIPE] = ACTIONS(652), + [sym__special_characters] = ACTIONS(4961), + [anon_sym_DQUOTE] = ACTIONS(4963), + [anon_sym_DOLLAR] = ACTIONS(4965), + [sym_raw_string] = ACTIONS(4967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4969), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4971), + [anon_sym_BQUOTE] = ACTIONS(4973), + [anon_sym_LT_LPAREN] = ACTIONS(4975), + [anon_sym_GT_LPAREN] = ACTIONS(4975), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4977), + [sym_word] = ACTIONS(4967), + [anon_sym_SEMI] = ACTIONS(652), + [anon_sym_LF] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(652), }, - [1411] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(4503), - [sym_comment] = ACTIONS(56), + [2106] = { + [sym_string] = STATE(2331), + [sym_simple_expansion] = STATE(2331), + [sym_string_expansion] = STATE(2331), + [sym_expansion] = STATE(2331), + [sym_command_substitution] = STATE(2331), + [sym_process_substitution] = STATE(2331), + [sym__special_characters] = ACTIONS(5430), + [anon_sym_DQUOTE] = ACTIONS(4262), + [anon_sym_DOLLAR] = ACTIONS(4264), + [sym_raw_string] = ACTIONS(5430), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4270), + [anon_sym_BQUOTE] = ACTIONS(4272), + [anon_sym_LT_LPAREN] = ACTIONS(4274), + [anon_sym_GT_LPAREN] = ACTIONS(4274), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5430), }, - [1412] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2102), - [anon_sym_RBRACE] = ACTIONS(4505), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4507), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [2107] = { + [aux_sym_concatenation_repeat1] = STATE(2332), + [sym_file_descriptor] = ACTIONS(688), + [sym__concat] = ACTIONS(4979), + [anon_sym_esac] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_EQ_TILDE] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(690), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_LT_LT_DASH] = ACTIONS(690), + [anon_sym_LT_LT_LT] = ACTIONS(690), + [sym__special_characters] = ACTIONS(690), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(690), + [anon_sym_BQUOTE] = ACTIONS(690), + [anon_sym_LT_LPAREN] = ACTIONS(690), + [anon_sym_GT_LPAREN] = ACTIONS(690), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(690), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), }, - [1413] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2105), - [anon_sym_RBRACE] = ACTIONS(4509), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4511), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [2108] = { + [sym_file_descriptor] = ACTIONS(692), + [sym__concat] = ACTIONS(692), + [anon_sym_esac] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_SEMI_SEMI] = ACTIONS(694), + [anon_sym_PIPE_AMP] = ACTIONS(694), + [anon_sym_AMP_AMP] = ACTIONS(694), + [anon_sym_PIPE_PIPE] = ACTIONS(694), + [anon_sym_EQ_TILDE] = ACTIONS(694), + [anon_sym_EQ_EQ] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_AMP_GT] = ACTIONS(694), + [anon_sym_AMP_GT_GT] = ACTIONS(694), + [anon_sym_LT_AMP] = ACTIONS(694), + [anon_sym_GT_AMP] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_LT_LT_DASH] = ACTIONS(694), + [anon_sym_LT_LT_LT] = ACTIONS(694), + [sym__special_characters] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(694), + [sym_raw_string] = ACTIONS(694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(694), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LT_LPAREN] = ACTIONS(694), + [anon_sym_GT_LPAREN] = ACTIONS(694), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), }, - [1414] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2107), - [anon_sym_RBRACE] = ACTIONS(4491), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4513), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [2109] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(5432), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), }, - [1415] = { - [sym__concat] = ACTIONS(2026), - [sym_variable_name] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_RPAREN] = ACTIONS(2028), - [anon_sym_SEMI_SEMI] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(2028), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [sym__special_characters] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [anon_sym_DOLLAR] = ACTIONS(2028), - [sym_raw_string] = ACTIONS(2028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), - [anon_sym_BQUOTE] = ACTIONS(2028), - [anon_sym_LT_LPAREN] = ACTIONS(2028), - [anon_sym_GT_LPAREN] = ACTIONS(2028), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2028), - [sym_word] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), + [2110] = { + [sym_file_descriptor] = ACTIONS(722), + [sym__concat] = ACTIONS(722), + [anon_sym_esac] = ACTIONS(724), + [anon_sym_PIPE] = ACTIONS(724), + [anon_sym_SEMI_SEMI] = ACTIONS(724), + [anon_sym_PIPE_AMP] = ACTIONS(724), + [anon_sym_AMP_AMP] = ACTIONS(724), + [anon_sym_PIPE_PIPE] = ACTIONS(724), + [anon_sym_EQ_TILDE] = ACTIONS(724), + [anon_sym_EQ_EQ] = ACTIONS(724), + [anon_sym_LT] = ACTIONS(724), + [anon_sym_GT] = ACTIONS(724), + [anon_sym_GT_GT] = ACTIONS(724), + [anon_sym_AMP_GT] = ACTIONS(724), + [anon_sym_AMP_GT_GT] = ACTIONS(724), + [anon_sym_LT_AMP] = ACTIONS(724), + [anon_sym_GT_AMP] = ACTIONS(724), + [anon_sym_LT_LT] = ACTIONS(724), + [anon_sym_LT_LT_DASH] = ACTIONS(724), + [anon_sym_LT_LT_LT] = ACTIONS(724), + [sym__special_characters] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(724), + [sym_raw_string] = ACTIONS(724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(724), + [anon_sym_BQUOTE] = ACTIONS(724), + [anon_sym_LT_LPAREN] = ACTIONS(724), + [anon_sym_GT_LPAREN] = ACTIONS(724), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(724), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LF] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(724), }, - [1416] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4515), + [2111] = { + [sym_file_descriptor] = ACTIONS(726), + [sym__concat] = ACTIONS(726), + [anon_sym_esac] = ACTIONS(728), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_SEMI_SEMI] = ACTIONS(728), + [anon_sym_PIPE_AMP] = ACTIONS(728), + [anon_sym_AMP_AMP] = ACTIONS(728), + [anon_sym_PIPE_PIPE] = ACTIONS(728), + [anon_sym_EQ_TILDE] = ACTIONS(728), + [anon_sym_EQ_EQ] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(728), + [anon_sym_GT] = ACTIONS(728), + [anon_sym_GT_GT] = ACTIONS(728), + [anon_sym_AMP_GT] = ACTIONS(728), + [anon_sym_AMP_GT_GT] = ACTIONS(728), + [anon_sym_LT_AMP] = ACTIONS(728), + [anon_sym_GT_AMP] = ACTIONS(728), + [anon_sym_LT_LT] = ACTIONS(728), + [anon_sym_LT_LT_DASH] = ACTIONS(728), + [anon_sym_LT_LT_LT] = ACTIONS(728), + [sym__special_characters] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(728), + [anon_sym_DOLLAR] = ACTIONS(728), + [sym_raw_string] = ACTIONS(728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(728), + [anon_sym_BQUOTE] = ACTIONS(728), + [anon_sym_LT_LPAREN] = ACTIONS(728), + [anon_sym_GT_LPAREN] = ACTIONS(728), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(728), + [anon_sym_SEMI] = ACTIONS(728), + [anon_sym_LF] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(728), }, - [1417] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4517), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [2112] = { + [sym_file_descriptor] = ACTIONS(730), + [sym__concat] = ACTIONS(730), + [anon_sym_esac] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(732), + [anon_sym_SEMI_SEMI] = ACTIONS(732), + [anon_sym_PIPE_AMP] = ACTIONS(732), + [anon_sym_AMP_AMP] = ACTIONS(732), + [anon_sym_PIPE_PIPE] = ACTIONS(732), + [anon_sym_EQ_TILDE] = ACTIONS(732), + [anon_sym_EQ_EQ] = ACTIONS(732), + [anon_sym_LT] = ACTIONS(732), + [anon_sym_GT] = ACTIONS(732), + [anon_sym_GT_GT] = ACTIONS(732), + [anon_sym_AMP_GT] = ACTIONS(732), + [anon_sym_AMP_GT_GT] = ACTIONS(732), + [anon_sym_LT_AMP] = ACTIONS(732), + [anon_sym_GT_AMP] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(732), + [anon_sym_LT_LT_DASH] = ACTIONS(732), + [anon_sym_LT_LT_LT] = ACTIONS(732), + [sym__special_characters] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_DOLLAR] = ACTIONS(732), + [sym_raw_string] = ACTIONS(732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(732), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(732), + [anon_sym_BQUOTE] = ACTIONS(732), + [anon_sym_LT_LPAREN] = ACTIONS(732), + [anon_sym_GT_LPAREN] = ACTIONS(732), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(732), + [anon_sym_SEMI] = ACTIONS(732), + [anon_sym_LF] = ACTIONS(730), + [anon_sym_AMP] = ACTIONS(732), }, - [1418] = { - [sym__concat] = ACTIONS(2034), - [sym_variable_name] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_RPAREN] = ACTIONS(2036), - [anon_sym_SEMI_SEMI] = ACTIONS(2036), - [anon_sym_PIPE_AMP] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [sym__special_characters] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2036), - [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(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2036), - [sym_word] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_LF] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), + [2113] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(5434), + [sym_comment] = ACTIONS(54), }, - [1419] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4519), + [2114] = { + [sym_concatenation] = STATE(2337), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2337), + [anon_sym_RBRACE] = ACTIONS(5436), + [anon_sym_EQ] = ACTIONS(5438), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(5442), + [anon_sym_COLON] = ACTIONS(5438), + [anon_sym_COLON_QMARK] = ACTIONS(5438), + [anon_sym_COLON_DASH] = ACTIONS(5438), + [anon_sym_PERCENT] = ACTIONS(5438), + [anon_sym_DASH] = ACTIONS(5438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [1420] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4491), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [2115] = { + [sym_subscript] = STATE(2341), + [sym_variable_name] = ACTIONS(5444), + [anon_sym_DOLLAR] = ACTIONS(5446), + [anon_sym_DASH] = ACTIONS(5446), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5448), + [anon_sym_STAR] = ACTIONS(5446), + [anon_sym_AT] = ACTIONS(5446), + [anon_sym_QMARK] = ACTIONS(5446), + [anon_sym_0] = ACTIONS(5450), + [anon_sym__] = ACTIONS(5450), }, - [1421] = { - [sym__concat] = ACTIONS(2196), - [sym_variable_name] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_SEMI_SEMI] = ACTIONS(2198), - [anon_sym_PIPE_AMP] = ACTIONS(2198), - [anon_sym_AMP_AMP] = ACTIONS(2198), - [anon_sym_PIPE_PIPE] = ACTIONS(2198), - [sym__special_characters] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(2198), - [sym_raw_string] = ACTIONS(2198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), - [anon_sym_BQUOTE] = ACTIONS(2198), - [anon_sym_LT_LPAREN] = ACTIONS(2198), - [anon_sym_GT_LPAREN] = ACTIONS(2198), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2198), - [sym_word] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), + [2116] = { + [sym_concatenation] = STATE(2344), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2344), + [anon_sym_RBRACE] = ACTIONS(5452), + [anon_sym_EQ] = ACTIONS(5454), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5456), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(5458), + [anon_sym_COLON] = ACTIONS(5454), + [anon_sym_COLON_QMARK] = ACTIONS(5454), + [anon_sym_COLON_DASH] = ACTIONS(5454), + [anon_sym_PERCENT] = ACTIONS(5454), + [anon_sym_DASH] = ACTIONS(5454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [1422] = { - [sym__concat] = ACTIONS(2402), - [sym_variable_name] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_RPAREN] = ACTIONS(2404), - [anon_sym_SEMI_SEMI] = ACTIONS(2404), - [anon_sym_PIPE_AMP] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [sym__special_characters] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2404), - [anon_sym_DOLLAR] = ACTIONS(2404), - [sym_raw_string] = ACTIONS(2404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2404), - [anon_sym_LT_LPAREN] = ACTIONS(2404), - [anon_sym_GT_LPAREN] = ACTIONS(2404), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2404), - [sym_word] = ACTIONS(2404), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LF] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), + [2117] = { + [sym_concatenation] = STATE(2347), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2347), + [anon_sym_RBRACE] = ACTIONS(5460), + [anon_sym_EQ] = ACTIONS(5462), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5464), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(5466), + [anon_sym_COLON] = ACTIONS(5462), + [anon_sym_COLON_QMARK] = ACTIONS(5462), + [anon_sym_COLON_DASH] = ACTIONS(5462), + [anon_sym_PERCENT] = ACTIONS(5462), + [anon_sym_DASH] = ACTIONS(5462), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [1423] = { - [sym__concat] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), + [2118] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(5468), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), }, - [1424] = { - [aux_sym_concatenation_repeat1] = STATE(1424), - [sym__concat] = ACTIONS(4521), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), + [2119] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(5468), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), }, - [1425] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_RPAREN] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1929), - [anon_sym_PIPE_AMP] = ACTIONS(1929), - [anon_sym_AMP_AMP] = ACTIONS(1929), - [anon_sym_PIPE_PIPE] = ACTIONS(1929), - [sym__special_characters] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1929), - [sym_raw_string] = ACTIONS(1929), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), - [anon_sym_BQUOTE] = ACTIONS(1929), - [anon_sym_LT_LPAREN] = ACTIONS(1929), - [anon_sym_GT_LPAREN] = ACTIONS(1929), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1929), - [sym_word] = ACTIONS(1929), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), + [2120] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(5468), + [sym_comment] = ACTIONS(54), }, - [1426] = { - [sym_concatenation] = STATE(2114), - [sym_string] = STATE(2113), - [sym_simple_expansion] = STATE(2113), - [sym_string_expansion] = STATE(2113), - [sym_expansion] = STATE(2113), - [sym_command_substitution] = STATE(2113), - [sym_process_substitution] = STATE(2113), - [anon_sym_RBRACE] = ACTIONS(4524), - [sym__special_characters] = ACTIONS(4526), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(4528), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4530), + [2121] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(5468), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), }, - [1427] = { - [sym__concat] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(1974), - [sym__special_characters] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(1974), - [sym_raw_string] = ACTIONS(1974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_BQUOTE] = ACTIONS(1974), - [anon_sym_LT_LPAREN] = ACTIONS(1974), - [anon_sym_GT_LPAREN] = ACTIONS(1974), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1974), - [sym_word] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_LF] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), + [2122] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(5470), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), }, - [1428] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4532), + [2123] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(5470), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), }, - [1429] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4534), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [2124] = { + [anon_sym_RPAREN] = ACTIONS(5472), + [sym_comment] = ACTIONS(54), }, - [1430] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(4536), - [sym_comment] = ACTIONS(56), + [2125] = { + [sym_for_statement] = STATE(517), + [sym_while_statement] = STATE(517), + [sym_if_statement] = STATE(517), + [sym_case_statement] = STATE(517), + [sym_function_definition] = STATE(517), + [sym_subshell] = STATE(517), + [sym_pipeline] = STATE(517), + [sym_list] = STATE(517), + [sym_command] = STATE(517), + [sym_command_name] = STATE(1812), + [sym_bracket_command] = STATE(517), + [sym_variable_assignment] = STATE(2351), + [sym_declaration_command] = STATE(517), + [sym_unset_command] = STATE(517), + [sym_subscript] = STATE(1814), + [sym_file_redirect] = STATE(1817), + [sym_concatenation] = STATE(1815), + [sym_string] = STATE(1805), + [sym_simple_expansion] = STATE(1805), + [sym_string_expansion] = STATE(1805), + [sym_expansion] = STATE(1805), + [sym_command_substitution] = STATE(1805), + [sym_process_substitution] = STATE(1805), + [aux_sym_command_repeat1] = STATE(1817), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(4242), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4254), + [anon_sym_declare] = ACTIONS(4256), + [anon_sym_typeset] = ACTIONS(4256), + [anon_sym_export] = ACTIONS(4256), + [anon_sym_readonly] = ACTIONS(4256), + [anon_sym_local] = ACTIONS(4256), + [anon_sym_unset] = ACTIONS(4258), + [anon_sym_unsetenv] = ACTIONS(4258), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(4260), + [anon_sym_DQUOTE] = ACTIONS(4262), + [anon_sym_DOLLAR] = ACTIONS(4264), + [sym_raw_string] = ACTIONS(4266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4270), + [anon_sym_BQUOTE] = ACTIONS(4272), + [anon_sym_LT_LPAREN] = ACTIONS(4274), + [anon_sym_GT_LPAREN] = ACTIONS(4274), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4276), }, - [1431] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2120), - [anon_sym_RBRACE] = ACTIONS(4538), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4540), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [2126] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_esac] = ACTIONS(5474), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(5476), + [anon_sym_DQUOTE] = ACTIONS(5478), + [anon_sym_DOLLAR] = ACTIONS(5476), + [sym_raw_string] = ACTIONS(5478), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5478), + [anon_sym_BQUOTE] = ACTIONS(5478), + [anon_sym_LT_LPAREN] = ACTIONS(5478), + [anon_sym_GT_LPAREN] = ACTIONS(5478), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5476), }, - [1432] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2123), - [anon_sym_RBRACE] = ACTIONS(4542), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4544), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [2127] = { + [sym_for_statement] = STATE(2352), + [sym_while_statement] = STATE(2352), + [sym_if_statement] = STATE(2352), + [sym_case_statement] = STATE(2352), + [sym_function_definition] = STATE(2352), + [sym_subshell] = STATE(2352), + [sym_pipeline] = STATE(2352), + [sym_list] = STATE(2352), + [sym_command] = STATE(2352), + [sym_command_name] = STATE(1812), + [sym_bracket_command] = STATE(2352), + [sym_variable_assignment] = STATE(2353), + [sym_declaration_command] = STATE(2352), + [sym_unset_command] = STATE(2352), + [sym_subscript] = STATE(1814), + [sym_file_redirect] = STATE(1817), + [sym_concatenation] = STATE(1815), + [sym_string] = STATE(1805), + [sym_simple_expansion] = STATE(1805), + [sym_string_expansion] = STATE(1805), + [sym_expansion] = STATE(1805), + [sym_command_substitution] = STATE(1805), + [sym_process_substitution] = STATE(1805), + [aux_sym_command_repeat1] = STATE(1817), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(4242), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4254), + [anon_sym_declare] = ACTIONS(4256), + [anon_sym_typeset] = ACTIONS(4256), + [anon_sym_export] = ACTIONS(4256), + [anon_sym_readonly] = ACTIONS(4256), + [anon_sym_local] = ACTIONS(4256), + [anon_sym_unset] = ACTIONS(4258), + [anon_sym_unsetenv] = ACTIONS(4258), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(4260), + [anon_sym_DQUOTE] = ACTIONS(4262), + [anon_sym_DOLLAR] = ACTIONS(4264), + [sym_raw_string] = ACTIONS(4266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4270), + [anon_sym_BQUOTE] = ACTIONS(4272), + [anon_sym_LT_LPAREN] = ACTIONS(4274), + [anon_sym_GT_LPAREN] = ACTIONS(4274), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4276), }, - [1433] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2125), - [anon_sym_RBRACE] = ACTIONS(4524), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4546), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [2128] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_esac] = ACTIONS(944), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(944), + [sym_raw_string] = ACTIONS(942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(942), + [anon_sym_BQUOTE] = ACTIONS(942), + [anon_sym_LT_LPAREN] = ACTIONS(942), + [anon_sym_GT_LPAREN] = ACTIONS(942), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(944), }, - [1434] = { - [sym__concat] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_RPAREN] = ACTIONS(2028), - [anon_sym_SEMI_SEMI] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(2028), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [sym__special_characters] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [anon_sym_DOLLAR] = ACTIONS(2028), - [sym_raw_string] = ACTIONS(2028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), - [anon_sym_BQUOTE] = ACTIONS(2028), - [anon_sym_LT_LPAREN] = ACTIONS(2028), - [anon_sym_GT_LPAREN] = ACTIONS(2028), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2028), - [sym_word] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), + [2129] = { + [anon_sym_LT] = ACTIONS(5480), + [anon_sym_GT] = ACTIONS(5480), + [anon_sym_GT_GT] = ACTIONS(5482), + [anon_sym_AMP_GT] = ACTIONS(5480), + [anon_sym_AMP_GT_GT] = ACTIONS(5482), + [anon_sym_LT_AMP] = ACTIONS(5482), + [anon_sym_GT_AMP] = ACTIONS(5482), + [sym_comment] = ACTIONS(54), }, - [1435] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4548), + [2130] = { + [sym_concatenation] = STATE(2357), + [sym_string] = STATE(2356), + [sym_simple_expansion] = STATE(2356), + [sym_string_expansion] = STATE(2356), + [sym_expansion] = STATE(2356), + [sym_command_substitution] = STATE(2356), + [sym_process_substitution] = STATE(2356), + [sym__special_characters] = ACTIONS(5484), + [anon_sym_DQUOTE] = ACTIONS(5023), + [anon_sym_DOLLAR] = ACTIONS(4264), + [sym_raw_string] = ACTIONS(5486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5029), + [anon_sym_BQUOTE] = ACTIONS(5031), + [anon_sym_LT_LPAREN] = ACTIONS(5033), + [anon_sym_GT_LPAREN] = ACTIONS(5033), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5486), + [sym_regex] = ACTIONS(5488), }, - [1436] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4550), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [2131] = { + [sym_concatenation] = STATE(527), + [sym_string] = STATE(2361), + [sym_simple_expansion] = STATE(2361), + [sym_string_expansion] = STATE(2361), + [sym_expansion] = STATE(2361), + [sym_command_substitution] = STATE(2361), + [sym_process_substitution] = STATE(2361), + [sym__special_characters] = ACTIONS(5490), + [anon_sym_DQUOTE] = ACTIONS(5492), + [anon_sym_DOLLAR] = ACTIONS(5494), + [sym_raw_string] = ACTIONS(5496), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5498), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5500), + [anon_sym_BQUOTE] = ACTIONS(5502), + [anon_sym_LT_LPAREN] = ACTIONS(5504), + [anon_sym_GT_LPAREN] = ACTIONS(5504), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5496), }, - [1437] = { - [sym__concat] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_RPAREN] = ACTIONS(2036), - [anon_sym_SEMI_SEMI] = ACTIONS(2036), - [anon_sym_PIPE_AMP] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [sym__special_characters] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2036), - [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(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2036), - [sym_word] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_LF] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), + [2132] = { + [sym_concatenation] = STATE(533), + [sym_string] = STATE(2367), + [sym_simple_expansion] = STATE(2367), + [sym_string_expansion] = STATE(2367), + [sym_expansion] = STATE(2367), + [sym_command_substitution] = STATE(2367), + [sym_process_substitution] = STATE(2367), + [sym__special_characters] = ACTIONS(5506), + [anon_sym_DQUOTE] = ACTIONS(5492), + [anon_sym_DOLLAR] = ACTIONS(5494), + [sym_raw_string] = ACTIONS(5508), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5498), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5500), + [anon_sym_BQUOTE] = ACTIONS(5502), + [anon_sym_LT_LPAREN] = ACTIONS(5504), + [anon_sym_GT_LPAREN] = ACTIONS(5504), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5508), }, - [1438] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4552), + [2133] = { + [aux_sym_concatenation_repeat1] = STATE(2107), + [sym_file_descriptor] = ACTIONS(504), + [sym__concat] = ACTIONS(4979), + [anon_sym_esac] = ACTIONS(502), + [anon_sym_PIPE] = ACTIONS(502), + [anon_sym_SEMI_SEMI] = ACTIONS(502), + [anon_sym_PIPE_AMP] = ACTIONS(502), + [anon_sym_AMP_AMP] = ACTIONS(502), + [anon_sym_PIPE_PIPE] = ACTIONS(502), + [anon_sym_EQ_TILDE] = ACTIONS(502), + [anon_sym_EQ_EQ] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(502), + [anon_sym_GT] = ACTIONS(502), + [anon_sym_GT_GT] = ACTIONS(502), + [anon_sym_AMP_GT] = ACTIONS(502), + [anon_sym_AMP_GT_GT] = ACTIONS(502), + [anon_sym_LT_AMP] = ACTIONS(502), + [anon_sym_GT_AMP] = ACTIONS(502), + [anon_sym_LT_LT] = ACTIONS(502), + [anon_sym_LT_LT_DASH] = ACTIONS(502), + [anon_sym_LT_LT_LT] = ACTIONS(502), + [sym__special_characters] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(502), + [anon_sym_DOLLAR] = ACTIONS(502), + [sym_raw_string] = ACTIONS(502), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(502), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(502), + [anon_sym_BQUOTE] = ACTIONS(502), + [anon_sym_LT_LPAREN] = ACTIONS(502), + [anon_sym_GT_LPAREN] = ACTIONS(502), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(502), + [anon_sym_LF] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(502), }, - [1439] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4524), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [2134] = { + [aux_sym_concatenation_repeat1] = STATE(2107), + [sym_file_descriptor] = ACTIONS(518), + [sym__concat] = ACTIONS(4979), + [anon_sym_esac] = ACTIONS(516), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_SEMI_SEMI] = ACTIONS(516), + [anon_sym_PIPE_AMP] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(516), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_EQ_TILDE] = ACTIONS(516), + [anon_sym_EQ_EQ] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_GT_GT] = ACTIONS(516), + [anon_sym_AMP_GT] = ACTIONS(516), + [anon_sym_AMP_GT_GT] = ACTIONS(516), + [anon_sym_LT_AMP] = ACTIONS(516), + [anon_sym_GT_AMP] = ACTIONS(516), + [anon_sym_LT_LT] = ACTIONS(516), + [anon_sym_LT_LT_DASH] = ACTIONS(516), + [anon_sym_LT_LT_LT] = ACTIONS(516), + [sym__special_characters] = ACTIONS(516), + [anon_sym_DQUOTE] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [sym_raw_string] = ACTIONS(516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(516), + [anon_sym_BQUOTE] = ACTIONS(516), + [anon_sym_LT_LPAREN] = ACTIONS(516), + [anon_sym_GT_LPAREN] = ACTIONS(516), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_LF] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(516), }, - [1440] = { - [sym__concat] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_SEMI_SEMI] = ACTIONS(2198), - [anon_sym_PIPE_AMP] = ACTIONS(2198), - [anon_sym_AMP_AMP] = ACTIONS(2198), - [anon_sym_PIPE_PIPE] = ACTIONS(2198), - [sym__special_characters] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(2198), - [sym_raw_string] = ACTIONS(2198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), - [anon_sym_BQUOTE] = ACTIONS(2198), - [anon_sym_LT_LPAREN] = ACTIONS(2198), - [anon_sym_GT_LPAREN] = ACTIONS(2198), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2198), - [sym_word] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), + [2135] = { + [sym_file_descriptor] = ACTIONS(518), + [anon_sym_esac] = ACTIONS(516), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_SEMI_SEMI] = ACTIONS(516), + [anon_sym_PIPE_AMP] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(516), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_EQ_TILDE] = ACTIONS(516), + [anon_sym_EQ_EQ] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_GT_GT] = ACTIONS(516), + [anon_sym_AMP_GT] = ACTIONS(516), + [anon_sym_AMP_GT_GT] = ACTIONS(516), + [anon_sym_LT_AMP] = ACTIONS(516), + [anon_sym_GT_AMP] = ACTIONS(516), + [anon_sym_LT_LT] = ACTIONS(516), + [anon_sym_LT_LT_DASH] = ACTIONS(516), + [anon_sym_LT_LT_LT] = ACTIONS(516), + [sym__special_characters] = ACTIONS(516), + [anon_sym_DQUOTE] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [sym_raw_string] = ACTIONS(516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(516), + [anon_sym_BQUOTE] = ACTIONS(516), + [anon_sym_LT_LPAREN] = ACTIONS(516), + [anon_sym_GT_LPAREN] = ACTIONS(516), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_LF] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(516), }, - [1441] = { - [sym__concat] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_RPAREN] = ACTIONS(2404), - [anon_sym_SEMI_SEMI] = ACTIONS(2404), - [anon_sym_PIPE_AMP] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [sym__special_characters] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2404), - [anon_sym_DOLLAR] = ACTIONS(2404), - [sym_raw_string] = ACTIONS(2404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2404), - [anon_sym_LT_LPAREN] = ACTIONS(2404), - [anon_sym_GT_LPAREN] = ACTIONS(2404), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2404), - [sym_word] = ACTIONS(2404), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LF] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), + [2136] = { + [sym_file_redirect] = STATE(2368), + [sym_heredoc_redirect] = STATE(2368), + [sym_herestring_redirect] = STATE(2368), + [aux_sym_while_statement_repeat1] = STATE(2368), + [sym_file_descriptor] = ACTIONS(5013), + [anon_sym_esac] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_SEMI_SEMI] = ACTIONS(968), + [anon_sym_PIPE_AMP] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_PIPE_PIPE] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_GT_GT] = ACTIONS(5017), + [anon_sym_AMP_GT] = ACTIONS(5017), + [anon_sym_AMP_GT_GT] = ACTIONS(5017), + [anon_sym_LT_AMP] = ACTIONS(5017), + [anon_sym_GT_AMP] = ACTIONS(5017), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(5019), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_LF] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(968), }, - [1442] = { - [sym_file_descriptor] = ACTIONS(3293), - [sym__concat] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_RPAREN] = ACTIONS(3295), - [anon_sym_SEMI_SEMI] = ACTIONS(3295), - [anon_sym_PIPE_AMP] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_EQ_TILDE] = ACTIONS(3295), - [anon_sym_EQ_EQ] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_GT_GT] = ACTIONS(3295), - [anon_sym_AMP_GT] = ACTIONS(3295), - [anon_sym_AMP_GT_GT] = ACTIONS(3295), - [anon_sym_LT_AMP] = ACTIONS(3295), - [anon_sym_GT_AMP] = ACTIONS(3295), - [anon_sym_LT_LT] = ACTIONS(3295), - [anon_sym_LT_LT_DASH] = ACTIONS(3295), - [anon_sym_LT_LT_LT] = ACTIONS(3295), - [sym__special_characters] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_DOLLAR] = ACTIONS(3295), - [sym_raw_string] = ACTIONS(3295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), - [anon_sym_BQUOTE] = ACTIONS(3295), - [anon_sym_LT_LPAREN] = ACTIONS(3295), - [anon_sym_GT_LPAREN] = ACTIONS(3295), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - }, - [1443] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(4554), - [sym_comment] = ACTIONS(56), - }, - [1444] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(4556), - [sym_comment] = ACTIONS(56), - }, - [1445] = { - [anon_sym_RBRACE] = ACTIONS(4556), - [sym_comment] = ACTIONS(56), - }, - [1446] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2132), - [anon_sym_RBRACE] = ACTIONS(4558), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1447] = { - [sym_file_descriptor] = ACTIONS(3357), - [sym__concat] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_RPAREN] = ACTIONS(3359), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_PIPE_AMP] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_EQ_TILDE] = ACTIONS(3359), - [anon_sym_EQ_EQ] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_GT_GT] = ACTIONS(3359), - [anon_sym_AMP_GT] = ACTIONS(3359), - [anon_sym_AMP_GT_GT] = ACTIONS(3359), - [anon_sym_LT_AMP] = ACTIONS(3359), - [anon_sym_GT_AMP] = ACTIONS(3359), - [anon_sym_LT_LT] = ACTIONS(3359), - [anon_sym_LT_LT_DASH] = ACTIONS(3359), - [anon_sym_LT_LT_LT] = ACTIONS(3359), - [sym__special_characters] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_DOLLAR] = ACTIONS(3359), - [sym_raw_string] = ACTIONS(3359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), - [anon_sym_BQUOTE] = ACTIONS(3359), - [anon_sym_LT_LPAREN] = ACTIONS(3359), - [anon_sym_GT_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - }, - [1448] = { + [2137] = { + [sym_file_redirect] = STATE(2369), + [sym_heredoc_redirect] = STATE(2369), + [sym_herestring_redirect] = STATE(2369), [sym_concatenation] = STATE(2135), [sym_string] = STATE(2134), [sym_simple_expansion] = STATE(2134), @@ -46366,35976 +58131,3419 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2134), [sym_command_substitution] = STATE(2134), [sym_process_substitution] = STATE(2134), - [anon_sym_RBRACE] = ACTIONS(4556), - [sym__special_characters] = ACTIONS(4560), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(4562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4564), - }, - [1449] = { - [sym_file_descriptor] = ACTIONS(3402), - [sym__concat] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_RPAREN] = ACTIONS(3404), - [anon_sym_SEMI_SEMI] = ACTIONS(3404), - [anon_sym_PIPE_AMP] = ACTIONS(3404), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3404), - [anon_sym_EQ_TILDE] = ACTIONS(3404), - [anon_sym_EQ_EQ] = ACTIONS(3404), - [anon_sym_LT] = ACTIONS(3404), - [anon_sym_GT] = ACTIONS(3404), - [anon_sym_GT_GT] = ACTIONS(3404), - [anon_sym_AMP_GT] = ACTIONS(3404), - [anon_sym_AMP_GT_GT] = ACTIONS(3404), - [anon_sym_LT_AMP] = ACTIONS(3404), - [anon_sym_GT_AMP] = ACTIONS(3404), - [anon_sym_LT_LT] = ACTIONS(3404), - [anon_sym_LT_LT_DASH] = ACTIONS(3404), - [anon_sym_LT_LT_LT] = ACTIONS(3404), - [sym__special_characters] = ACTIONS(3404), - [anon_sym_DQUOTE] = ACTIONS(3404), - [anon_sym_DOLLAR] = ACTIONS(3404), - [sym_raw_string] = ACTIONS(3404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), - [anon_sym_BQUOTE] = ACTIONS(3404), - [anon_sym_LT_LPAREN] = ACTIONS(3404), - [anon_sym_GT_LPAREN] = ACTIONS(3404), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3404), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - }, - [1450] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4566), - }, - [1451] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4568), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1452] = { - [sym_file_descriptor] = ACTIONS(3410), - [sym__concat] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_RPAREN] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [anon_sym_EQ_TILDE] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT] = ACTIONS(3412), - [anon_sym_GT] = ACTIONS(3412), - [anon_sym_GT_GT] = ACTIONS(3412), - [anon_sym_AMP_GT] = ACTIONS(3412), - [anon_sym_AMP_GT_GT] = ACTIONS(3412), - [anon_sym_LT_AMP] = ACTIONS(3412), - [anon_sym_GT_AMP] = ACTIONS(3412), - [anon_sym_LT_LT] = ACTIONS(3412), - [anon_sym_LT_LT_DASH] = ACTIONS(3412), - [anon_sym_LT_LT_LT] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(3412), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3412), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - }, - [1453] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4570), - }, - [1454] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4572), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1455] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4574), - }, - [1456] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4556), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1457] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2142), - [anon_sym_RBRACE] = ACTIONS(4576), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1458] = { - [sym_file_descriptor] = ACTIONS(3422), - [sym__concat] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_RPAREN] = ACTIONS(3424), - [anon_sym_SEMI_SEMI] = ACTIONS(3424), - [anon_sym_PIPE_AMP] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_PIPE_PIPE] = ACTIONS(3424), - [anon_sym_EQ_TILDE] = ACTIONS(3424), - [anon_sym_EQ_EQ] = ACTIONS(3424), - [anon_sym_LT] = ACTIONS(3424), - [anon_sym_GT] = ACTIONS(3424), - [anon_sym_GT_GT] = ACTIONS(3424), - [anon_sym_AMP_GT] = ACTIONS(3424), - [anon_sym_AMP_GT_GT] = ACTIONS(3424), - [anon_sym_LT_AMP] = ACTIONS(3424), - [anon_sym_GT_AMP] = ACTIONS(3424), - [anon_sym_LT_LT] = ACTIONS(3424), - [anon_sym_LT_LT_DASH] = ACTIONS(3424), - [anon_sym_LT_LT_LT] = ACTIONS(3424), - [sym__special_characters] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [anon_sym_DOLLAR] = ACTIONS(3424), - [sym_raw_string] = ACTIONS(3424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), - [anon_sym_BQUOTE] = ACTIONS(3424), - [anon_sym_LT_LPAREN] = ACTIONS(3424), - [anon_sym_GT_LPAREN] = ACTIONS(3424), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - }, - [1459] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2144), - [anon_sym_RBRACE] = ACTIONS(4578), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1460] = { - [sym_file_redirect] = STATE(1882), - [sym_file_descriptor] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_RPAREN] = ACTIONS(2794), - [anon_sym_SEMI_SEMI] = ACTIONS(2794), - [anon_sym_PIPE_AMP] = ACTIONS(2794), - [anon_sym_AMP_AMP] = ACTIONS(2794), - [anon_sym_PIPE_PIPE] = ACTIONS(2794), - [anon_sym_LT] = ACTIONS(2822), - [anon_sym_GT] = ACTIONS(2822), - [anon_sym_GT_GT] = ACTIONS(2822), - [anon_sym_AMP_GT] = ACTIONS(2822), - [anon_sym_AMP_GT_GT] = ACTIONS(2822), - [anon_sym_LT_AMP] = ACTIONS(2822), - [anon_sym_GT_AMP] = ACTIONS(2822), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_LF] = ACTIONS(2794), - [anon_sym_AMP] = ACTIONS(2794), - }, - [1461] = { - [aux_sym_concatenation_repeat1] = STATE(1464), - [sym_file_descriptor] = ACTIONS(1241), - [sym__concat] = ACTIONS(3006), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_RPAREN] = ACTIONS(4044), - [anon_sym_SEMI_SEMI] = ACTIONS(4044), - [anon_sym_PIPE_AMP] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_PIPE_PIPE] = ACTIONS(4044), - [anon_sym_LT] = ACTIONS(4044), - [anon_sym_GT] = ACTIONS(4044), - [anon_sym_GT_GT] = ACTIONS(4044), - [anon_sym_AMP_GT] = ACTIONS(4044), - [anon_sym_AMP_GT_GT] = ACTIONS(4044), - [anon_sym_LT_AMP] = ACTIONS(4044), - [anon_sym_GT_AMP] = ACTIONS(4044), - [anon_sym_LT_LT] = ACTIONS(4044), - [anon_sym_LT_LT_DASH] = ACTIONS(4044), - [anon_sym_LT_LT_LT] = ACTIONS(4044), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4044), - }, - [1462] = { - [aux_sym_concatenation_repeat1] = STATE(1464), - [sym_file_descriptor] = ACTIONS(1245), - [sym__concat] = ACTIONS(3006), - [anon_sym_PIPE] = ACTIONS(4046), - [anon_sym_RPAREN] = ACTIONS(4046), - [anon_sym_SEMI_SEMI] = ACTIONS(4046), - [anon_sym_PIPE_AMP] = ACTIONS(4046), - [anon_sym_AMP_AMP] = ACTIONS(4046), - [anon_sym_PIPE_PIPE] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(4046), - [anon_sym_GT] = ACTIONS(4046), - [anon_sym_GT_GT] = ACTIONS(4046), - [anon_sym_AMP_GT] = ACTIONS(4046), - [anon_sym_AMP_GT_GT] = ACTIONS(4046), - [anon_sym_LT_AMP] = ACTIONS(4046), - [anon_sym_GT_AMP] = ACTIONS(4046), - [anon_sym_LT_LT] = ACTIONS(4046), - [anon_sym_LT_LT_DASH] = ACTIONS(4046), - [anon_sym_LT_LT_LT] = ACTIONS(4046), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4046), - [anon_sym_AMP] = ACTIONS(4046), - }, - [1463] = { - [sym_string] = STATE(2145), - [sym_simple_expansion] = STATE(2145), - [sym_string_expansion] = STATE(2145), - [sym_expansion] = STATE(2145), - [sym_command_substitution] = STATE(2145), - [sym_process_substitution] = STATE(2145), - [sym__special_characters] = ACTIONS(4580), - [anon_sym_DQUOTE] = ACTIONS(1529), - [anon_sym_DOLLAR] = ACTIONS(1531), - [sym_raw_string] = ACTIONS(4582), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1535), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1537), - [anon_sym_BQUOTE] = ACTIONS(1539), - [anon_sym_LT_LPAREN] = ACTIONS(1541), - [anon_sym_GT_LPAREN] = ACTIONS(1541), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4580), - }, - [1464] = { - [aux_sym_concatenation_repeat1] = STATE(2146), - [sym_file_descriptor] = ACTIONS(790), - [sym__concat] = ACTIONS(3006), - [anon_sym_PIPE] = ACTIONS(792), - [anon_sym_RPAREN] = ACTIONS(792), - [anon_sym_SEMI_SEMI] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [anon_sym_LT] = ACTIONS(792), - [anon_sym_GT] = ACTIONS(792), - [anon_sym_GT_GT] = ACTIONS(792), - [anon_sym_AMP_GT] = ACTIONS(792), - [anon_sym_AMP_GT_GT] = ACTIONS(792), - [anon_sym_LT_AMP] = ACTIONS(792), - [anon_sym_GT_AMP] = ACTIONS(792), - [anon_sym_LT_LT] = ACTIONS(792), - [anon_sym_LT_LT_DASH] = ACTIONS(792), - [anon_sym_LT_LT_LT] = ACTIONS(792), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LF] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(792), - }, - [1465] = { - [sym_file_descriptor] = ACTIONS(794), - [sym__concat] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_RPAREN] = ACTIONS(796), - [anon_sym_SEMI_SEMI] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_GT] = ACTIONS(796), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_AMP_GT] = ACTIONS(796), - [anon_sym_AMP_GT_GT] = ACTIONS(796), - [anon_sym_LT_AMP] = ACTIONS(796), - [anon_sym_GT_AMP] = ACTIONS(796), - [anon_sym_LT_LT] = ACTIONS(796), - [anon_sym_LT_LT_DASH] = ACTIONS(796), - [anon_sym_LT_LT_LT] = ACTIONS(796), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_LF] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - }, - [1466] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(4584), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1467] = { - [sym_file_descriptor] = ACTIONS(826), - [sym__concat] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_SEMI_SEMI] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(828), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(828), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), - [anon_sym_LT_LT] = ACTIONS(828), - [anon_sym_LT_LT_DASH] = ACTIONS(828), - [anon_sym_LT_LT_LT] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(828), - }, - [1468] = { - [sym_file_descriptor] = ACTIONS(830), - [sym__concat] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_GT] = ACTIONS(832), - [anon_sym_GT_GT] = ACTIONS(832), - [anon_sym_AMP_GT] = ACTIONS(832), - [anon_sym_AMP_GT_GT] = ACTIONS(832), - [anon_sym_LT_AMP] = ACTIONS(832), - [anon_sym_GT_AMP] = ACTIONS(832), - [anon_sym_LT_LT] = ACTIONS(832), - [anon_sym_LT_LT_DASH] = ACTIONS(832), - [anon_sym_LT_LT_LT] = ACTIONS(832), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(832), - [anon_sym_AMP] = ACTIONS(832), - }, - [1469] = { - [sym_file_descriptor] = ACTIONS(834), - [sym__concat] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_SEMI_SEMI] = ACTIONS(836), - [anon_sym_PIPE_AMP] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_AMP_GT] = ACTIONS(836), - [anon_sym_AMP_GT_GT] = ACTIONS(836), - [anon_sym_LT_AMP] = ACTIONS(836), - [anon_sym_GT_AMP] = ACTIONS(836), - [anon_sym_LT_LT] = ACTIONS(836), - [anon_sym_LT_LT_DASH] = ACTIONS(836), - [anon_sym_LT_LT_LT] = ACTIONS(836), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(836), - }, - [1470] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(4586), - [sym_comment] = ACTIONS(56), - }, - [1471] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2151), - [anon_sym_RBRACE] = ACTIONS(4588), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4590), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1472] = { - [sym_subscript] = STATE(2155), - [sym_variable_name] = ACTIONS(4592), - [anon_sym_DOLLAR] = ACTIONS(4594), - [anon_sym_DASH] = ACTIONS(4594), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4596), - [anon_sym_STAR] = ACTIONS(4594), - [anon_sym_AT] = ACTIONS(4594), - [anon_sym_QMARK] = ACTIONS(4594), - [anon_sym_0] = ACTIONS(4598), - [anon_sym__] = ACTIONS(4598), - }, - [1473] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2158), - [anon_sym_RBRACE] = ACTIONS(4600), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4602), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1474] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2161), - [anon_sym_RBRACE] = ACTIONS(4604), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4606), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1475] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4608), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1476] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4608), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1477] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(4608), - [sym_comment] = ACTIONS(56), - }, - [1478] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(4608), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1479] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4610), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1480] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4610), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1481] = { - [anon_sym_esac] = ACTIONS(4612), - [anon_sym_PIPE] = ACTIONS(4612), - [anon_sym_RPAREN] = ACTIONS(4612), - [anon_sym_SEMI_SEMI] = ACTIONS(4612), - [anon_sym_PIPE_AMP] = ACTIONS(4612), - [anon_sym_AMP_AMP] = ACTIONS(4612), - [anon_sym_PIPE_PIPE] = ACTIONS(4612), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4612), - [anon_sym_LF] = ACTIONS(4612), - [anon_sym_AMP] = ACTIONS(4612), - }, - [1482] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(828), - [sym_file_descriptor] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(4106), - [anon_sym_RPAREN] = ACTIONS(4106), - [anon_sym_SEMI_SEMI] = ACTIONS(4106), - [anon_sym_PIPE_AMP] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(562), - [anon_sym_AMP_GT] = ACTIONS(562), - [anon_sym_AMP_GT_GT] = ACTIONS(562), - [anon_sym_LT_AMP] = ACTIONS(562), - [anon_sym_GT_AMP] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(564), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_LF] = ACTIONS(4106), - [anon_sym_AMP] = ACTIONS(4106), - }, - [1483] = { - [sym__concat] = ACTIONS(3293), - [anon_sym_EQ_TILDE] = ACTIONS(4614), - [anon_sym_EQ_EQ] = ACTIONS(4614), - [anon_sym_RBRACK] = ACTIONS(3293), - [sym__special_characters] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_DOLLAR] = ACTIONS(4614), - [sym_raw_string] = ACTIONS(3293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), - [anon_sym_BQUOTE] = ACTIONS(3293), - [anon_sym_LT_LPAREN] = ACTIONS(3293), - [anon_sym_GT_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3295), - }, - [1484] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(4616), - [sym_comment] = ACTIONS(56), - }, - [1485] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(4618), - [sym_comment] = ACTIONS(56), - }, - [1486] = { - [anon_sym_RBRACE] = ACTIONS(4618), - [sym_comment] = ACTIONS(56), - }, - [1487] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2167), - [anon_sym_RBRACE] = ACTIONS(4620), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1488] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_EQ_TILDE] = ACTIONS(4622), - [anon_sym_EQ_EQ] = ACTIONS(4622), - [anon_sym_RBRACK] = ACTIONS(3357), - [sym__special_characters] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_DOLLAR] = ACTIONS(4622), - [sym_raw_string] = ACTIONS(3357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), - [anon_sym_BQUOTE] = ACTIONS(3357), - [anon_sym_LT_LPAREN] = ACTIONS(3357), - [anon_sym_GT_LPAREN] = ACTIONS(3357), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3359), - }, - [1489] = { - [sym_concatenation] = STATE(2170), - [sym_string] = STATE(2169), - [sym_simple_expansion] = STATE(2169), - [sym_string_expansion] = STATE(2169), - [sym_expansion] = STATE(2169), - [sym_command_substitution] = STATE(2169), - [sym_process_substitution] = STATE(2169), - [anon_sym_RBRACE] = ACTIONS(4618), - [sym__special_characters] = ACTIONS(4624), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(4626), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4628), - }, - [1490] = { - [sym__concat] = ACTIONS(3402), - [anon_sym_EQ_TILDE] = ACTIONS(4630), - [anon_sym_EQ_EQ] = ACTIONS(4630), - [anon_sym_RBRACK] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(3404), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(4630), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3404), - }, - [1491] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4632), - }, - [1492] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4634), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1493] = { - [sym__concat] = ACTIONS(3410), - [anon_sym_EQ_TILDE] = ACTIONS(4636), - [anon_sym_EQ_EQ] = ACTIONS(4636), - [anon_sym_RBRACK] = ACTIONS(3410), - [sym__special_characters] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3410), - [anon_sym_DOLLAR] = ACTIONS(4636), - [sym_raw_string] = ACTIONS(3410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), - [anon_sym_BQUOTE] = ACTIONS(3410), - [anon_sym_LT_LPAREN] = ACTIONS(3410), - [anon_sym_GT_LPAREN] = ACTIONS(3410), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3412), - }, - [1494] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4638), - }, - [1495] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4640), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1496] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4642), - }, - [1497] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4618), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1498] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2177), - [anon_sym_RBRACE] = ACTIONS(4644), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1499] = { - [sym__concat] = ACTIONS(3422), - [anon_sym_EQ_TILDE] = ACTIONS(4646), - [anon_sym_EQ_EQ] = ACTIONS(4646), - [anon_sym_RBRACK] = ACTIONS(3422), - [sym__special_characters] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3422), - [anon_sym_DOLLAR] = ACTIONS(4646), - [sym_raw_string] = ACTIONS(3422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), - [anon_sym_BQUOTE] = ACTIONS(3422), - [anon_sym_LT_LPAREN] = ACTIONS(3422), - [anon_sym_GT_LPAREN] = ACTIONS(3422), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3424), - }, - [1500] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2179), - [anon_sym_RBRACE] = ACTIONS(4648), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1501] = { - [sym__concat] = ACTIONS(3293), - [anon_sym_EQ_TILDE] = ACTIONS(4614), - [anon_sym_EQ_EQ] = ACTIONS(4614), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3293), - [sym__special_characters] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_DOLLAR] = ACTIONS(4614), - [sym_raw_string] = ACTIONS(3293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), - [anon_sym_BQUOTE] = ACTIONS(3293), - [anon_sym_LT_LPAREN] = ACTIONS(3293), - [anon_sym_GT_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3295), - }, - [1502] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(4650), - [sym_comment] = ACTIONS(56), - }, - [1503] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(4652), - [sym_comment] = ACTIONS(56), - }, - [1504] = { - [anon_sym_RBRACE] = ACTIONS(4652), - [sym_comment] = ACTIONS(56), - }, - [1505] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2183), - [anon_sym_RBRACE] = ACTIONS(4654), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1506] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_EQ_TILDE] = ACTIONS(4622), - [anon_sym_EQ_EQ] = ACTIONS(4622), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3357), - [sym__special_characters] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_DOLLAR] = ACTIONS(4622), - [sym_raw_string] = ACTIONS(3357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), - [anon_sym_BQUOTE] = ACTIONS(3357), - [anon_sym_LT_LPAREN] = ACTIONS(3357), - [anon_sym_GT_LPAREN] = ACTIONS(3357), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3359), - }, - [1507] = { - [sym_concatenation] = STATE(2186), - [sym_string] = STATE(2185), - [sym_simple_expansion] = STATE(2185), - [sym_string_expansion] = STATE(2185), - [sym_expansion] = STATE(2185), - [sym_command_substitution] = STATE(2185), - [sym_process_substitution] = STATE(2185), - [anon_sym_RBRACE] = ACTIONS(4652), - [sym__special_characters] = ACTIONS(4656), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(4658), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4660), - }, - [1508] = { - [sym__concat] = ACTIONS(3402), - [anon_sym_EQ_TILDE] = ACTIONS(4630), - [anon_sym_EQ_EQ] = ACTIONS(4630), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(3404), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(4630), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3404), - }, - [1509] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4662), - }, - [1510] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4664), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1511] = { - [sym__concat] = ACTIONS(3410), - [anon_sym_EQ_TILDE] = ACTIONS(4636), - [anon_sym_EQ_EQ] = ACTIONS(4636), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3410), - [sym__special_characters] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3410), - [anon_sym_DOLLAR] = ACTIONS(4636), - [sym_raw_string] = ACTIONS(3410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), - [anon_sym_BQUOTE] = ACTIONS(3410), - [anon_sym_LT_LPAREN] = ACTIONS(3410), - [anon_sym_GT_LPAREN] = ACTIONS(3410), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3412), - }, - [1512] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4666), - }, - [1513] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4668), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1514] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4670), - }, - [1515] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4652), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1516] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2193), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1517] = { - [sym__concat] = ACTIONS(3422), - [anon_sym_EQ_TILDE] = ACTIONS(4646), - [anon_sym_EQ_EQ] = ACTIONS(4646), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3422), - [sym__special_characters] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3422), - [anon_sym_DOLLAR] = ACTIONS(4646), - [sym_raw_string] = ACTIONS(3422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), - [anon_sym_BQUOTE] = ACTIONS(3422), - [anon_sym_LT_LPAREN] = ACTIONS(3422), - [anon_sym_GT_LPAREN] = ACTIONS(3422), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3424), - }, - [1518] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2195), - [anon_sym_RBRACE] = ACTIONS(4674), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1519] = { - [sym_variable_name] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_RPAREN] = ACTIONS(2565), - [anon_sym_SEMI_SEMI] = ACTIONS(2565), - [anon_sym_PIPE_AMP] = ACTIONS(2565), - [anon_sym_AMP_AMP] = ACTIONS(2565), - [anon_sym_PIPE_PIPE] = ACTIONS(2565), - [sym__special_characters] = ACTIONS(2565), - [anon_sym_DQUOTE] = ACTIONS(2565), - [anon_sym_DOLLAR] = ACTIONS(2565), - [sym_raw_string] = ACTIONS(2565), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2565), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2565), - [anon_sym_BQUOTE] = ACTIONS(2565), - [anon_sym_LT_LPAREN] = ACTIONS(2565), - [anon_sym_GT_LPAREN] = ACTIONS(2565), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2565), - [sym_word] = ACTIONS(2565), - [anon_sym_SEMI] = ACTIONS(2565), - [anon_sym_LF] = ACTIONS(2565), - [anon_sym_AMP] = ACTIONS(2565), - }, - [1520] = { - [sym_concatenation] = STATE(661), - [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), - [aux_sym_for_statement_repeat1] = STATE(1273), - [anon_sym_RPAREN] = ACTIONS(4676), - [sym__special_characters] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1287), - [anon_sym_DOLLAR] = ACTIONS(1289), - [sym_raw_string] = ACTIONS(1291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), - [anon_sym_BQUOTE] = ACTIONS(1297), - [anon_sym_LT_LPAREN] = ACTIONS(1299), - [anon_sym_GT_LPAREN] = ACTIONS(1299), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1301), - }, - [1521] = { - [sym__concat] = ACTIONS(3293), - [sym_variable_name] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_SEMI_SEMI] = ACTIONS(3295), - [anon_sym_PIPE_AMP] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [sym__special_characters] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_DOLLAR] = ACTIONS(3295), - [sym_raw_string] = ACTIONS(3295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), - [anon_sym_BQUOTE] = ACTIONS(3295), - [anon_sym_LT_LPAREN] = ACTIONS(3295), - [anon_sym_GT_LPAREN] = ACTIONS(3295), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3295), - [sym_word] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - }, - [1522] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(4678), - [sym_comment] = ACTIONS(56), - }, - [1523] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(4680), - [sym_comment] = ACTIONS(56), - }, - [1524] = { - [anon_sym_RBRACE] = ACTIONS(4680), - [sym_comment] = ACTIONS(56), - }, - [1525] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2200), - [anon_sym_RBRACE] = ACTIONS(4682), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1526] = { - [sym__concat] = ACTIONS(3357), - [sym_variable_name] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_PIPE_AMP] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [sym__special_characters] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_DOLLAR] = ACTIONS(3359), - [sym_raw_string] = ACTIONS(3359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), - [anon_sym_BQUOTE] = ACTIONS(3359), - [anon_sym_LT_LPAREN] = ACTIONS(3359), - [anon_sym_GT_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3359), - [sym_word] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - }, - [1527] = { - [sym_concatenation] = STATE(2203), - [sym_string] = STATE(2202), - [sym_simple_expansion] = STATE(2202), - [sym_string_expansion] = STATE(2202), - [sym_expansion] = STATE(2202), - [sym_command_substitution] = STATE(2202), - [sym_process_substitution] = STATE(2202), - [anon_sym_RBRACE] = ACTIONS(4680), - [sym__special_characters] = ACTIONS(4684), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(4686), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4688), - }, - [1528] = { - [sym__concat] = ACTIONS(3402), - [sym_variable_name] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_SEMI_SEMI] = ACTIONS(3404), - [anon_sym_PIPE_AMP] = ACTIONS(3404), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3404), - [sym__special_characters] = ACTIONS(3404), - [anon_sym_DQUOTE] = ACTIONS(3404), - [anon_sym_DOLLAR] = ACTIONS(3404), - [sym_raw_string] = ACTIONS(3404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), - [anon_sym_BQUOTE] = ACTIONS(3404), - [anon_sym_LT_LPAREN] = ACTIONS(3404), - [anon_sym_GT_LPAREN] = ACTIONS(3404), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3404), - [sym_word] = ACTIONS(3404), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - }, - [1529] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4690), - }, - [1530] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4692), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1531] = { - [sym__concat] = ACTIONS(3410), - [sym_variable_name] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(3412), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3412), - [sym_word] = ACTIONS(3412), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - }, - [1532] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4694), - }, - [1533] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4696), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1534] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4698), - }, - [1535] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4680), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1536] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2210), - [anon_sym_RBRACE] = ACTIONS(4700), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1537] = { - [sym__concat] = ACTIONS(3422), - [sym_variable_name] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_SEMI_SEMI] = ACTIONS(3424), - [anon_sym_PIPE_AMP] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_PIPE_PIPE] = ACTIONS(3424), - [sym__special_characters] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [anon_sym_DOLLAR] = ACTIONS(3424), - [sym_raw_string] = ACTIONS(3424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), - [anon_sym_BQUOTE] = ACTIONS(3424), - [anon_sym_LT_LPAREN] = ACTIONS(3424), - [anon_sym_GT_LPAREN] = ACTIONS(3424), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3424), - [sym_word] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - }, - [1538] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2212), - [anon_sym_RBRACE] = ACTIONS(4702), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1539] = { - [sym__concat] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_SEMI_SEMI] = ACTIONS(3295), - [anon_sym_PIPE_AMP] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [sym__special_characters] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_DOLLAR] = ACTIONS(3295), - [sym_raw_string] = ACTIONS(3295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), - [anon_sym_BQUOTE] = ACTIONS(3295), - [anon_sym_LT_LPAREN] = ACTIONS(3295), - [anon_sym_GT_LPAREN] = ACTIONS(3295), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3295), - [sym_word] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - }, - [1540] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(4704), - [sym_comment] = ACTIONS(56), - }, - [1541] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(4706), - [sym_comment] = ACTIONS(56), - }, - [1542] = { - [anon_sym_RBRACE] = ACTIONS(4706), - [sym_comment] = ACTIONS(56), - }, - [1543] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2216), - [anon_sym_RBRACE] = ACTIONS(4708), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1544] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_PIPE_AMP] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [sym__special_characters] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_DOLLAR] = ACTIONS(3359), - [sym_raw_string] = ACTIONS(3359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), - [anon_sym_BQUOTE] = ACTIONS(3359), - [anon_sym_LT_LPAREN] = ACTIONS(3359), - [anon_sym_GT_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3359), - [sym_word] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - }, - [1545] = { - [sym_concatenation] = STATE(2219), - [sym_string] = STATE(2218), - [sym_simple_expansion] = STATE(2218), - [sym_string_expansion] = STATE(2218), - [sym_expansion] = STATE(2218), - [sym_command_substitution] = STATE(2218), - [sym_process_substitution] = STATE(2218), - [anon_sym_RBRACE] = ACTIONS(4706), - [sym__special_characters] = ACTIONS(4710), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(4712), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4714), - }, - [1546] = { - [sym__concat] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_SEMI_SEMI] = ACTIONS(3404), - [anon_sym_PIPE_AMP] = ACTIONS(3404), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3404), - [sym__special_characters] = ACTIONS(3404), - [anon_sym_DQUOTE] = ACTIONS(3404), - [anon_sym_DOLLAR] = ACTIONS(3404), - [sym_raw_string] = ACTIONS(3404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), - [anon_sym_BQUOTE] = ACTIONS(3404), - [anon_sym_LT_LPAREN] = ACTIONS(3404), - [anon_sym_GT_LPAREN] = ACTIONS(3404), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3404), - [sym_word] = ACTIONS(3404), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - }, - [1547] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4716), - }, - [1548] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4718), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1549] = { - [sym__concat] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(3412), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3412), - [sym_word] = ACTIONS(3412), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - }, - [1550] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4720), - }, - [1551] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4722), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1552] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4724), - }, - [1553] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4706), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1554] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2226), - [anon_sym_RBRACE] = ACTIONS(4726), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1555] = { - [sym__concat] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_SEMI_SEMI] = ACTIONS(3424), - [anon_sym_PIPE_AMP] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_PIPE_PIPE] = ACTIONS(3424), - [sym__special_characters] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [anon_sym_DOLLAR] = ACTIONS(3424), - [sym_raw_string] = ACTIONS(3424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), - [anon_sym_BQUOTE] = ACTIONS(3424), - [anon_sym_LT_LPAREN] = ACTIONS(3424), - [anon_sym_GT_LPAREN] = ACTIONS(3424), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3424), - [sym_word] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - }, - [1556] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2228), - [anon_sym_RBRACE] = ACTIONS(4728), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1557] = { - [sym_file_descriptor] = ACTIONS(3293), - [sym__concat] = ACTIONS(3293), - [sym_variable_name] = ACTIONS(3293), - [anon_sym_LT] = ACTIONS(4614), - [anon_sym_GT] = ACTIONS(4614), - [anon_sym_GT_GT] = ACTIONS(3293), - [anon_sym_AMP_GT] = ACTIONS(4614), - [anon_sym_AMP_GT_GT] = ACTIONS(3293), - [anon_sym_LT_AMP] = ACTIONS(3293), - [anon_sym_GT_AMP] = ACTIONS(3293), - [sym__special_characters] = ACTIONS(4614), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_DOLLAR] = ACTIONS(4614), - [sym_raw_string] = ACTIONS(3293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), - [anon_sym_BQUOTE] = ACTIONS(3293), - [anon_sym_LT_LPAREN] = ACTIONS(3293), - [anon_sym_GT_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4614), - }, - [1558] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(4730), - [sym_comment] = ACTIONS(56), - }, - [1559] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(4732), - [sym_comment] = ACTIONS(56), - }, - [1560] = { - [anon_sym_RBRACE] = ACTIONS(4732), - [sym_comment] = ACTIONS(56), - }, - [1561] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2232), - [anon_sym_RBRACE] = ACTIONS(4734), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1562] = { - [sym_file_descriptor] = ACTIONS(3357), - [sym__concat] = ACTIONS(3357), - [sym_variable_name] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(4622), - [anon_sym_GT] = ACTIONS(4622), - [anon_sym_GT_GT] = ACTIONS(3357), - [anon_sym_AMP_GT] = ACTIONS(4622), - [anon_sym_AMP_GT_GT] = ACTIONS(3357), - [anon_sym_LT_AMP] = ACTIONS(3357), - [anon_sym_GT_AMP] = ACTIONS(3357), - [sym__special_characters] = ACTIONS(4622), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_DOLLAR] = ACTIONS(4622), - [sym_raw_string] = ACTIONS(3357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), - [anon_sym_BQUOTE] = ACTIONS(3357), - [anon_sym_LT_LPAREN] = ACTIONS(3357), - [anon_sym_GT_LPAREN] = ACTIONS(3357), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4622), - }, - [1563] = { - [sym_concatenation] = STATE(2235), - [sym_string] = STATE(2234), - [sym_simple_expansion] = STATE(2234), - [sym_string_expansion] = STATE(2234), - [sym_expansion] = STATE(2234), - [sym_command_substitution] = STATE(2234), - [sym_process_substitution] = STATE(2234), - [anon_sym_RBRACE] = ACTIONS(4732), - [sym__special_characters] = ACTIONS(4736), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(4738), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4740), - }, - [1564] = { - [sym_file_descriptor] = ACTIONS(3402), - [sym__concat] = ACTIONS(3402), - [sym_variable_name] = ACTIONS(3402), - [anon_sym_LT] = ACTIONS(4630), - [anon_sym_GT] = ACTIONS(4630), - [anon_sym_GT_GT] = ACTIONS(3402), - [anon_sym_AMP_GT] = ACTIONS(4630), - [anon_sym_AMP_GT_GT] = ACTIONS(3402), - [anon_sym_LT_AMP] = ACTIONS(3402), - [anon_sym_GT_AMP] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(4630), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(4630), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4630), - }, - [1565] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4742), - }, - [1566] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4744), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1567] = { - [sym_file_descriptor] = ACTIONS(3410), - [sym__concat] = ACTIONS(3410), - [sym_variable_name] = ACTIONS(3410), - [anon_sym_LT] = ACTIONS(4636), - [anon_sym_GT] = ACTIONS(4636), - [anon_sym_GT_GT] = ACTIONS(3410), - [anon_sym_AMP_GT] = ACTIONS(4636), - [anon_sym_AMP_GT_GT] = ACTIONS(3410), - [anon_sym_LT_AMP] = ACTIONS(3410), - [anon_sym_GT_AMP] = ACTIONS(3410), - [sym__special_characters] = ACTIONS(4636), - [anon_sym_DQUOTE] = ACTIONS(3410), - [anon_sym_DOLLAR] = ACTIONS(4636), - [sym_raw_string] = ACTIONS(3410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), - [anon_sym_BQUOTE] = ACTIONS(3410), - [anon_sym_LT_LPAREN] = ACTIONS(3410), - [anon_sym_GT_LPAREN] = ACTIONS(3410), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4636), - }, - [1568] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4746), - }, - [1569] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4748), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1570] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4750), - }, - [1571] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4732), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1572] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2242), - [anon_sym_RBRACE] = ACTIONS(4752), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1573] = { - [sym_file_descriptor] = ACTIONS(3422), - [sym__concat] = ACTIONS(3422), - [sym_variable_name] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(4646), - [anon_sym_GT] = ACTIONS(4646), - [anon_sym_GT_GT] = ACTIONS(3422), - [anon_sym_AMP_GT] = ACTIONS(4646), - [anon_sym_AMP_GT_GT] = ACTIONS(3422), - [anon_sym_LT_AMP] = ACTIONS(3422), - [anon_sym_GT_AMP] = ACTIONS(3422), - [sym__special_characters] = ACTIONS(4646), - [anon_sym_DQUOTE] = ACTIONS(3422), - [anon_sym_DOLLAR] = ACTIONS(4646), - [sym_raw_string] = ACTIONS(3422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), - [anon_sym_BQUOTE] = ACTIONS(3422), - [anon_sym_LT_LPAREN] = ACTIONS(3422), - [anon_sym_GT_LPAREN] = ACTIONS(3422), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4646), - }, - [1574] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2244), - [anon_sym_RBRACE] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1575] = { - [sym__concat] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_DOLLAR] = ACTIONS(3295), - [sym__string_content] = ACTIONS(4614), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), - [anon_sym_BQUOTE] = ACTIONS(3295), - [sym_comment] = ACTIONS(182), - }, - [1576] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(4756), - [sym_comment] = ACTIONS(56), - }, - [1577] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(4758), - [sym_comment] = ACTIONS(56), - }, - [1578] = { - [anon_sym_RBRACE] = ACTIONS(4758), - [sym_comment] = ACTIONS(56), - }, - [1579] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2248), - [anon_sym_RBRACE] = ACTIONS(4760), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1580] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_DOLLAR] = ACTIONS(3359), - [sym__string_content] = ACTIONS(4622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), - [anon_sym_BQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(182), - }, - [1581] = { - [sym_concatenation] = STATE(2251), - [sym_string] = STATE(2250), - [sym_simple_expansion] = STATE(2250), - [sym_string_expansion] = STATE(2250), - [sym_expansion] = STATE(2250), - [sym_command_substitution] = STATE(2250), - [sym_process_substitution] = STATE(2250), - [anon_sym_RBRACE] = ACTIONS(4758), - [sym__special_characters] = ACTIONS(4762), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(4764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4766), - }, - [1582] = { - [sym__concat] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3404), - [anon_sym_DOLLAR] = ACTIONS(3404), - [sym__string_content] = ACTIONS(4630), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), - [anon_sym_BQUOTE] = ACTIONS(3404), - [sym_comment] = ACTIONS(182), - }, - [1583] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4768), - }, - [1584] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4770), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1585] = { - [sym__concat] = ACTIONS(3410), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(3412), - [sym__string_content] = ACTIONS(4636), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [sym_comment] = ACTIONS(182), - }, - [1586] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4772), - }, - [1587] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4774), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1588] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4776), - }, - [1589] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4758), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1590] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2258), - [anon_sym_RBRACE] = ACTIONS(4778), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1591] = { - [sym__concat] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(3424), - [anon_sym_DOLLAR] = ACTIONS(3424), - [sym__string_content] = ACTIONS(4646), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), - [anon_sym_BQUOTE] = ACTIONS(3424), - [sym_comment] = ACTIONS(182), - }, - [1592] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2260), - [anon_sym_RBRACE] = ACTIONS(4780), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1593] = { - [sym_string] = STATE(1231), - [sym_simple_expansion] = STATE(1231), - [sym_string_expansion] = STATE(1231), - [sym_expansion] = STATE(1231), - [sym_command_substitution] = STATE(1231), - [sym_process_substitution] = STATE(1231), - [anon_sym_RBRACK] = ACTIONS(4782), - [sym__special_characters] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_raw_string] = ACTIONS(2519), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), - [anon_sym_BQUOTE] = ACTIONS(412), - [anon_sym_LT_LPAREN] = ACTIONS(414), - [anon_sym_GT_LPAREN] = ACTIONS(414), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2521), - }, - [1594] = { - [sym__concat] = ACTIONS(4784), - [anon_sym_RBRACE] = ACTIONS(2525), - [anon_sym_EQ] = ACTIONS(4786), - [sym__special_characters] = ACTIONS(4788), - [anon_sym_DQUOTE] = ACTIONS(2525), - [anon_sym_DOLLAR] = ACTIONS(4786), - [sym_raw_string] = ACTIONS(2525), - [anon_sym_POUND] = ACTIONS(2525), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2525), - [aux_sym_SLASH] = ACTIONS(2525), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_COLON_QMARK] = ACTIONS(4786), - [anon_sym_COLON_DASH] = ACTIONS(4786), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_DASH] = ACTIONS(4786), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2525), - [anon_sym_BQUOTE] = ACTIONS(2525), - [anon_sym_LT_LPAREN] = ACTIONS(2525), - [anon_sym_GT_LPAREN] = ACTIONS(2525), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4788), - }, - [1595] = { - [sym_string] = STATE(1231), - [sym_simple_expansion] = STATE(1231), - [sym_string_expansion] = STATE(1231), - [sym_expansion] = STATE(1231), - [sym_command_substitution] = STATE(1231), - [sym_process_substitution] = STATE(1231), - [anon_sym_RBRACK] = ACTIONS(4790), - [sym__special_characters] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_raw_string] = ACTIONS(2519), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), - [anon_sym_BQUOTE] = ACTIONS(412), - [anon_sym_LT_LPAREN] = ACTIONS(414), - [anon_sym_GT_LPAREN] = ACTIONS(414), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2521), - }, - [1596] = { - [sym__concat] = ACTIONS(4792), - [anon_sym_RBRACE] = ACTIONS(2535), - [anon_sym_EQ] = ACTIONS(4794), - [sym__special_characters] = ACTIONS(4796), - [anon_sym_DQUOTE] = ACTIONS(2535), - [anon_sym_DOLLAR] = ACTIONS(4794), - [sym_raw_string] = ACTIONS(2535), - [anon_sym_POUND] = ACTIONS(2535), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2535), - [aux_sym_SLASH] = ACTIONS(2535), - [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(2535), - [anon_sym_BQUOTE] = ACTIONS(2535), - [anon_sym_LT_LPAREN] = ACTIONS(2535), - [anon_sym_GT_LPAREN] = ACTIONS(2535), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4796), - }, - [1597] = { - [anon_sym_RBRACK] = ACTIONS(4790), - [sym_comment] = ACTIONS(56), - }, - [1598] = { - [sym_string] = STATE(2265), - [sym_simple_expansion] = STATE(2265), - [sym_string_expansion] = STATE(2265), - [sym_expansion] = STATE(2265), - [sym_command_substitution] = STATE(2265), - [sym_process_substitution] = STATE(2265), - [sym__special_characters] = ACTIONS(4798), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(4800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4798), - }, - [1599] = { - [sym_file_descriptor] = ACTIONS(4802), - [sym__concat] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [anon_sym_PIPE_AMP] = ACTIONS(4804), - [anon_sym_AMP_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4804), - [anon_sym_EQ_TILDE] = ACTIONS(4804), - [anon_sym_EQ_EQ] = ACTIONS(4804), - [anon_sym_LT] = ACTIONS(4804), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_GT_GT] = ACTIONS(4804), - [anon_sym_AMP_GT] = ACTIONS(4804), - [anon_sym_AMP_GT_GT] = ACTIONS(4804), - [anon_sym_LT_AMP] = ACTIONS(4804), - [anon_sym_GT_AMP] = ACTIONS(4804), - [anon_sym_LT_LT] = ACTIONS(4804), - [anon_sym_LT_LT_DASH] = ACTIONS(4804), - [anon_sym_LT_LT_LT] = ACTIONS(4804), - [sym__special_characters] = ACTIONS(4804), - [anon_sym_DQUOTE] = ACTIONS(4804), - [anon_sym_DOLLAR] = ACTIONS(4804), - [sym_raw_string] = ACTIONS(4804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), - [anon_sym_BQUOTE] = ACTIONS(4804), - [anon_sym_LT_LPAREN] = ACTIONS(4804), - [anon_sym_GT_LPAREN] = ACTIONS(4804), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4804), - [anon_sym_SEMI] = ACTIONS(4804), - [anon_sym_LF] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4804), - }, - [1600] = { - [aux_sym_concatenation_repeat1] = STATE(2266), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(790), - [sym_comment] = ACTIONS(56), - }, - [1601] = { - [sym__concat] = ACTIONS(794), - [anon_sym_RBRACE] = ACTIONS(794), - [sym_comment] = ACTIONS(56), - }, - [1602] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(4806), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1603] = { - [sym__concat] = ACTIONS(826), - [anon_sym_RBRACE] = ACTIONS(826), - [sym_comment] = ACTIONS(56), - }, - [1604] = { - [sym__concat] = ACTIONS(830), - [anon_sym_RBRACE] = ACTIONS(830), - [sym_comment] = ACTIONS(56), - }, - [1605] = { - [sym__concat] = ACTIONS(834), - [anon_sym_RBRACE] = ACTIONS(834), - [sym_comment] = ACTIONS(56), - }, - [1606] = { - [sym_file_descriptor] = ACTIONS(4808), - [sym__concat] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_SEMI_SEMI] = ACTIONS(4810), - [anon_sym_PIPE_AMP] = ACTIONS(4810), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [anon_sym_EQ_TILDE] = ACTIONS(4810), - [anon_sym_EQ_EQ] = ACTIONS(4810), - [anon_sym_LT] = ACTIONS(4810), - [anon_sym_GT] = ACTIONS(4810), - [anon_sym_GT_GT] = ACTIONS(4810), - [anon_sym_AMP_GT] = ACTIONS(4810), - [anon_sym_AMP_GT_GT] = ACTIONS(4810), - [anon_sym_LT_AMP] = ACTIONS(4810), - [anon_sym_GT_AMP] = ACTIONS(4810), - [anon_sym_LT_LT] = ACTIONS(4810), - [anon_sym_LT_LT_DASH] = ACTIONS(4810), - [anon_sym_LT_LT_LT] = ACTIONS(4810), - [sym__special_characters] = ACTIONS(4810), - [anon_sym_DQUOTE] = ACTIONS(4810), - [anon_sym_DOLLAR] = ACTIONS(4810), - [sym_raw_string] = ACTIONS(4810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), - [anon_sym_BQUOTE] = ACTIONS(4810), - [anon_sym_LT_LPAREN] = ACTIONS(4810), - [anon_sym_GT_LPAREN] = ACTIONS(4810), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4810), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LF] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4810), - }, - [1607] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(4812), - [sym_comment] = ACTIONS(56), - }, - [1608] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2271), - [anon_sym_RBRACE] = ACTIONS(4814), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4816), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1609] = { - [sym_subscript] = STATE(2275), - [sym_variable_name] = ACTIONS(4818), - [anon_sym_DOLLAR] = ACTIONS(4820), - [anon_sym_DASH] = ACTIONS(4820), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4822), - [anon_sym_STAR] = ACTIONS(4820), - [anon_sym_AT] = ACTIONS(4820), - [anon_sym_QMARK] = ACTIONS(4820), - [anon_sym_0] = ACTIONS(4824), - [anon_sym__] = ACTIONS(4824), - }, - [1610] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2278), - [anon_sym_RBRACE] = ACTIONS(4826), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4828), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1611] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2281), - [anon_sym_RBRACE] = ACTIONS(4830), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4832), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1612] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4834), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1613] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4834), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1614] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(4834), - [sym_comment] = ACTIONS(56), - }, - [1615] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(4834), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1616] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4836), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1617] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4836), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1618] = { - [sym__concat] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_EQ] = ACTIONS(3066), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_COLON_QMARK] = ACTIONS(3066), - [anon_sym_COLON_DASH] = ACTIONS(3066), - [anon_sym_PERCENT] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1892), - }, - [1619] = { - [aux_sym_concatenation_repeat1] = STATE(1619), - [sym__concat] = ACTIONS(4838), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_EQ] = ACTIONS(3066), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_COLON_QMARK] = ACTIONS(3066), - [anon_sym_COLON_DASH] = ACTIONS(3066), - [anon_sym_PERCENT] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1892), - }, - [1620] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_EQ] = ACTIONS(3071), - [sym__special_characters] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1927), - [anon_sym_POUND] = ACTIONS(1927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), - [anon_sym_COLON] = ACTIONS(3071), - [anon_sym_COLON_QMARK] = ACTIONS(3071), - [anon_sym_COLON_DASH] = ACTIONS(3071), - [anon_sym_PERCENT] = ACTIONS(3071), - [anon_sym_DASH] = ACTIONS(3071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), - [anon_sym_BQUOTE] = ACTIONS(1927), - [anon_sym_LT_LPAREN] = ACTIONS(1927), - [anon_sym_GT_LPAREN] = ACTIONS(1927), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1929), - }, - [1621] = { - [sym_concatenation] = STATE(2287), - [sym_string] = STATE(2286), - [sym_simple_expansion] = STATE(2286), - [sym_string_expansion] = STATE(2286), - [sym_expansion] = STATE(2286), - [sym_command_substitution] = STATE(2286), - [sym_process_substitution] = STATE(2286), - [anon_sym_RBRACE] = ACTIONS(4841), - [sym__special_characters] = ACTIONS(4843), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(4845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4847), - }, - [1622] = { - [sym__concat] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1972), - [anon_sym_EQ] = ACTIONS(3081), - [sym__special_characters] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(3081), - [sym_raw_string] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(1972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), - [anon_sym_COLON] = ACTIONS(3081), - [anon_sym_COLON_QMARK] = ACTIONS(3081), - [anon_sym_COLON_DASH] = ACTIONS(3081), - [anon_sym_PERCENT] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1972), - [anon_sym_LT_LPAREN] = ACTIONS(1972), - [anon_sym_GT_LPAREN] = ACTIONS(1972), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1974), - }, - [1623] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4849), - }, - [1624] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4851), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1625] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(4853), - [sym_comment] = ACTIONS(56), - }, - [1626] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2293), - [anon_sym_RBRACE] = ACTIONS(4855), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4857), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1627] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2296), - [anon_sym_RBRACE] = ACTIONS(4859), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4861), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1628] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2298), - [anon_sym_RBRACE] = ACTIONS(4841), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4863), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1629] = { - [sym__concat] = ACTIONS(2026), - [anon_sym_RBRACE] = ACTIONS(2026), - [anon_sym_EQ] = ACTIONS(3099), - [sym__special_characters] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2026), - [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2026), - [anon_sym_POUND] = ACTIONS(2026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_COLON_QMARK] = ACTIONS(3099), - [anon_sym_COLON_DASH] = ACTIONS(3099), - [anon_sym_PERCENT] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), - [anon_sym_BQUOTE] = ACTIONS(2026), - [anon_sym_LT_LPAREN] = ACTIONS(2026), - [anon_sym_GT_LPAREN] = ACTIONS(2026), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2028), - }, - [1630] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4865), - }, - [1631] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4867), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1632] = { - [sym__concat] = ACTIONS(2034), - [anon_sym_RBRACE] = ACTIONS(2034), - [anon_sym_EQ] = ACTIONS(3105), - [sym__special_characters] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2034), - [anon_sym_DOLLAR] = ACTIONS(3105), - [sym_raw_string] = ACTIONS(2034), - [anon_sym_POUND] = ACTIONS(2034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), - [anon_sym_COLON] = ACTIONS(3105), - [anon_sym_COLON_QMARK] = ACTIONS(3105), - [anon_sym_COLON_DASH] = ACTIONS(3105), - [anon_sym_PERCENT] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), - [anon_sym_BQUOTE] = ACTIONS(2034), - [anon_sym_LT_LPAREN] = ACTIONS(2034), - [anon_sym_GT_LPAREN] = ACTIONS(2034), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2036), - }, - [1633] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4869), - }, - [1634] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4841), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1635] = { - [sym_file_descriptor] = ACTIONS(4871), - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [anon_sym_EQ_TILDE] = ACTIONS(4873), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_GT_GT] = ACTIONS(4873), - [anon_sym_AMP_GT] = ACTIONS(4873), - [anon_sym_AMP_GT_GT] = ACTIONS(4873), - [anon_sym_LT_AMP] = ACTIONS(4873), - [anon_sym_GT_AMP] = ACTIONS(4873), - [anon_sym_LT_LT] = ACTIONS(4873), - [anon_sym_LT_LT_DASH] = ACTIONS(4873), - [anon_sym_LT_LT_LT] = ACTIONS(4873), - [sym__special_characters] = ACTIONS(4873), - [anon_sym_DQUOTE] = ACTIONS(4873), - [anon_sym_DOLLAR] = ACTIONS(4873), - [sym_raw_string] = ACTIONS(4873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), - [anon_sym_BQUOTE] = ACTIONS(4873), - [anon_sym_LT_LPAREN] = ACTIONS(4873), - [anon_sym_GT_LPAREN] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [1636] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1637] = { - [sym__concat] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2196), - [anon_sym_EQ] = ACTIONS(3109), - [sym__special_characters] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_DOLLAR] = ACTIONS(3109), - [sym_raw_string] = ACTIONS(2196), - [anon_sym_POUND] = ACTIONS(2196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_COLON_QMARK] = ACTIONS(3109), - [anon_sym_COLON_DASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), - [anon_sym_BQUOTE] = ACTIONS(2196), - [anon_sym_LT_LPAREN] = ACTIONS(2196), - [anon_sym_GT_LPAREN] = ACTIONS(2196), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2198), - }, - [1638] = { - [sym__concat] = ACTIONS(2402), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_EQ] = ACTIONS(3111), - [sym__special_characters] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_DOLLAR] = ACTIONS(3111), - [sym_raw_string] = ACTIONS(2402), - [anon_sym_POUND] = ACTIONS(2402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_COLON] = ACTIONS(3111), - [anon_sym_COLON_QMARK] = ACTIONS(3111), - [anon_sym_COLON_DASH] = ACTIONS(3111), - [anon_sym_PERCENT] = ACTIONS(3111), - [anon_sym_DASH] = ACTIONS(3111), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), - [anon_sym_BQUOTE] = ACTIONS(2402), - [anon_sym_LT_LPAREN] = ACTIONS(2402), - [anon_sym_GT_LPAREN] = ACTIONS(2402), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2404), - }, - [1639] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(4877), - [sym_comment] = ACTIONS(56), - }, - [1640] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(4879), - [sym_comment] = ACTIONS(56), - }, - [1641] = { - [anon_sym_RBRACE] = ACTIONS(4879), - [sym_comment] = ACTIONS(56), - }, - [1642] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2306), - [anon_sym_RBRACE] = ACTIONS(4881), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1643] = { - [sym_file_descriptor] = ACTIONS(4883), - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = 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(4885), - [anon_sym_EQ_EQ] = ACTIONS(4885), - [anon_sym_LT] = ACTIONS(4885), - [anon_sym_GT] = ACTIONS(4885), - [anon_sym_GT_GT] = ACTIONS(4885), - [anon_sym_AMP_GT] = ACTIONS(4885), - [anon_sym_AMP_GT_GT] = ACTIONS(4885), - [anon_sym_LT_AMP] = ACTIONS(4885), - [anon_sym_GT_AMP] = ACTIONS(4885), - [anon_sym_LT_LT] = ACTIONS(4885), - [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(4885), - [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(182), - [sym_word] = ACTIONS(4885), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [1644] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2308), - [anon_sym_RBRACE] = ACTIONS(4887), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1645] = { - [sym_file_descriptor] = ACTIONS(4889), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [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(4891), - [anon_sym_AMP_GT] = ACTIONS(4891), - [anon_sym_AMP_GT_GT] = ACTIONS(4891), - [anon_sym_LT_AMP] = ACTIONS(4891), - [anon_sym_GT_AMP] = ACTIONS(4891), - [anon_sym_LT_LT] = ACTIONS(4891), - [anon_sym_LT_LT_DASH] = ACTIONS(4891), - [anon_sym_LT_LT_LT] = ACTIONS(4891), - [sym__special_characters] = ACTIONS(4891), - [anon_sym_DQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR] = ACTIONS(4891), - [sym_raw_string] = ACTIONS(4891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), - [anon_sym_BQUOTE] = ACTIONS(4891), - [anon_sym_LT_LPAREN] = ACTIONS(4891), - [anon_sym_GT_LPAREN] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4891), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [1646] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2310), - [anon_sym_RBRACE] = ACTIONS(4893), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1647] = { - [sym_file_descriptor] = ACTIONS(4895), - [sym__concat] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_SEMI_SEMI] = ACTIONS(4897), - [anon_sym_PIPE_AMP] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [anon_sym_EQ_TILDE] = ACTIONS(4897), - [anon_sym_EQ_EQ] = ACTIONS(4897), - [anon_sym_LT] = ACTIONS(4897), - [anon_sym_GT] = ACTIONS(4897), - [anon_sym_GT_GT] = ACTIONS(4897), - [anon_sym_AMP_GT] = ACTIONS(4897), - [anon_sym_AMP_GT_GT] = ACTIONS(4897), - [anon_sym_LT_AMP] = ACTIONS(4897), - [anon_sym_GT_AMP] = ACTIONS(4897), - [anon_sym_LT_LT] = ACTIONS(4897), - [anon_sym_LT_LT_DASH] = ACTIONS(4897), - [anon_sym_LT_LT_LT] = ACTIONS(4897), - [sym__special_characters] = ACTIONS(4897), - [anon_sym_DQUOTE] = ACTIONS(4897), - [anon_sym_DOLLAR] = ACTIONS(4897), - [sym_raw_string] = ACTIONS(4897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), - [anon_sym_BQUOTE] = ACTIONS(4897), - [anon_sym_LT_LPAREN] = ACTIONS(4897), - [anon_sym_GT_LPAREN] = ACTIONS(4897), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4897), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LF] = ACTIONS(4897), - [anon_sym_AMP] = ACTIONS(4897), - }, - [1648] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4899), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1649] = { - [sym_file_descriptor] = ACTIONS(4901), - [sym__concat] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(4903), - [anon_sym_SEMI_SEMI] = ACTIONS(4903), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [anon_sym_EQ_TILDE] = ACTIONS(4903), - [anon_sym_EQ_EQ] = ACTIONS(4903), - [anon_sym_LT] = ACTIONS(4903), - [anon_sym_GT] = ACTIONS(4903), - [anon_sym_GT_GT] = ACTIONS(4903), - [anon_sym_AMP_GT] = ACTIONS(4903), - [anon_sym_AMP_GT_GT] = ACTIONS(4903), - [anon_sym_LT_AMP] = ACTIONS(4903), - [anon_sym_GT_AMP] = ACTIONS(4903), - [anon_sym_LT_LT] = ACTIONS(4903), - [anon_sym_LT_LT_DASH] = ACTIONS(4903), - [anon_sym_LT_LT_LT] = ACTIONS(4903), - [sym__special_characters] = ACTIONS(4903), - [anon_sym_DQUOTE] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4903), - [sym_raw_string] = ACTIONS(4903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), - [anon_sym_BQUOTE] = ACTIONS(4903), - [anon_sym_LT_LPAREN] = ACTIONS(4903), - [anon_sym_GT_LPAREN] = ACTIONS(4903), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4903), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LF] = ACTIONS(4903), - [anon_sym_AMP] = ACTIONS(4903), - }, - [1650] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(4905), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1651] = { - [sym_file_descriptor] = ACTIONS(2563), - [sym_variable_name] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(4907), - [anon_sym_RPAREN] = ACTIONS(2563), - [anon_sym_PIPE_AMP] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [anon_sym_LT] = ACTIONS(4907), - [anon_sym_GT] = ACTIONS(4907), - [anon_sym_GT_GT] = ACTIONS(2563), - [anon_sym_AMP_GT] = ACTIONS(4907), - [anon_sym_AMP_GT_GT] = ACTIONS(2563), - [anon_sym_LT_AMP] = ACTIONS(2563), - [anon_sym_GT_AMP] = ACTIONS(2563), - [sym__special_characters] = ACTIONS(4907), - [anon_sym_DQUOTE] = ACTIONS(2563), - [anon_sym_DOLLAR] = ACTIONS(4907), - [sym_raw_string] = ACTIONS(2563), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2563), - [anon_sym_BQUOTE] = ACTIONS(2563), - [anon_sym_LT_LPAREN] = ACTIONS(2563), - [anon_sym_GT_LPAREN] = ACTIONS(2563), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4907), - }, - [1652] = { - [sym_concatenation] = STATE(661), - [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), - [aux_sym_for_statement_repeat1] = STATE(1273), - [anon_sym_RPAREN] = ACTIONS(4909), - [sym__special_characters] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1287), - [anon_sym_DOLLAR] = ACTIONS(1289), - [sym_raw_string] = ACTIONS(1291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), - [anon_sym_BQUOTE] = ACTIONS(1297), - [anon_sym_LT_LPAREN] = ACTIONS(1299), - [anon_sym_GT_LPAREN] = ACTIONS(1299), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1301), - }, - [1653] = { - [sym_string] = STATE(2314), - [sym_simple_expansion] = STATE(2314), - [sym_string_expansion] = STATE(2314), - [sym_expansion] = STATE(2314), - [sym_command_substitution] = STATE(2314), - [sym_process_substitution] = STATE(2314), - [sym__special_characters] = ACTIONS(4911), - [anon_sym_DQUOTE] = ACTIONS(2046), - [anon_sym_DOLLAR] = ACTIONS(2048), - [sym_raw_string] = ACTIONS(4913), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2052), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2054), - [anon_sym_BQUOTE] = ACTIONS(2056), - [anon_sym_LT_LPAREN] = ACTIONS(2058), - [anon_sym_GT_LPAREN] = ACTIONS(2058), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4911), - }, - [1654] = { - [aux_sym_concatenation_repeat1] = STATE(2315), - [sym_file_descriptor] = ACTIONS(790), - [sym__concat] = ACTIONS(3432), - [sym_variable_name] = ACTIONS(790), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [anon_sym_LT] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(1571), - [anon_sym_GT_GT] = ACTIONS(790), - [anon_sym_AMP_GT] = ACTIONS(1571), - [anon_sym_AMP_GT_GT] = ACTIONS(790), - [anon_sym_LT_AMP] = ACTIONS(790), - [anon_sym_GT_AMP] = ACTIONS(790), - [sym__special_characters] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(1571), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1571), - }, - [1655] = { - [sym_file_descriptor] = ACTIONS(794), - [sym__concat] = ACTIONS(794), - [sym_variable_name] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(794), - [anon_sym_AMP_GT] = ACTIONS(1573), - [anon_sym_AMP_GT_GT] = ACTIONS(794), - [anon_sym_LT_AMP] = ACTIONS(794), - [anon_sym_GT_AMP] = ACTIONS(794), - [sym__special_characters] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1573), - }, - [1656] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(4915), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1657] = { - [sym_file_descriptor] = ACTIONS(826), - [sym__concat] = ACTIONS(826), - [sym_variable_name] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1577), - [anon_sym_GT_GT] = ACTIONS(826), - [anon_sym_AMP_GT] = ACTIONS(1577), - [anon_sym_AMP_GT_GT] = ACTIONS(826), - [anon_sym_LT_AMP] = ACTIONS(826), - [anon_sym_GT_AMP] = ACTIONS(826), - [sym__special_characters] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1577), - }, - [1658] = { - [sym_file_descriptor] = ACTIONS(830), - [sym__concat] = ACTIONS(830), - [sym_variable_name] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_RPAREN] = ACTIONS(830), - [anon_sym_PIPE_AMP] = ACTIONS(830), - [anon_sym_AMP_AMP] = ACTIONS(830), - [anon_sym_PIPE_PIPE] = ACTIONS(830), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(830), - [anon_sym_AMP_GT] = ACTIONS(1579), - [anon_sym_AMP_GT_GT] = ACTIONS(830), - [anon_sym_LT_AMP] = ACTIONS(830), - [anon_sym_GT_AMP] = ACTIONS(830), - [sym__special_characters] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(1579), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1579), - }, - [1659] = { - [sym_file_descriptor] = ACTIONS(834), - [sym__concat] = ACTIONS(834), - [sym_variable_name] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1581), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_AMP_GT] = ACTIONS(1581), - [anon_sym_AMP_GT_GT] = ACTIONS(834), - [anon_sym_LT_AMP] = ACTIONS(834), - [anon_sym_GT_AMP] = ACTIONS(834), - [sym__special_characters] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(1581), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1581), - }, - [1660] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(4917), - [sym_comment] = ACTIONS(56), - }, - [1661] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2320), - [anon_sym_RBRACE] = ACTIONS(4919), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4921), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1662] = { - [sym_subscript] = STATE(2324), - [sym_variable_name] = ACTIONS(4923), - [anon_sym_DOLLAR] = ACTIONS(4925), - [anon_sym_DASH] = ACTIONS(4925), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4927), - [anon_sym_STAR] = ACTIONS(4925), - [anon_sym_AT] = ACTIONS(4925), - [anon_sym_QMARK] = ACTIONS(4925), - [anon_sym_0] = ACTIONS(4929), - [anon_sym__] = ACTIONS(4929), - }, - [1663] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2327), - [anon_sym_RBRACE] = ACTIONS(4931), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4933), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1664] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2330), - [anon_sym_RBRACE] = ACTIONS(4935), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(4937), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1665] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4939), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1666] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4939), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1667] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(4939), - [sym_comment] = ACTIONS(56), - }, - [1668] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(4939), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1669] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4941), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1670] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(4941), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1671] = { - [sym_concatenation] = STATE(689), - [sym_string] = STATE(684), - [sym_simple_expansion] = STATE(684), - [sym_string_expansion] = STATE(684), - [sym_expansion] = STATE(684), - [sym_command_substitution] = STATE(684), - [sym_process_substitution] = STATE(684), - [aux_sym_for_statement_repeat1] = STATE(1312), - [anon_sym_SEMI_SEMI] = ACTIONS(4943), - [sym__special_characters] = ACTIONS(2659), - [anon_sym_DQUOTE] = ACTIONS(2661), - [anon_sym_DOLLAR] = ACTIONS(2663), - [sym_raw_string] = ACTIONS(2665), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2669), - [anon_sym_BQUOTE] = ACTIONS(2671), - [anon_sym_LT_LPAREN] = ACTIONS(2673), - [anon_sym_GT_LPAREN] = ACTIONS(2673), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2665), - [anon_sym_SEMI] = ACTIONS(4943), - [anon_sym_LF] = ACTIONS(4943), - [anon_sym_AMP] = ACTIONS(4943), - }, - [1672] = { - [sym__terminated_statement] = STATE(694), - [sym_for_statement] = STATE(695), - [sym_while_statement] = STATE(695), - [sym_if_statement] = STATE(695), - [sym_case_statement] = STATE(695), - [sym_function_definition] = STATE(695), - [sym_subshell] = STATE(695), - [sym_pipeline] = STATE(695), - [sym_list] = STATE(695), - [sym_command] = STATE(695), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(695), - [sym_variable_assignment] = STATE(696), - [sym_declaration_command] = STATE(695), - [sym_unset_command] = STATE(695), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2335), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(4945), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [1673] = { - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_RPAREN] = ACTIONS(4949), - [anon_sym_PIPE_AMP] = ACTIONS(4949), - [anon_sym_AMP_AMP] = ACTIONS(4949), - [anon_sym_PIPE_PIPE] = ACTIONS(4949), - [anon_sym_BQUOTE] = ACTIONS(4949), - [sym_comment] = ACTIONS(56), - }, - [1674] = { - [sym_file_descriptor] = ACTIONS(2679), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(2679), - [anon_sym_PIPE_AMP] = ACTIONS(2679), - [anon_sym_AMP_AMP] = ACTIONS(2679), - [anon_sym_PIPE_PIPE] = ACTIONS(2679), - [anon_sym_LT] = ACTIONS(4951), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_GT_GT] = ACTIONS(2679), - [anon_sym_AMP_GT] = ACTIONS(4951), - [anon_sym_AMP_GT_GT] = ACTIONS(2679), - [anon_sym_LT_AMP] = ACTIONS(2679), - [anon_sym_GT_AMP] = ACTIONS(2679), - [anon_sym_LT_LT] = ACTIONS(4951), - [anon_sym_LT_LT_DASH] = ACTIONS(2679), - [anon_sym_LT_LT_LT] = ACTIONS(2679), - [anon_sym_BQUOTE] = ACTIONS(2679), - [sym_comment] = ACTIONS(56), - }, - [1675] = { - [sym__terminated_statement] = STATE(694), - [sym_for_statement] = STATE(695), - [sym_while_statement] = STATE(695), - [sym_if_statement] = STATE(695), - [sym_case_statement] = STATE(695), - [sym_function_definition] = STATE(695), - [sym_subshell] = STATE(695), - [sym_pipeline] = STATE(695), - [sym_list] = STATE(695), - [sym_command] = STATE(695), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(695), - [sym_variable_assignment] = STATE(696), - [sym_declaration_command] = STATE(695), - [sym_unset_command] = STATE(695), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1317), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(4953), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [1676] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [aux_sym_while_statement_repeat1] = STATE(1105), - [sym_file_descriptor] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_PIPE_AMP] = ACTIONS(4957), - [anon_sym_AMP_AMP] = ACTIONS(4957), - [anon_sym_PIPE_PIPE] = ACTIONS(4957), - [anon_sym_LT] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_GT_GT] = ACTIONS(992), - [anon_sym_AMP_GT] = ACTIONS(990), - [anon_sym_AMP_GT_GT] = ACTIONS(992), - [anon_sym_LT_AMP] = ACTIONS(992), - [anon_sym_GT_AMP] = ACTIONS(992), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(998), - [sym_comment] = ACTIONS(56), - }, - [1677] = { - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_RPAREN] = ACTIONS(4961), - [anon_sym_PIPE_AMP] = ACTIONS(4961), - [anon_sym_AMP_AMP] = ACTIONS(4961), - [anon_sym_PIPE_PIPE] = ACTIONS(4961), - [anon_sym_BQUOTE] = ACTIONS(4961), - [sym_comment] = ACTIONS(56), - }, - [1678] = { - [anon_sym_fi] = ACTIONS(4963), - [sym_comment] = ACTIONS(56), - }, - [1679] = { - [sym__terminated_statement] = STATE(702), - [sym_for_statement] = STATE(703), - [sym_while_statement] = STATE(703), - [sym_if_statement] = STATE(703), - [sym_elif_clause] = STATE(704), - [sym_else_clause] = STATE(2338), - [sym_case_statement] = STATE(703), - [sym_function_definition] = STATE(703), - [sym_subshell] = STATE(703), - [sym_pipeline] = STATE(703), - [sym_list] = STATE(703), - [sym_command] = STATE(703), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(703), - [sym_variable_assignment] = STATE(706), - [sym_declaration_command] = STATE(703), - [sym_unset_command] = STATE(703), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1326), - [aux_sym_if_statement_repeat1] = STATE(2339), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(4965), - [anon_sym_elif] = ACTIONS(1355), - [anon_sym_else] = ACTIONS(1357), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [1680] = { - [sym_elif_clause] = STATE(704), - [sym_else_clause] = STATE(2338), - [aux_sym_if_statement_repeat1] = STATE(1328), - [anon_sym_fi] = ACTIONS(4963), - [anon_sym_elif] = ACTIONS(2701), - [anon_sym_else] = ACTIONS(2703), - [sym_comment] = ACTIONS(56), - }, - [1681] = { - [sym_case_item] = STATE(1338), - [sym_last_case_item] = STATE(2341), - [sym_concatenation] = STATE(1340), - [sym_string] = STATE(1333), - [sym_simple_expansion] = STATE(1333), - [sym_string_expansion] = STATE(1333), - [sym_expansion] = STATE(1333), - [sym_command_substitution] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_case_statement_repeat1] = STATE(2342), - [anon_sym_esac] = ACTIONS(4967), - [sym__special_characters] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2711), - [sym_raw_string] = ACTIONS(2713), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), - [anon_sym_BQUOTE] = ACTIONS(2719), - [anon_sym_LT_LPAREN] = ACTIONS(2721), - [anon_sym_GT_LPAREN] = ACTIONS(2721), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2723), - }, - [1682] = { - [anon_sym_SEMI_SEMI] = ACTIONS(4969), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4969), - [anon_sym_LF] = ACTIONS(4969), - [anon_sym_AMP] = ACTIONS(4969), - }, - [1683] = { - [sym_case_item] = STATE(1338), - [sym_last_case_item] = STATE(2345), - [sym_concatenation] = STATE(1340), - [sym_string] = STATE(1333), - [sym_simple_expansion] = STATE(1333), - [sym_string_expansion] = STATE(1333), - [sym_expansion] = STATE(1333), - [sym_command_substitution] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_case_statement_repeat1] = STATE(2346), - [anon_sym_esac] = ACTIONS(4971), - [sym__special_characters] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2711), - [sym_raw_string] = ACTIONS(2713), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), - [anon_sym_BQUOTE] = ACTIONS(2719), - [anon_sym_LT_LPAREN] = ACTIONS(2721), - [anon_sym_GT_LPAREN] = ACTIONS(2721), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2723), - }, - [1684] = { - [anon_sym_SEMI_SEMI] = ACTIONS(4973), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4973), - [anon_sym_LF] = ACTIONS(4973), - [anon_sym_AMP] = ACTIONS(4973), - }, - [1685] = { - [sym_compound_statement] = STATE(2348), - [anon_sym_LBRACE] = ACTIONS(2082), - [sym_comment] = ACTIONS(56), - }, - [1686] = { - [sym_file_descriptor] = ACTIONS(2764), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_RPAREN] = ACTIONS(2764), - [anon_sym_PIPE_AMP] = ACTIONS(2764), - [anon_sym_AMP_AMP] = ACTIONS(2764), - [anon_sym_PIPE_PIPE] = ACTIONS(2764), - [anon_sym_LT] = ACTIONS(4975), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_GT_GT] = ACTIONS(2764), - [anon_sym_AMP_GT] = ACTIONS(4975), - [anon_sym_AMP_GT_GT] = ACTIONS(2764), - [anon_sym_LT_AMP] = ACTIONS(2764), - [anon_sym_GT_AMP] = ACTIONS(2764), - [anon_sym_BQUOTE] = ACTIONS(2764), - [sym_comment] = ACTIONS(56), - }, - [1687] = { - [sym__terminated_statement] = STATE(734), - [sym_for_statement] = STATE(735), - [sym_while_statement] = STATE(735), - [sym_if_statement] = STATE(735), - [sym_case_statement] = STATE(735), - [sym_function_definition] = STATE(735), - [sym_subshell] = STATE(735), - [sym_pipeline] = STATE(735), - [sym_list] = STATE(735), - [sym_command] = STATE(735), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(735), - [sym_variable_assignment] = STATE(736), - [sym_declaration_command] = STATE(735), - [sym_unset_command] = STATE(735), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1368), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(4977), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [1688] = { - [anon_sym_LT] = ACTIONS(4979), - [anon_sym_GT] = ACTIONS(4979), - [anon_sym_GT_GT] = ACTIONS(4981), - [anon_sym_AMP_GT] = ACTIONS(4979), - [anon_sym_AMP_GT_GT] = ACTIONS(4981), - [anon_sym_LT_AMP] = ACTIONS(4981), - [anon_sym_GT_AMP] = ACTIONS(4981), - [sym_comment] = ACTIONS(56), - }, - [1689] = { - [sym_concatenation] = STATE(2359), - [sym_string] = STATE(2354), - [sym_simple_expansion] = STATE(2354), - [sym_string_expansion] = STATE(2354), - [sym_expansion] = STATE(2354), - [sym_command_substitution] = STATE(2354), - [sym_process_substitution] = STATE(2354), - [sym__special_characters] = ACTIONS(4983), - [anon_sym_DQUOTE] = ACTIONS(4985), - [anon_sym_DOLLAR] = ACTIONS(4987), - [sym_raw_string] = ACTIONS(4989), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4991), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4993), - [anon_sym_BQUOTE] = ACTIONS(4995), - [anon_sym_LT_LPAREN] = ACTIONS(4997), - [anon_sym_GT_LPAREN] = ACTIONS(4997), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4999), - }, - [1690] = { - [anon_sym_PIPE] = ACTIONS(5001), - [anon_sym_RPAREN] = ACTIONS(5003), + [aux_sym_while_statement_repeat1] = STATE(2369), + [aux_sym_command_repeat2] = STATE(2370), + [sym_file_descriptor] = ACTIONS(5013), + [anon_sym_esac] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_SEMI_SEMI] = ACTIONS(968), + [anon_sym_PIPE_AMP] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_PIPE_PIPE] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(5015), + [anon_sym_EQ_EQ] = ACTIONS(5015), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_GT_GT] = ACTIONS(5017), + [anon_sym_AMP_GT] = ACTIONS(5017), + [anon_sym_AMP_GT_GT] = ACTIONS(5017), + [anon_sym_LT_AMP] = ACTIONS(5017), + [anon_sym_GT_AMP] = ACTIONS(5017), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(5019), + [sym__special_characters] = ACTIONS(5021), + [anon_sym_DQUOTE] = ACTIONS(5023), + [anon_sym_DOLLAR] = ACTIONS(4264), + [sym_raw_string] = ACTIONS(5025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5029), + [anon_sym_BQUOTE] = ACTIONS(5031), + [anon_sym_LT_LPAREN] = ACTIONS(5033), + [anon_sym_GT_LPAREN] = ACTIONS(5033), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5025), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_LF] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(968), + }, + [2138] = { + [anon_sym_esac] = ACTIONS(5474), + [sym__special_characters] = ACTIONS(5478), + [anon_sym_DQUOTE] = ACTIONS(5478), + [anon_sym_DOLLAR] = ACTIONS(5476), + [sym_raw_string] = ACTIONS(5478), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5478), + [anon_sym_BQUOTE] = ACTIONS(5478), + [anon_sym_LT_LPAREN] = ACTIONS(5478), + [anon_sym_GT_LPAREN] = ACTIONS(5478), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5476), + }, + [2139] = { + [anon_sym_esac] = ACTIONS(5474), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_SEMI_SEMI] = ACTIONS(5510), [anon_sym_PIPE_AMP] = ACTIONS(5003), - [anon_sym_AMP_AMP] = ACTIONS(5003), - [anon_sym_PIPE_PIPE] = ACTIONS(5003), - [anon_sym_BQUOTE] = ACTIONS(5003), - [sym_comment] = ACTIONS(56), - }, - [1691] = { - [anon_sym_PIPE] = ACTIONS(5005), - [anon_sym_RPAREN] = ACTIONS(5007), - [anon_sym_PIPE_AMP] = ACTIONS(5007), [anon_sym_AMP_AMP] = ACTIONS(5007), [anon_sym_PIPE_PIPE] = ACTIONS(5007), - [anon_sym_BQUOTE] = ACTIONS(5007), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(5009), + [anon_sym_LF] = ACTIONS(5011), + [anon_sym_AMP] = ACTIONS(5009), }, - [1692] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_RPAREN] = ACTIONS(5009), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1104), - [sym_raw_string] = ACTIONS(1102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), - [anon_sym_BQUOTE] = ACTIONS(1102), - [anon_sym_LT_LPAREN] = ACTIONS(1102), - [anon_sym_GT_LPAREN] = ACTIONS(1102), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1106), - }, - [1693] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [aux_sym_while_statement_repeat1] = STATE(1105), - [sym_file_descriptor] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5013), - [anon_sym_PIPE_AMP] = ACTIONS(5013), - [anon_sym_AMP_AMP] = ACTIONS(5013), - [anon_sym_PIPE_PIPE] = ACTIONS(5013), - [anon_sym_LT] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_GT_GT] = ACTIONS(992), - [anon_sym_AMP_GT] = ACTIONS(990), - [anon_sym_AMP_GT_GT] = ACTIONS(992), - [anon_sym_LT_AMP] = ACTIONS(992), - [anon_sym_GT_AMP] = ACTIONS(992), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(998), - [sym_comment] = ACTIONS(56), - }, - [1694] = { - [sym_variable_name] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(3428), - [anon_sym_RPAREN] = ACTIONS(1279), - [anon_sym_PIPE_AMP] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [sym__special_characters] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(3428), - [sym_raw_string] = ACTIONS(1279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), - [anon_sym_BQUOTE] = ACTIONS(1279), - [anon_sym_LT_LPAREN] = ACTIONS(1279), - [anon_sym_GT_LPAREN] = ACTIONS(1279), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3428), - [sym_word] = ACTIONS(1281), - }, - [1695] = { - [sym_concatenation] = STATE(661), - [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), - [aux_sym_for_statement_repeat1] = STATE(2362), - [anon_sym_RPAREN] = ACTIONS(5015), - [sym__special_characters] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1287), - [anon_sym_DOLLAR] = ACTIONS(1289), - [sym_raw_string] = ACTIONS(1291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), - [anon_sym_BQUOTE] = ACTIONS(1297), - [anon_sym_LT_LPAREN] = ACTIONS(1299), - [anon_sym_GT_LPAREN] = ACTIONS(1299), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1301), - }, - [1696] = { - [aux_sym_concatenation_repeat1] = STATE(1025), - [sym__concat] = ACTIONS(2092), - [sym_variable_name] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(3434), - [anon_sym_RPAREN] = ACTIONS(1303), - [anon_sym_PIPE_AMP] = ACTIONS(1303), - [anon_sym_AMP_AMP] = ACTIONS(1303), - [anon_sym_PIPE_PIPE] = ACTIONS(1303), - [sym__special_characters] = ACTIONS(3434), - [anon_sym_DQUOTE] = ACTIONS(1303), - [anon_sym_DOLLAR] = ACTIONS(3434), - [sym_raw_string] = ACTIONS(1303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1303), - [anon_sym_BQUOTE] = ACTIONS(1303), - [anon_sym_LT_LPAREN] = ACTIONS(1303), - [anon_sym_GT_LPAREN] = ACTIONS(1303), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3434), - [sym_word] = ACTIONS(1307), - }, - [1697] = { - [aux_sym_concatenation_repeat1] = STATE(1025), - [sym__concat] = ACTIONS(2092), - [sym_variable_name] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(3428), - [anon_sym_RPAREN] = ACTIONS(1279), - [anon_sym_PIPE_AMP] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [sym__special_characters] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(3428), - [sym_raw_string] = ACTIONS(1279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), - [anon_sym_BQUOTE] = ACTIONS(1279), - [anon_sym_LT_LPAREN] = ACTIONS(1279), - [anon_sym_GT_LPAREN] = ACTIONS(1279), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3428), - [sym_word] = ACTIONS(1281), - }, - [1698] = { - [sym__concat] = ACTIONS(1890), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_RPAREN] = ACTIONS(1890), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3066), - [sym_word] = ACTIONS(1892), - }, - [1699] = { - [aux_sym_concatenation_repeat1] = STATE(1699), - [sym__concat] = ACTIONS(5017), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_RPAREN] = ACTIONS(1890), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3066), - [sym_word] = ACTIONS(1892), - }, - [1700] = { - [sym__concat] = ACTIONS(1927), - [sym_variable_name] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_PIPE_AMP] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), - [anon_sym_BQUOTE] = ACTIONS(1927), - [anon_sym_LT_LPAREN] = ACTIONS(1927), - [anon_sym_GT_LPAREN] = ACTIONS(1927), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3071), - [sym_word] = ACTIONS(1929), - }, - [1701] = { - [sym_concatenation] = STATE(2366), - [sym_string] = STATE(2365), - [sym_simple_expansion] = STATE(2365), - [sym_string_expansion] = STATE(2365), - [sym_expansion] = STATE(2365), - [sym_command_substitution] = STATE(2365), - [sym_process_substitution] = STATE(2365), - [anon_sym_RBRACE] = ACTIONS(5020), - [sym__special_characters] = ACTIONS(5022), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(5024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5026), - }, - [1702] = { - [sym__concat] = ACTIONS(1972), - [sym_variable_name] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [sym__special_characters] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(3081), - [sym_raw_string] = ACTIONS(1972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1972), - [anon_sym_LT_LPAREN] = ACTIONS(1972), - [anon_sym_GT_LPAREN] = ACTIONS(1972), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3081), - [sym_word] = ACTIONS(1974), - }, - [1703] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5028), - }, - [1704] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5030), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1705] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(5032), - [sym_comment] = ACTIONS(56), - }, - [1706] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2372), - [anon_sym_RBRACE] = ACTIONS(5034), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5036), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1707] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2375), - [anon_sym_RBRACE] = ACTIONS(5038), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5040), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1708] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2377), - [anon_sym_RBRACE] = ACTIONS(5020), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5042), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1709] = { - [sym__concat] = ACTIONS(2026), - [sym_variable_name] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(2026), - [anon_sym_PIPE_AMP] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [sym__special_characters] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(2026), - [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), - [anon_sym_BQUOTE] = ACTIONS(2026), - [anon_sym_LT_LPAREN] = ACTIONS(2026), - [anon_sym_GT_LPAREN] = ACTIONS(2026), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3099), - [sym_word] = ACTIONS(2028), - }, - [1710] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5044), - }, - [1711] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5046), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1712] = { - [sym__concat] = ACTIONS(2034), - [sym_variable_name] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_RPAREN] = ACTIONS(2034), - [anon_sym_PIPE_AMP] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [sym__special_characters] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(2034), - [anon_sym_DOLLAR] = ACTIONS(3105), - [sym_raw_string] = ACTIONS(2034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), - [anon_sym_BQUOTE] = ACTIONS(2034), - [anon_sym_LT_LPAREN] = ACTIONS(2034), - [anon_sym_GT_LPAREN] = ACTIONS(2034), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3105), - [sym_word] = ACTIONS(2036), - }, - [1713] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5048), - }, - [1714] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5020), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1715] = { - [sym__concat] = ACTIONS(2196), - [sym_variable_name] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_RPAREN] = ACTIONS(2196), - [anon_sym_PIPE_AMP] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [sym__special_characters] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_DOLLAR] = ACTIONS(3109), - [sym_raw_string] = ACTIONS(2196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), - [anon_sym_BQUOTE] = ACTIONS(2196), - [anon_sym_LT_LPAREN] = ACTIONS(2196), - [anon_sym_GT_LPAREN] = ACTIONS(2196), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3109), - [sym_word] = ACTIONS(2198), - }, - [1716] = { - [sym__concat] = ACTIONS(2402), - [sym_variable_name] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_RPAREN] = ACTIONS(2402), - [anon_sym_PIPE_AMP] = ACTIONS(2402), - [anon_sym_AMP_AMP] = ACTIONS(2402), - [anon_sym_PIPE_PIPE] = ACTIONS(2402), - [sym__special_characters] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_DOLLAR] = ACTIONS(3111), - [sym_raw_string] = ACTIONS(2402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), - [anon_sym_BQUOTE] = ACTIONS(2402), - [anon_sym_LT_LPAREN] = ACTIONS(2402), - [anon_sym_GT_LPAREN] = ACTIONS(2402), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3111), - [sym_word] = ACTIONS(2404), - }, - [1717] = { - [sym__concat] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_RPAREN] = ACTIONS(1890), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3066), - [sym_word] = ACTIONS(1892), - }, - [1718] = { - [aux_sym_concatenation_repeat1] = STATE(1718), - [sym__concat] = ACTIONS(5050), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_RPAREN] = ACTIONS(1890), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3066), - [sym_word] = ACTIONS(1892), - }, - [1719] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_PIPE_AMP] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), - [anon_sym_BQUOTE] = ACTIONS(1927), - [anon_sym_LT_LPAREN] = ACTIONS(1927), - [anon_sym_GT_LPAREN] = ACTIONS(1927), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3071), - [sym_word] = ACTIONS(1929), - }, - [1720] = { - [sym_concatenation] = STATE(2384), - [sym_string] = STATE(2383), - [sym_simple_expansion] = STATE(2383), - [sym_string_expansion] = STATE(2383), - [sym_expansion] = STATE(2383), - [sym_command_substitution] = STATE(2383), - [sym_process_substitution] = STATE(2383), - [anon_sym_RBRACE] = ACTIONS(5053), - [sym__special_characters] = ACTIONS(5055), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(5057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5059), - }, - [1721] = { - [sym__concat] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [sym__special_characters] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(3081), - [sym_raw_string] = ACTIONS(1972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1972), - [anon_sym_LT_LPAREN] = ACTIONS(1972), - [anon_sym_GT_LPAREN] = ACTIONS(1972), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3081), - [sym_word] = ACTIONS(1974), - }, - [1722] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5061), - }, - [1723] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1724] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(5065), - [sym_comment] = ACTIONS(56), - }, - [1725] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2390), - [anon_sym_RBRACE] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5069), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1726] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2393), - [anon_sym_RBRACE] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5073), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1727] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2395), - [anon_sym_RBRACE] = ACTIONS(5053), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5075), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1728] = { - [sym__concat] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(2026), - [anon_sym_PIPE_AMP] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [sym__special_characters] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(2026), - [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), - [anon_sym_BQUOTE] = ACTIONS(2026), - [anon_sym_LT_LPAREN] = ACTIONS(2026), - [anon_sym_GT_LPAREN] = ACTIONS(2026), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3099), - [sym_word] = ACTIONS(2028), - }, - [1729] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5077), - }, - [1730] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1731] = { - [sym__concat] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_RPAREN] = ACTIONS(2034), - [anon_sym_PIPE_AMP] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [sym__special_characters] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(2034), - [anon_sym_DOLLAR] = ACTIONS(3105), - [sym_raw_string] = ACTIONS(2034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), - [anon_sym_BQUOTE] = ACTIONS(2034), - [anon_sym_LT_LPAREN] = ACTIONS(2034), - [anon_sym_GT_LPAREN] = ACTIONS(2034), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3105), - [sym_word] = ACTIONS(2036), - }, - [1732] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5081), - }, - [1733] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5053), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1734] = { - [sym__concat] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_RPAREN] = ACTIONS(2196), - [anon_sym_PIPE_AMP] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [sym__special_characters] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_DOLLAR] = ACTIONS(3109), - [sym_raw_string] = ACTIONS(2196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), - [anon_sym_BQUOTE] = ACTIONS(2196), - [anon_sym_LT_LPAREN] = ACTIONS(2196), - [anon_sym_GT_LPAREN] = ACTIONS(2196), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3109), - [sym_word] = ACTIONS(2198), - }, - [1735] = { - [sym__concat] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_RPAREN] = ACTIONS(2402), - [anon_sym_PIPE_AMP] = ACTIONS(2402), - [anon_sym_AMP_AMP] = ACTIONS(2402), - [anon_sym_PIPE_PIPE] = ACTIONS(2402), - [sym__special_characters] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_DOLLAR] = ACTIONS(3111), - [sym_raw_string] = ACTIONS(2402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), - [anon_sym_BQUOTE] = ACTIONS(2402), - [anon_sym_LT_LPAREN] = ACTIONS(2402), - [anon_sym_GT_LPAREN] = ACTIONS(2402), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3111), - [sym_word] = ACTIONS(2404), - }, - [1736] = { - [sym_file_descriptor] = ACTIONS(3293), - [sym__concat] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(4614), - [anon_sym_RPAREN] = ACTIONS(3293), - [anon_sym_PIPE_AMP] = ACTIONS(3293), - [anon_sym_AMP_AMP] = ACTIONS(3293), - [anon_sym_PIPE_PIPE] = ACTIONS(3293), - [anon_sym_EQ_TILDE] = ACTIONS(4614), - [anon_sym_EQ_EQ] = ACTIONS(4614), - [anon_sym_LT] = ACTIONS(4614), - [anon_sym_GT] = ACTIONS(4614), - [anon_sym_GT_GT] = ACTIONS(3293), - [anon_sym_AMP_GT] = ACTIONS(4614), - [anon_sym_AMP_GT_GT] = ACTIONS(3293), - [anon_sym_LT_AMP] = ACTIONS(3293), - [anon_sym_GT_AMP] = ACTIONS(3293), - [anon_sym_LT_LT] = ACTIONS(4614), - [anon_sym_LT_LT_DASH] = ACTIONS(3293), - [anon_sym_LT_LT_LT] = ACTIONS(3293), - [sym__special_characters] = ACTIONS(4614), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_DOLLAR] = ACTIONS(4614), - [sym_raw_string] = ACTIONS(3293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), - [anon_sym_BQUOTE] = ACTIONS(3293), - [anon_sym_LT_LPAREN] = ACTIONS(3293), - [anon_sym_GT_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3295), - }, - [1737] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5083), - [sym_comment] = ACTIONS(56), - }, - [1738] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5085), - [sym_comment] = ACTIONS(56), - }, - [1739] = { - [anon_sym_RBRACE] = ACTIONS(5085), - [sym_comment] = ACTIONS(56), - }, - [1740] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2402), - [anon_sym_RBRACE] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1741] = { - [sym_file_descriptor] = ACTIONS(3357), - [sym__concat] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(4622), - [anon_sym_RPAREN] = ACTIONS(3357), - [anon_sym_PIPE_AMP] = ACTIONS(3357), - [anon_sym_AMP_AMP] = ACTIONS(3357), - [anon_sym_PIPE_PIPE] = ACTIONS(3357), - [anon_sym_EQ_TILDE] = ACTIONS(4622), - [anon_sym_EQ_EQ] = ACTIONS(4622), - [anon_sym_LT] = ACTIONS(4622), - [anon_sym_GT] = ACTIONS(4622), - [anon_sym_GT_GT] = ACTIONS(3357), - [anon_sym_AMP_GT] = ACTIONS(4622), - [anon_sym_AMP_GT_GT] = ACTIONS(3357), - [anon_sym_LT_AMP] = ACTIONS(3357), - [anon_sym_GT_AMP] = ACTIONS(3357), - [anon_sym_LT_LT] = ACTIONS(4622), - [anon_sym_LT_LT_DASH] = ACTIONS(3357), - [anon_sym_LT_LT_LT] = ACTIONS(3357), - [sym__special_characters] = ACTIONS(4622), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_DOLLAR] = ACTIONS(4622), - [sym_raw_string] = ACTIONS(3357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), - [anon_sym_BQUOTE] = ACTIONS(3357), - [anon_sym_LT_LPAREN] = ACTIONS(3357), - [anon_sym_GT_LPAREN] = ACTIONS(3357), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3359), - }, - [1742] = { - [sym_concatenation] = STATE(2405), - [sym_string] = STATE(2404), - [sym_simple_expansion] = STATE(2404), - [sym_string_expansion] = STATE(2404), - [sym_expansion] = STATE(2404), - [sym_command_substitution] = STATE(2404), - [sym_process_substitution] = STATE(2404), - [anon_sym_RBRACE] = ACTIONS(5085), - [sym__special_characters] = ACTIONS(5089), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(5091), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5093), - }, - [1743] = { - [sym_file_descriptor] = ACTIONS(3402), - [sym__concat] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(4630), - [anon_sym_RPAREN] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [anon_sym_EQ_TILDE] = ACTIONS(4630), - [anon_sym_EQ_EQ] = ACTIONS(4630), - [anon_sym_LT] = ACTIONS(4630), - [anon_sym_GT] = ACTIONS(4630), - [anon_sym_GT_GT] = ACTIONS(3402), - [anon_sym_AMP_GT] = ACTIONS(4630), - [anon_sym_AMP_GT_GT] = ACTIONS(3402), - [anon_sym_LT_AMP] = ACTIONS(3402), - [anon_sym_GT_AMP] = ACTIONS(3402), - [anon_sym_LT_LT] = ACTIONS(4630), - [anon_sym_LT_LT_DASH] = ACTIONS(3402), - [anon_sym_LT_LT_LT] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(4630), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(4630), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3404), - }, - [1744] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5095), - }, - [1745] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5097), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1746] = { - [sym_file_descriptor] = ACTIONS(3410), - [sym__concat] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(4636), - [anon_sym_RPAREN] = ACTIONS(3410), - [anon_sym_PIPE_AMP] = ACTIONS(3410), - [anon_sym_AMP_AMP] = ACTIONS(3410), - [anon_sym_PIPE_PIPE] = ACTIONS(3410), - [anon_sym_EQ_TILDE] = ACTIONS(4636), - [anon_sym_EQ_EQ] = ACTIONS(4636), - [anon_sym_LT] = ACTIONS(4636), - [anon_sym_GT] = ACTIONS(4636), - [anon_sym_GT_GT] = ACTIONS(3410), - [anon_sym_AMP_GT] = ACTIONS(4636), - [anon_sym_AMP_GT_GT] = ACTIONS(3410), - [anon_sym_LT_AMP] = ACTIONS(3410), - [anon_sym_GT_AMP] = ACTIONS(3410), - [anon_sym_LT_LT] = ACTIONS(4636), - [anon_sym_LT_LT_DASH] = ACTIONS(3410), - [anon_sym_LT_LT_LT] = ACTIONS(3410), - [sym__special_characters] = ACTIONS(4636), - [anon_sym_DQUOTE] = ACTIONS(3410), - [anon_sym_DOLLAR] = ACTIONS(4636), - [sym_raw_string] = ACTIONS(3410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), - [anon_sym_BQUOTE] = ACTIONS(3410), - [anon_sym_LT_LPAREN] = ACTIONS(3410), - [anon_sym_GT_LPAREN] = ACTIONS(3410), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3412), - }, - [1747] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5099), - }, - [1748] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5101), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1749] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5103), - }, - [1750] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5085), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1751] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2412), - [anon_sym_RBRACE] = ACTIONS(5105), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1752] = { - [sym_file_descriptor] = ACTIONS(3422), - [sym__concat] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(4646), - [anon_sym_RPAREN] = ACTIONS(3422), - [anon_sym_PIPE_AMP] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_EQ_TILDE] = ACTIONS(4646), - [anon_sym_EQ_EQ] = ACTIONS(4646), - [anon_sym_LT] = ACTIONS(4646), - [anon_sym_GT] = ACTIONS(4646), - [anon_sym_GT_GT] = ACTIONS(3422), - [anon_sym_AMP_GT] = ACTIONS(4646), - [anon_sym_AMP_GT_GT] = ACTIONS(3422), - [anon_sym_LT_AMP] = ACTIONS(3422), - [anon_sym_GT_AMP] = ACTIONS(3422), - [anon_sym_LT_LT] = ACTIONS(4646), - [anon_sym_LT_LT_DASH] = ACTIONS(3422), - [anon_sym_LT_LT_LT] = ACTIONS(3422), - [sym__special_characters] = ACTIONS(4646), - [anon_sym_DQUOTE] = ACTIONS(3422), - [anon_sym_DOLLAR] = ACTIONS(4646), - [sym_raw_string] = ACTIONS(3422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), - [anon_sym_BQUOTE] = ACTIONS(3422), - [anon_sym_LT_LPAREN] = ACTIONS(3422), - [anon_sym_GT_LPAREN] = ACTIONS(3422), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3424), - }, - [1753] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2414), - [anon_sym_RBRACE] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1754] = { - [sym_file_redirect] = STATE(2415), - [sym_file_descriptor] = ACTIONS(3478), - [anon_sym_PIPE] = ACTIONS(5001), - [anon_sym_RPAREN] = ACTIONS(5003), + [2140] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_esac] = ACTIONS(5474), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_SEMI_SEMI] = ACTIONS(5510), [anon_sym_PIPE_AMP] = ACTIONS(5003), - [anon_sym_AMP_AMP] = ACTIONS(5003), - [anon_sym_PIPE_PIPE] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(3484), - [anon_sym_GT] = ACTIONS(3484), - [anon_sym_GT_GT] = ACTIONS(3486), - [anon_sym_AMP_GT] = ACTIONS(3484), - [anon_sym_AMP_GT_GT] = ACTIONS(3486), - [anon_sym_LT_AMP] = ACTIONS(3486), - [anon_sym_GT_AMP] = ACTIONS(3486), - [sym_comment] = ACTIONS(56), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(5009), + [anon_sym_LF] = ACTIONS(5011), + [anon_sym_AMP] = ACTIONS(5009), }, - [1755] = { - [aux_sym_concatenation_repeat1] = STATE(1759), - [sym_file_descriptor] = ACTIONS(1241), - [sym__concat] = ACTIONS(3692), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1241), - [anon_sym_PIPE_AMP] = ACTIONS(1241), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_AMP_GT] = ACTIONS(1243), - [anon_sym_AMP_GT_GT] = ACTIONS(1241), - [anon_sym_LT_AMP] = ACTIONS(1241), - [anon_sym_GT_AMP] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1243), - [anon_sym_LT_LT_DASH] = ACTIONS(1241), - [anon_sym_LT_LT_LT] = ACTIONS(1241), - [sym_comment] = ACTIONS(56), + [2141] = { + [sym__terminated_statement] = STATE(2141), + [sym_for_statement] = STATE(2372), + [sym_while_statement] = STATE(2372), + [sym_if_statement] = STATE(2372), + [sym_case_statement] = STATE(2372), + [sym_function_definition] = STATE(2372), + [sym_subshell] = STATE(2372), + [sym_pipeline] = STATE(2372), + [sym_list] = STATE(2372), + [sym_command] = STATE(2372), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(2372), + [sym_variable_assignment] = STATE(2373), + [sym_declaration_command] = STATE(2372), + [sym_unset_command] = STATE(2372), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(2141), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(972), + [sym_variable_name] = ACTIONS(975), + [anon_sym_for] = ACTIONS(980), + [anon_sym_while] = ACTIONS(983), + [anon_sym_if] = ACTIONS(986), + [anon_sym_case] = ACTIONS(989), + [anon_sym_esac] = ACTIONS(3405), + [anon_sym_SEMI_SEMI] = ACTIONS(978), + [anon_sym_function] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1001), + [anon_sym_declare] = ACTIONS(1004), + [anon_sym_typeset] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1004), + [anon_sym_readonly] = ACTIONS(1004), + [anon_sym_local] = ACTIONS(1004), + [anon_sym_unset] = ACTIONS(1007), + [anon_sym_unsetenv] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_GT_GT] = ACTIONS(1013), + [anon_sym_AMP_GT] = ACTIONS(1010), + [anon_sym_AMP_GT_GT] = ACTIONS(1013), + [anon_sym_LT_AMP] = ACTIONS(1013), + [anon_sym_GT_AMP] = ACTIONS(1013), + [sym__special_characters] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1022), + [sym_raw_string] = ACTIONS(1025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1034), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1040), }, - [1756] = { - [aux_sym_concatenation_repeat1] = STATE(1759), - [sym_file_descriptor] = ACTIONS(1245), - [sym__concat] = ACTIONS(3692), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_PIPE_AMP] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_AMP_GT] = ACTIONS(1247), - [anon_sym_AMP_GT_GT] = ACTIONS(1245), - [anon_sym_LT_AMP] = ACTIONS(1245), - [anon_sym_GT_AMP] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1247), - [anon_sym_LT_LT_DASH] = ACTIONS(1245), - [anon_sym_LT_LT_LT] = ACTIONS(1245), - [sym_comment] = ACTIONS(56), + [2142] = { + [sym_file_redirect] = STATE(2369), + [sym_heredoc_redirect] = STATE(2369), + [sym_herestring_redirect] = STATE(2369), + [sym_concatenation] = STATE(2135), + [sym_string] = STATE(2134), + [sym_simple_expansion] = STATE(2134), + [sym_string_expansion] = STATE(2134), + [sym_expansion] = STATE(2134), + [sym_command_substitution] = STATE(2134), + [sym_process_substitution] = STATE(2134), + [aux_sym_while_statement_repeat1] = STATE(2369), + [aux_sym_command_repeat2] = STATE(2374), + [sym_file_descriptor] = ACTIONS(5013), + [anon_sym_esac] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_SEMI_SEMI] = ACTIONS(968), + [anon_sym_PIPE_AMP] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_PIPE_PIPE] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(5015), + [anon_sym_EQ_EQ] = ACTIONS(5015), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_GT_GT] = ACTIONS(5017), + [anon_sym_AMP_GT] = ACTIONS(5017), + [anon_sym_AMP_GT_GT] = ACTIONS(5017), + [anon_sym_LT_AMP] = ACTIONS(5017), + [anon_sym_GT_AMP] = ACTIONS(5017), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(5019), + [sym__special_characters] = ACTIONS(5021), + [anon_sym_DQUOTE] = ACTIONS(5023), + [anon_sym_DOLLAR] = ACTIONS(4264), + [sym_raw_string] = ACTIONS(5025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5029), + [anon_sym_BQUOTE] = ACTIONS(5031), + [anon_sym_LT_LPAREN] = ACTIONS(5033), + [anon_sym_GT_LPAREN] = ACTIONS(5033), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5025), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_LF] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(968), }, - [1757] = { - [sym_file_descriptor] = ACTIONS(1245), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_PIPE_AMP] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_AMP_GT] = ACTIONS(1247), - [anon_sym_AMP_GT_GT] = ACTIONS(1245), - [anon_sym_LT_AMP] = ACTIONS(1245), - [anon_sym_GT_AMP] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1247), - [anon_sym_LT_LT_DASH] = ACTIONS(1245), - [anon_sym_LT_LT_LT] = ACTIONS(1245), - [anon_sym_BQUOTE] = ACTIONS(1245), - [sym_comment] = ACTIONS(56), + [2143] = { + [sym__terminated_statement] = STATE(2141), + [sym_for_statement] = STATE(2376), + [sym_while_statement] = STATE(2376), + [sym_if_statement] = STATE(2376), + [sym_case_statement] = STATE(2376), + [sym_function_definition] = STATE(2376), + [sym_subshell] = STATE(2376), + [sym_pipeline] = STATE(2376), + [sym_list] = STATE(2376), + [sym_command] = STATE(2376), + [sym_command_name] = STATE(1812), + [sym_bracket_command] = STATE(2376), + [sym_variable_assignment] = STATE(2377), + [sym_declaration_command] = STATE(2376), + [sym_unset_command] = STATE(2376), + [sym_subscript] = STATE(1814), + [sym_file_redirect] = STATE(1817), + [sym_concatenation] = STATE(1815), + [sym_string] = STATE(1805), + [sym_simple_expansion] = STATE(1805), + [sym_string_expansion] = STATE(1805), + [sym_expansion] = STATE(1805), + [sym_command_substitution] = STATE(1805), + [sym_process_substitution] = STATE(1805), + [aux_sym_program_repeat1] = STATE(2141), + [aux_sym_command_repeat1] = STATE(1817), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(4242), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_esac] = ACTIONS(5474), + [anon_sym_SEMI_SEMI] = ACTIONS(5512), + [anon_sym_function] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4254), + [anon_sym_declare] = ACTIONS(4256), + [anon_sym_typeset] = ACTIONS(4256), + [anon_sym_export] = ACTIONS(4256), + [anon_sym_readonly] = ACTIONS(4256), + [anon_sym_local] = ACTIONS(4256), + [anon_sym_unset] = ACTIONS(4258), + [anon_sym_unsetenv] = ACTIONS(4258), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(4260), + [anon_sym_DQUOTE] = ACTIONS(4262), + [anon_sym_DOLLAR] = ACTIONS(4264), + [sym_raw_string] = ACTIONS(4266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4270), + [anon_sym_BQUOTE] = ACTIONS(4272), + [anon_sym_LT_LPAREN] = ACTIONS(4274), + [anon_sym_GT_LPAREN] = ACTIONS(4274), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4276), }, - [1758] = { - [sym_string] = STATE(2416), - [sym_simple_expansion] = STATE(2416), - [sym_string_expansion] = STATE(2416), - [sym_expansion] = STATE(2416), - [sym_command_substitution] = STATE(2416), - [sym_process_substitution] = STATE(2416), - [sym__special_characters] = ACTIONS(5109), - [anon_sym_DQUOTE] = ACTIONS(2224), - [anon_sym_DOLLAR] = ACTIONS(2226), - [sym_raw_string] = ACTIONS(5111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2232), - [anon_sym_BQUOTE] = ACTIONS(2234), - [anon_sym_LT_LPAREN] = ACTIONS(2236), - [anon_sym_GT_LPAREN] = ACTIONS(2236), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5109), + [2144] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_esac] = ACTIONS(5514), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(5516), + [anon_sym_DQUOTE] = ACTIONS(5518), + [anon_sym_DOLLAR] = ACTIONS(5516), + [sym_raw_string] = ACTIONS(5518), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5518), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5518), + [anon_sym_BQUOTE] = ACTIONS(5518), + [anon_sym_LT_LPAREN] = ACTIONS(5518), + [anon_sym_GT_LPAREN] = ACTIONS(5518), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5516), }, - [1759] = { - [aux_sym_concatenation_repeat1] = STATE(2417), - [sym_file_descriptor] = ACTIONS(790), - [sym__concat] = ACTIONS(3692), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [anon_sym_LT] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(1571), - [anon_sym_GT_GT] = ACTIONS(790), - [anon_sym_AMP_GT] = ACTIONS(1571), - [anon_sym_AMP_GT_GT] = ACTIONS(790), - [anon_sym_LT_AMP] = ACTIONS(790), - [anon_sym_GT_AMP] = ACTIONS(790), - [anon_sym_LT_LT] = ACTIONS(1571), - [anon_sym_LT_LT_DASH] = ACTIONS(790), - [anon_sym_LT_LT_LT] = ACTIONS(790), - [sym_comment] = ACTIONS(56), + [2145] = { + [anon_sym_esac] = ACTIONS(5514), + [sym__special_characters] = ACTIONS(5518), + [anon_sym_DQUOTE] = ACTIONS(5518), + [anon_sym_DOLLAR] = ACTIONS(5516), + [sym_raw_string] = ACTIONS(5518), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5518), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5518), + [anon_sym_BQUOTE] = ACTIONS(5518), + [anon_sym_LT_LPAREN] = ACTIONS(5518), + [anon_sym_GT_LPAREN] = ACTIONS(5518), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5516), }, - [1760] = { - [sym_file_descriptor] = ACTIONS(794), - [sym__concat] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(794), - [anon_sym_AMP_GT] = ACTIONS(1573), - [anon_sym_AMP_GT_GT] = ACTIONS(794), - [anon_sym_LT_AMP] = ACTIONS(794), - [anon_sym_GT_AMP] = ACTIONS(794), - [anon_sym_LT_LT] = ACTIONS(1573), - [anon_sym_LT_LT_DASH] = ACTIONS(794), - [anon_sym_LT_LT_LT] = ACTIONS(794), - [sym_comment] = ACTIONS(56), + [2146] = { + [anon_sym_esac] = ACTIONS(5514), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_SEMI_SEMI] = ACTIONS(5520), + [anon_sym_PIPE_AMP] = ACTIONS(5003), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(5009), + [anon_sym_LF] = ACTIONS(5011), + [anon_sym_AMP] = ACTIONS(5009), }, - [1761] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(5113), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), + [2147] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_esac] = ACTIONS(5514), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_SEMI_SEMI] = ACTIONS(5520), + [anon_sym_PIPE_AMP] = ACTIONS(5003), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(5009), + [anon_sym_LF] = ACTIONS(5011), + [anon_sym_AMP] = ACTIONS(5009), }, - [1762] = { - [sym_file_descriptor] = ACTIONS(826), - [sym__concat] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1577), - [anon_sym_GT_GT] = ACTIONS(826), - [anon_sym_AMP_GT] = ACTIONS(1577), - [anon_sym_AMP_GT_GT] = ACTIONS(826), - [anon_sym_LT_AMP] = ACTIONS(826), - [anon_sym_GT_AMP] = ACTIONS(826), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT_LT_DASH] = ACTIONS(826), - [anon_sym_LT_LT_LT] = ACTIONS(826), - [sym_comment] = ACTIONS(56), + [2148] = { + [sym__terminated_statement] = STATE(2141), + [sym_for_statement] = STATE(2380), + [sym_while_statement] = STATE(2380), + [sym_if_statement] = STATE(2380), + [sym_case_statement] = STATE(2380), + [sym_function_definition] = STATE(2380), + [sym_subshell] = STATE(2380), + [sym_pipeline] = STATE(2380), + [sym_list] = STATE(2380), + [sym_command] = STATE(2380), + [sym_command_name] = STATE(1812), + [sym_bracket_command] = STATE(2380), + [sym_variable_assignment] = STATE(2381), + [sym_declaration_command] = STATE(2380), + [sym_unset_command] = STATE(2380), + [sym_subscript] = STATE(1814), + [sym_file_redirect] = STATE(1817), + [sym_concatenation] = STATE(1815), + [sym_string] = STATE(1805), + [sym_simple_expansion] = STATE(1805), + [sym_string_expansion] = STATE(1805), + [sym_expansion] = STATE(1805), + [sym_command_substitution] = STATE(1805), + [sym_process_substitution] = STATE(1805), + [aux_sym_program_repeat1] = STATE(2141), + [aux_sym_command_repeat1] = STATE(1817), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(4242), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_esac] = ACTIONS(5514), + [anon_sym_SEMI_SEMI] = ACTIONS(5522), + [anon_sym_function] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4254), + [anon_sym_declare] = ACTIONS(4256), + [anon_sym_typeset] = ACTIONS(4256), + [anon_sym_export] = ACTIONS(4256), + [anon_sym_readonly] = ACTIONS(4256), + [anon_sym_local] = ACTIONS(4256), + [anon_sym_unset] = ACTIONS(4258), + [anon_sym_unsetenv] = ACTIONS(4258), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(4260), + [anon_sym_DQUOTE] = ACTIONS(4262), + [anon_sym_DOLLAR] = ACTIONS(4264), + [sym_raw_string] = ACTIONS(4266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4270), + [anon_sym_BQUOTE] = ACTIONS(4272), + [anon_sym_LT_LPAREN] = ACTIONS(4274), + [anon_sym_GT_LPAREN] = ACTIONS(4274), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4276), }, - [1763] = { - [sym_file_descriptor] = ACTIONS(830), - [sym__concat] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_RPAREN] = ACTIONS(830), - [anon_sym_PIPE_AMP] = ACTIONS(830), - [anon_sym_AMP_AMP] = ACTIONS(830), - [anon_sym_PIPE_PIPE] = ACTIONS(830), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(830), - [anon_sym_AMP_GT] = ACTIONS(1579), - [anon_sym_AMP_GT_GT] = ACTIONS(830), - [anon_sym_LT_AMP] = ACTIONS(830), - [anon_sym_GT_AMP] = ACTIONS(830), - [anon_sym_LT_LT] = ACTIONS(1579), - [anon_sym_LT_LT_DASH] = ACTIONS(830), - [anon_sym_LT_LT_LT] = ACTIONS(830), - [sym_comment] = ACTIONS(56), + [2149] = { + [sym__terminated_statement] = STATE(2385), + [sym_for_statement] = STATE(2383), + [sym_while_statement] = STATE(2383), + [sym_if_statement] = STATE(2383), + [sym_case_statement] = STATE(2383), + [sym_function_definition] = STATE(2383), + [sym_subshell] = STATE(2383), + [sym_pipeline] = STATE(2383), + [sym_list] = STATE(2383), + [sym_command] = STATE(2383), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(2383), + [sym_variable_assignment] = STATE(2384), + [sym_declaration_command] = STATE(2383), + [sym_unset_command] = STATE(2383), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(2385), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_SEMI_SEMI] = ACTIONS(5524), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), }, - [1764] = { - [sym_file_descriptor] = ACTIONS(834), - [sym__concat] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1581), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_AMP_GT] = ACTIONS(1581), - [anon_sym_AMP_GT_GT] = ACTIONS(834), - [anon_sym_LT_AMP] = ACTIONS(834), - [anon_sym_GT_AMP] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(1581), - [anon_sym_LT_LT_DASH] = ACTIONS(834), - [anon_sym_LT_LT_LT] = ACTIONS(834), - [sym_comment] = ACTIONS(56), + [2150] = { + [aux_sym_case_item_repeat1] = STATE(1819), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_RPAREN] = ACTIONS(5526), + [sym_comment] = ACTIONS(54), }, - [1765] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(5115), - [sym_comment] = ACTIONS(56), + [2151] = { + [sym__terminated_statement] = STATE(2390), + [sym_for_statement] = STATE(2388), + [sym_while_statement] = STATE(2388), + [sym_if_statement] = STATE(2388), + [sym_case_statement] = STATE(2388), + [sym_function_definition] = STATE(2388), + [sym_subshell] = STATE(2388), + [sym_pipeline] = STATE(2388), + [sym_list] = STATE(2388), + [sym_command] = STATE(2388), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(2388), + [sym_variable_assignment] = STATE(2389), + [sym_declaration_command] = STATE(2388), + [sym_unset_command] = STATE(2388), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(2390), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_SEMI_SEMI] = ACTIONS(5528), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), }, - [1766] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), + [2152] = { + [aux_sym_case_item_repeat1] = STATE(1819), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_RPAREN] = ACTIONS(5530), + [sym_comment] = ACTIONS(54), + }, + [2153] = { + [anon_sym_esac] = ACTIONS(5532), + [anon_sym_PIPE] = ACTIONS(5532), + [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_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(5532), + [anon_sym_LF] = ACTIONS(5534), + [anon_sym_AMP] = ACTIONS(5532), + }, + [2154] = { + [anon_sym_esac] = ACTIONS(5536), + [anon_sym_PIPE] = ACTIONS(5536), + [anon_sym_RPAREN] = ACTIONS(5536), + [anon_sym_SEMI_SEMI] = ACTIONS(5536), + [anon_sym_PIPE_AMP] = ACTIONS(5536), + [anon_sym_AMP_AMP] = ACTIONS(5536), + [anon_sym_PIPE_PIPE] = ACTIONS(5536), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(5536), + [anon_sym_LF] = ACTIONS(5538), + [anon_sym_AMP] = ACTIONS(5536), + }, + [2155] = { + [sym__concat] = ACTIONS(5178), + [anon_sym_in] = ACTIONS(5180), + [anon_sym_SEMI_SEMI] = ACTIONS(5180), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(5180), + [anon_sym_LF] = ACTIONS(5178), + [anon_sym_AMP] = ACTIONS(5180), + }, + [2156] = { + [sym__concat] = ACTIONS(5182), + [anon_sym_in] = ACTIONS(5184), + [anon_sym_SEMI_SEMI] = ACTIONS(5184), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(5184), + [anon_sym_LF] = ACTIONS(5182), + [anon_sym_AMP] = ACTIONS(5184), + }, + [2157] = { + [sym__concat] = ACTIONS(5186), + [anon_sym_in] = ACTIONS(5188), + [anon_sym_SEMI_SEMI] = ACTIONS(5188), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(5188), + [anon_sym_LF] = ACTIONS(5186), + [anon_sym_AMP] = ACTIONS(5188), + }, + [2158] = { + [aux_sym_concatenation_repeat1] = STATE(2158), + [sym__concat] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [2159] = { + [sym__concat] = ACTIONS(5178), + [anon_sym_EQ_TILDE] = ACTIONS(5180), + [anon_sym_EQ_EQ] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5178), + [sym__special_characters] = ACTIONS(5180), + [anon_sym_DQUOTE] = ACTIONS(5178), + [anon_sym_DOLLAR] = ACTIONS(5180), + [sym_raw_string] = ACTIONS(5178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5178), + [anon_sym_BQUOTE] = ACTIONS(5178), + [anon_sym_LT_LPAREN] = ACTIONS(5178), + [anon_sym_GT_LPAREN] = ACTIONS(5178), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5180), + }, + [2160] = { + [sym__concat] = ACTIONS(5182), + [anon_sym_EQ_TILDE] = ACTIONS(5184), + [anon_sym_EQ_EQ] = ACTIONS(5184), + [anon_sym_RBRACK] = ACTIONS(5182), + [sym__special_characters] = ACTIONS(5184), + [anon_sym_DQUOTE] = ACTIONS(5182), + [anon_sym_DOLLAR] = ACTIONS(5184), + [sym_raw_string] = ACTIONS(5182), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5182), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5182), + [anon_sym_BQUOTE] = ACTIONS(5182), + [anon_sym_LT_LPAREN] = ACTIONS(5182), + [anon_sym_GT_LPAREN] = ACTIONS(5182), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5184), + }, + [2161] = { + [sym__concat] = ACTIONS(5186), + [anon_sym_EQ_TILDE] = ACTIONS(5188), + [anon_sym_EQ_EQ] = ACTIONS(5188), + [anon_sym_RBRACK] = ACTIONS(5186), + [sym__special_characters] = ACTIONS(5188), + [anon_sym_DQUOTE] = ACTIONS(5186), + [anon_sym_DOLLAR] = ACTIONS(5188), + [sym_raw_string] = ACTIONS(5186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5186), + [anon_sym_BQUOTE] = ACTIONS(5186), + [anon_sym_LT_LPAREN] = ACTIONS(5186), + [anon_sym_GT_LPAREN] = ACTIONS(5186), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5188), + }, + [2162] = { + [sym__concat] = ACTIONS(5178), + [anon_sym_PIPE] = ACTIONS(5178), + [anon_sym_RPAREN] = ACTIONS(5178), + [anon_sym_EQ_TILDE] = ACTIONS(5180), + [anon_sym_EQ_EQ] = ACTIONS(5180), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5178), + [sym__special_characters] = ACTIONS(5180), + [anon_sym_DQUOTE] = ACTIONS(5178), + [anon_sym_DOLLAR] = ACTIONS(5180), + [sym_raw_string] = ACTIONS(5178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5178), + [anon_sym_BQUOTE] = ACTIONS(5178), + [anon_sym_LT_LPAREN] = ACTIONS(5178), + [anon_sym_GT_LPAREN] = ACTIONS(5178), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5180), + }, + [2163] = { + [sym__concat] = ACTIONS(5182), + [anon_sym_PIPE] = ACTIONS(5182), + [anon_sym_RPAREN] = ACTIONS(5182), + [anon_sym_EQ_TILDE] = ACTIONS(5184), + [anon_sym_EQ_EQ] = ACTIONS(5184), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5182), + [sym__special_characters] = ACTIONS(5184), + [anon_sym_DQUOTE] = ACTIONS(5182), + [anon_sym_DOLLAR] = ACTIONS(5184), + [sym_raw_string] = ACTIONS(5182), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5182), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5182), + [anon_sym_BQUOTE] = ACTIONS(5182), + [anon_sym_LT_LPAREN] = ACTIONS(5182), + [anon_sym_GT_LPAREN] = ACTIONS(5182), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5184), + }, + [2164] = { + [sym__concat] = ACTIONS(5186), + [anon_sym_PIPE] = ACTIONS(5186), + [anon_sym_RPAREN] = ACTIONS(5186), + [anon_sym_EQ_TILDE] = ACTIONS(5188), + [anon_sym_EQ_EQ] = ACTIONS(5188), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5186), + [sym__special_characters] = ACTIONS(5188), + [anon_sym_DQUOTE] = ACTIONS(5186), + [anon_sym_DOLLAR] = ACTIONS(5188), + [sym_raw_string] = ACTIONS(5186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5186), + [anon_sym_BQUOTE] = ACTIONS(5186), + [anon_sym_LT_LPAREN] = ACTIONS(5186), + [anon_sym_GT_LPAREN] = ACTIONS(5186), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5188), + }, + [2165] = { + [sym__concat] = ACTIONS(5178), + [sym_variable_name] = ACTIONS(5178), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_RPAREN] = ACTIONS(5180), + [anon_sym_SEMI_SEMI] = ACTIONS(5180), + [anon_sym_PIPE_AMP] = ACTIONS(5180), + [anon_sym_AMP_AMP] = ACTIONS(5180), + [anon_sym_PIPE_PIPE] = ACTIONS(5180), + [sym__special_characters] = ACTIONS(5180), + [anon_sym_DQUOTE] = ACTIONS(5180), + [anon_sym_DOLLAR] = ACTIONS(5180), + [sym_raw_string] = ACTIONS(5180), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5180), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5180), + [anon_sym_BQUOTE] = ACTIONS(5180), + [anon_sym_LT_LPAREN] = ACTIONS(5180), + [anon_sym_GT_LPAREN] = ACTIONS(5180), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5180), + [sym_word] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5180), + [anon_sym_LF] = ACTIONS(5178), + [anon_sym_AMP] = ACTIONS(5180), + }, + [2166] = { + [sym__concat] = ACTIONS(5182), + [sym_variable_name] = ACTIONS(5182), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_RPAREN] = ACTIONS(5184), + [anon_sym_SEMI_SEMI] = ACTIONS(5184), + [anon_sym_PIPE_AMP] = ACTIONS(5184), + [anon_sym_AMP_AMP] = ACTIONS(5184), + [anon_sym_PIPE_PIPE] = ACTIONS(5184), + [sym__special_characters] = ACTIONS(5184), + [anon_sym_DQUOTE] = ACTIONS(5184), + [anon_sym_DOLLAR] = ACTIONS(5184), + [sym_raw_string] = ACTIONS(5184), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5184), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5184), + [anon_sym_BQUOTE] = ACTIONS(5184), + [anon_sym_LT_LPAREN] = ACTIONS(5184), + [anon_sym_GT_LPAREN] = ACTIONS(5184), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5184), + [sym_word] = ACTIONS(5184), + [anon_sym_SEMI] = ACTIONS(5184), + [anon_sym_LF] = ACTIONS(5182), + [anon_sym_AMP] = ACTIONS(5184), + }, + [2167] = { + [sym__concat] = ACTIONS(5186), + [sym_variable_name] = ACTIONS(5186), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_RPAREN] = ACTIONS(5188), + [anon_sym_SEMI_SEMI] = ACTIONS(5188), + [anon_sym_PIPE_AMP] = ACTIONS(5188), + [anon_sym_AMP_AMP] = ACTIONS(5188), + [anon_sym_PIPE_PIPE] = ACTIONS(5188), + [sym__special_characters] = ACTIONS(5188), + [anon_sym_DQUOTE] = ACTIONS(5188), + [anon_sym_DOLLAR] = ACTIONS(5188), + [sym_raw_string] = ACTIONS(5188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5188), + [anon_sym_BQUOTE] = ACTIONS(5188), + [anon_sym_LT_LPAREN] = ACTIONS(5188), + [anon_sym_GT_LPAREN] = ACTIONS(5188), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5188), + [sym_word] = ACTIONS(5188), + [anon_sym_SEMI] = ACTIONS(5188), + [anon_sym_LF] = ACTIONS(5186), + [anon_sym_AMP] = ACTIONS(5188), + }, + [2168] = { + [sym__concat] = ACTIONS(5178), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_RPAREN] = ACTIONS(5180), + [anon_sym_SEMI_SEMI] = ACTIONS(5180), + [anon_sym_PIPE_AMP] = ACTIONS(5180), + [anon_sym_AMP_AMP] = ACTIONS(5180), + [anon_sym_PIPE_PIPE] = ACTIONS(5180), + [sym__special_characters] = ACTIONS(5180), + [anon_sym_DQUOTE] = ACTIONS(5180), + [anon_sym_DOLLAR] = ACTIONS(5180), + [sym_raw_string] = ACTIONS(5180), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5180), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5180), + [anon_sym_BQUOTE] = ACTIONS(5180), + [anon_sym_LT_LPAREN] = ACTIONS(5180), + [anon_sym_GT_LPAREN] = ACTIONS(5180), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5180), + [sym_word] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5180), + [anon_sym_LF] = ACTIONS(5178), + [anon_sym_AMP] = ACTIONS(5180), + }, + [2169] = { + [sym__concat] = ACTIONS(5182), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_RPAREN] = ACTIONS(5184), + [anon_sym_SEMI_SEMI] = ACTIONS(5184), + [anon_sym_PIPE_AMP] = ACTIONS(5184), + [anon_sym_AMP_AMP] = ACTIONS(5184), + [anon_sym_PIPE_PIPE] = ACTIONS(5184), + [sym__special_characters] = ACTIONS(5184), + [anon_sym_DQUOTE] = ACTIONS(5184), + [anon_sym_DOLLAR] = ACTIONS(5184), + [sym_raw_string] = ACTIONS(5184), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5184), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5184), + [anon_sym_BQUOTE] = ACTIONS(5184), + [anon_sym_LT_LPAREN] = ACTIONS(5184), + [anon_sym_GT_LPAREN] = ACTIONS(5184), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5184), + [sym_word] = ACTIONS(5184), + [anon_sym_SEMI] = ACTIONS(5184), + [anon_sym_LF] = ACTIONS(5182), + [anon_sym_AMP] = ACTIONS(5184), + }, + [2170] = { + [sym__concat] = ACTIONS(5186), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_RPAREN] = ACTIONS(5188), + [anon_sym_SEMI_SEMI] = ACTIONS(5188), + [anon_sym_PIPE_AMP] = ACTIONS(5188), + [anon_sym_AMP_AMP] = ACTIONS(5188), + [anon_sym_PIPE_PIPE] = ACTIONS(5188), + [sym__special_characters] = ACTIONS(5188), + [anon_sym_DQUOTE] = ACTIONS(5188), + [anon_sym_DOLLAR] = ACTIONS(5188), + [sym_raw_string] = ACTIONS(5188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5188), + [anon_sym_BQUOTE] = ACTIONS(5188), + [anon_sym_LT_LPAREN] = ACTIONS(5188), + [anon_sym_GT_LPAREN] = ACTIONS(5188), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5188), + [sym_word] = ACTIONS(5188), + [anon_sym_SEMI] = ACTIONS(5188), + [anon_sym_LF] = ACTIONS(5186), + [anon_sym_AMP] = ACTIONS(5188), + }, + [2171] = { + [sym_file_descriptor] = ACTIONS(5178), + [sym__concat] = ACTIONS(5178), + [sym_variable_name] = ACTIONS(5178), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_RPAREN] = ACTIONS(5178), + [anon_sym_PIPE_AMP] = ACTIONS(5178), + [anon_sym_AMP_AMP] = ACTIONS(5178), + [anon_sym_PIPE_PIPE] = ACTIONS(5178), + [anon_sym_LT] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5180), + [anon_sym_GT_GT] = ACTIONS(5178), + [anon_sym_AMP_GT] = ACTIONS(5180), + [anon_sym_AMP_GT_GT] = ACTIONS(5178), + [anon_sym_LT_AMP] = ACTIONS(5178), + [anon_sym_GT_AMP] = ACTIONS(5178), + [sym__special_characters] = ACTIONS(5178), + [anon_sym_DQUOTE] = ACTIONS(5178), + [anon_sym_DOLLAR] = ACTIONS(5180), + [sym_raw_string] = ACTIONS(5178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5178), + [anon_sym_BQUOTE] = ACTIONS(5178), + [anon_sym_LT_LPAREN] = ACTIONS(5178), + [anon_sym_GT_LPAREN] = ACTIONS(5178), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5178), + }, + [2172] = { + [sym_file_descriptor] = ACTIONS(5182), + [sym__concat] = ACTIONS(5182), + [sym_variable_name] = ACTIONS(5182), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_RPAREN] = ACTIONS(5182), + [anon_sym_PIPE_AMP] = ACTIONS(5182), + [anon_sym_AMP_AMP] = ACTIONS(5182), + [anon_sym_PIPE_PIPE] = ACTIONS(5182), + [anon_sym_LT] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5184), + [anon_sym_GT_GT] = ACTIONS(5182), + [anon_sym_AMP_GT] = ACTIONS(5184), + [anon_sym_AMP_GT_GT] = ACTIONS(5182), + [anon_sym_LT_AMP] = ACTIONS(5182), + [anon_sym_GT_AMP] = ACTIONS(5182), + [sym__special_characters] = ACTIONS(5182), + [anon_sym_DQUOTE] = ACTIONS(5182), + [anon_sym_DOLLAR] = ACTIONS(5184), + [sym_raw_string] = ACTIONS(5182), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5182), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5182), + [anon_sym_BQUOTE] = ACTIONS(5182), + [anon_sym_LT_LPAREN] = ACTIONS(5182), + [anon_sym_GT_LPAREN] = ACTIONS(5182), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5182), + }, + [2173] = { + [sym_file_descriptor] = ACTIONS(5186), + [sym__concat] = ACTIONS(5186), + [sym_variable_name] = ACTIONS(5186), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_RPAREN] = ACTIONS(5186), + [anon_sym_PIPE_AMP] = ACTIONS(5186), + [anon_sym_AMP_AMP] = ACTIONS(5186), + [anon_sym_PIPE_PIPE] = ACTIONS(5186), + [anon_sym_LT] = ACTIONS(5188), + [anon_sym_GT] = ACTIONS(5188), + [anon_sym_GT_GT] = ACTIONS(5186), + [anon_sym_AMP_GT] = ACTIONS(5188), + [anon_sym_AMP_GT_GT] = ACTIONS(5186), + [anon_sym_LT_AMP] = ACTIONS(5186), + [anon_sym_GT_AMP] = ACTIONS(5186), + [sym__special_characters] = ACTIONS(5186), + [anon_sym_DQUOTE] = ACTIONS(5186), + [anon_sym_DOLLAR] = ACTIONS(5188), + [sym_raw_string] = ACTIONS(5186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5186), + [anon_sym_BQUOTE] = ACTIONS(5186), + [anon_sym_LT_LPAREN] = ACTIONS(5186), + [anon_sym_GT_LPAREN] = ACTIONS(5186), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5186), + }, + [2174] = { + [sym__concat] = ACTIONS(5178), + [anon_sym_DQUOTE] = ACTIONS(5180), + [anon_sym_DOLLAR] = ACTIONS(5180), + [sym__string_content] = ACTIONS(5178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5180), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5180), + [anon_sym_BQUOTE] = ACTIONS(5180), + [sym_comment] = ACTIONS(166), + }, + [2175] = { + [sym__concat] = ACTIONS(5182), + [anon_sym_DQUOTE] = ACTIONS(5184), + [anon_sym_DOLLAR] = ACTIONS(5184), + [sym__string_content] = ACTIONS(5182), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5184), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5184), + [anon_sym_BQUOTE] = ACTIONS(5184), + [sym_comment] = ACTIONS(166), + }, + [2176] = { + [sym__concat] = ACTIONS(5186), + [anon_sym_DQUOTE] = ACTIONS(5188), + [anon_sym_DOLLAR] = ACTIONS(5188), + [sym__string_content] = ACTIONS(5186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5188), + [anon_sym_BQUOTE] = ACTIONS(5188), + [sym_comment] = ACTIONS(166), + }, + [2177] = { + [sym__concat] = ACTIONS(3740), + [anon_sym_RBRACE] = ACTIONS(3740), + [sym_comment] = ACTIONS(54), + }, + [2178] = { + [sym__concat] = ACTIONS(3746), + [anon_sym_RBRACE] = ACTIONS(3746), + [sym_comment] = ACTIONS(54), + }, + [2179] = { + [sym__concat] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(3831), + [sym_comment] = ACTIONS(54), + }, + [2180] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5540), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2181] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(5542), + [sym_comment] = ACTIONS(54), + }, + [2182] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(5544), + [sym_comment] = ACTIONS(54), + }, + [2183] = { + [anon_sym_RBRACE] = ACTIONS(5544), + [sym_comment] = ACTIONS(54), + }, + [2184] = { + [sym_concatenation] = STATE(2396), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2396), + [anon_sym_RBRACE] = ACTIONS(5546), + [anon_sym_EQ] = ACTIONS(5548), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5550), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2185] = { + [sym__concat] = ACTIONS(3847), + [anon_sym_RBRACE] = ACTIONS(3847), + [sym_comment] = ACTIONS(54), + }, + [2186] = { + [sym_concatenation] = STATE(2398), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2398), + [anon_sym_RBRACE] = ACTIONS(5552), + [anon_sym_EQ] = ACTIONS(5554), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5556), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2187] = { + [sym__concat] = ACTIONS(3857), + [anon_sym_RBRACE] = ACTIONS(3857), + [sym_comment] = ACTIONS(54), + }, + [2188] = { + [sym_concatenation] = STATE(2400), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2400), + [anon_sym_RBRACE] = ACTIONS(5558), + [anon_sym_EQ] = ACTIONS(5560), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5562), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(5560), + [anon_sym_COLON_QMARK] = ACTIONS(5560), + [anon_sym_COLON_DASH] = ACTIONS(5560), + [anon_sym_PERCENT] = ACTIONS(5560), + [anon_sym_DASH] = ACTIONS(5560), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2189] = { + [sym__concat] = ACTIONS(3867), + [anon_sym_RBRACE] = ACTIONS(3867), + [sym_comment] = ACTIONS(54), + }, + [2190] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5564), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2191] = { + [sym__concat] = ACTIONS(3873), + [anon_sym_RBRACE] = ACTIONS(3873), + [sym_comment] = ACTIONS(54), + }, + [2192] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5566), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2193] = { + [sym__concat] = ACTIONS(4621), + [anon_sym_RBRACE] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [sym__special_characters] = ACTIONS(4623), + [anon_sym_DQUOTE] = ACTIONS(4621), + [anon_sym_DOLLAR] = ACTIONS(4623), + [sym_raw_string] = ACTIONS(4621), + [anon_sym_POUND] = ACTIONS(4621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4621), + [anon_sym_COLON] = ACTIONS(4623), + [anon_sym_COLON_QMARK] = ACTIONS(4623), + [anon_sym_COLON_DASH] = ACTIONS(4623), + [anon_sym_PERCENT] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4621), + [anon_sym_BQUOTE] = ACTIONS(4621), + [anon_sym_LT_LPAREN] = ACTIONS(4621), + [anon_sym_GT_LPAREN] = ACTIONS(4621), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4623), + }, + [2194] = { + [sym__concat] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [sym__special_characters] = ACTIONS(4627), + [anon_sym_DQUOTE] = ACTIONS(4625), + [anon_sym_DOLLAR] = ACTIONS(4627), + [sym_raw_string] = ACTIONS(4625), + [anon_sym_POUND] = ACTIONS(4625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4625), + [anon_sym_COLON] = ACTIONS(4627), + [anon_sym_COLON_QMARK] = ACTIONS(4627), + [anon_sym_COLON_DASH] = ACTIONS(4627), + [anon_sym_PERCENT] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4625), + [anon_sym_BQUOTE] = ACTIONS(4625), + [anon_sym_LT_LPAREN] = ACTIONS(4625), + [anon_sym_GT_LPAREN] = ACTIONS(4625), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4627), + }, + [2195] = { + [sym__concat] = ACTIONS(4629), + [anon_sym_RBRACE] = ACTIONS(4629), + [anon_sym_EQ] = ACTIONS(4631), + [sym__special_characters] = ACTIONS(4631), + [anon_sym_DQUOTE] = ACTIONS(4629), + [anon_sym_DOLLAR] = ACTIONS(4631), + [sym_raw_string] = ACTIONS(4629), + [anon_sym_POUND] = ACTIONS(4629), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4629), + [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(4629), + [anon_sym_BQUOTE] = ACTIONS(4629), + [anon_sym_LT_LPAREN] = ACTIONS(4629), + [anon_sym_GT_LPAREN] = ACTIONS(4629), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4631), + }, + [2196] = { + [sym__concat] = ACTIONS(4633), + [anon_sym_RBRACE] = ACTIONS(4633), + [anon_sym_EQ] = ACTIONS(4635), + [sym__special_characters] = ACTIONS(4635), + [anon_sym_DQUOTE] = ACTIONS(4633), + [anon_sym_DOLLAR] = ACTIONS(4635), + [sym_raw_string] = ACTIONS(4633), + [anon_sym_POUND] = ACTIONS(4633), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4633), + [anon_sym_COLON] = ACTIONS(4635), + [anon_sym_COLON_QMARK] = ACTIONS(4635), + [anon_sym_COLON_DASH] = ACTIONS(4635), + [anon_sym_PERCENT] = ACTIONS(4635), + [anon_sym_DASH] = ACTIONS(4635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4633), + [anon_sym_BQUOTE] = ACTIONS(4633), + [anon_sym_LT_LPAREN] = ACTIONS(4633), + [anon_sym_GT_LPAREN] = ACTIONS(4633), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4635), + }, + [2197] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5568), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2198] = { + [sym__concat] = ACTIONS(4639), + [anon_sym_RBRACE] = ACTIONS(4639), + [anon_sym_EQ] = ACTIONS(4641), + [sym__special_characters] = ACTIONS(4641), + [anon_sym_DQUOTE] = ACTIONS(4639), + [anon_sym_DOLLAR] = ACTIONS(4641), + [sym_raw_string] = ACTIONS(4639), + [anon_sym_POUND] = ACTIONS(4639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4639), + [anon_sym_COLON] = ACTIONS(4641), + [anon_sym_COLON_QMARK] = ACTIONS(4641), + [anon_sym_COLON_DASH] = ACTIONS(4641), + [anon_sym_PERCENT] = ACTIONS(4641), + [anon_sym_DASH] = ACTIONS(4641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4639), + [anon_sym_BQUOTE] = ACTIONS(4639), + [anon_sym_LT_LPAREN] = ACTIONS(4639), + [anon_sym_GT_LPAREN] = ACTIONS(4639), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4641), + }, + [2199] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5570), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2200] = { + [sym__concat] = ACTIONS(4645), + [anon_sym_RBRACE] = ACTIONS(4645), + [anon_sym_EQ] = ACTIONS(4647), + [sym__special_characters] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4645), + [anon_sym_DOLLAR] = ACTIONS(4647), + [sym_raw_string] = ACTIONS(4645), + [anon_sym_POUND] = ACTIONS(4645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4645), + [anon_sym_COLON] = ACTIONS(4647), + [anon_sym_COLON_QMARK] = ACTIONS(4647), + [anon_sym_COLON_DASH] = ACTIONS(4647), + [anon_sym_PERCENT] = ACTIONS(4647), + [anon_sym_DASH] = ACTIONS(4647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4645), + [anon_sym_BQUOTE] = ACTIONS(4645), + [anon_sym_LT_LPAREN] = ACTIONS(4645), + [anon_sym_GT_LPAREN] = ACTIONS(4645), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4647), + }, + [2201] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5572), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2202] = { + [sym__concat] = ACTIONS(4651), + [anon_sym_RBRACE] = ACTIONS(4651), + [anon_sym_EQ] = ACTIONS(4653), + [sym__special_characters] = ACTIONS(4653), + [anon_sym_DQUOTE] = ACTIONS(4651), + [anon_sym_DOLLAR] = ACTIONS(4653), + [sym_raw_string] = ACTIONS(4651), + [anon_sym_POUND] = ACTIONS(4651), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4651), + [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(4651), + [anon_sym_BQUOTE] = ACTIONS(4651), + [anon_sym_LT_LPAREN] = ACTIONS(4651), + [anon_sym_GT_LPAREN] = ACTIONS(4651), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4653), + }, + [2203] = { + [sym__concat] = ACTIONS(4655), + [anon_sym_RBRACE] = ACTIONS(4655), + [anon_sym_EQ] = ACTIONS(4657), + [sym__special_characters] = ACTIONS(4657), + [anon_sym_DQUOTE] = ACTIONS(4655), + [anon_sym_DOLLAR] = ACTIONS(4657), + [sym_raw_string] = ACTIONS(4655), + [anon_sym_POUND] = ACTIONS(4655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4655), + [anon_sym_COLON] = ACTIONS(4657), + [anon_sym_COLON_QMARK] = ACTIONS(4657), + [anon_sym_COLON_DASH] = ACTIONS(4657), + [anon_sym_PERCENT] = ACTIONS(4657), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4655), + [anon_sym_BQUOTE] = ACTIONS(4655), + [anon_sym_LT_LPAREN] = ACTIONS(4655), + [anon_sym_GT_LPAREN] = ACTIONS(4655), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4657), + }, + [2204] = { + [anon_sym_PIPE] = ACTIONS(4923), + [anon_sym_RPAREN] = ACTIONS(4925), + [anon_sym_PIPE_AMP] = ACTIONS(4925), + [anon_sym_AMP_AMP] = ACTIONS(4925), + [anon_sym_PIPE_PIPE] = ACTIONS(4925), + [anon_sym_BQUOTE] = ACTIONS(4925), + [sym_comment] = ACTIONS(54), + }, + [2205] = { + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(5054), + [anon_sym_PIPE_AMP] = ACTIONS(5054), + [anon_sym_AMP_AMP] = ACTIONS(5054), + [anon_sym_PIPE_PIPE] = ACTIONS(5054), + [anon_sym_BQUOTE] = ACTIONS(5054), + [sym_comment] = ACTIONS(54), + }, + [2206] = { + [anon_sym_esac] = ACTIONS(5574), + [sym_comment] = ACTIONS(54), + }, + [2207] = { + [anon_sym_PIPE] = ACTIONS(5062), + [anon_sym_RPAREN] = ACTIONS(5064), + [anon_sym_PIPE_AMP] = ACTIONS(5064), + [anon_sym_AMP_AMP] = ACTIONS(5064), + [anon_sym_PIPE_PIPE] = ACTIONS(5064), + [anon_sym_BQUOTE] = ACTIONS(5064), + [sym_comment] = ACTIONS(54), + }, + [2208] = { + [anon_sym_esac] = ACTIONS(5576), + [sym_comment] = ACTIONS(54), + }, + [2209] = { + [aux_sym_concatenation_repeat1] = STATE(2209), + [sym__concat] = ACTIONS(3962), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_PIPE_AMP] = ACTIONS(1634), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE_PIPE] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + }, + [2210] = { + [sym__concat] = ACTIONS(4621), + [sym_variable_name] = ACTIONS(4621), + [anon_sym_PIPE] = ACTIONS(4623), + [anon_sym_RPAREN] = ACTIONS(4621), + [anon_sym_PIPE_AMP] = ACTIONS(4621), + [anon_sym_AMP_AMP] = ACTIONS(4621), + [anon_sym_PIPE_PIPE] = ACTIONS(4621), + [sym__special_characters] = ACTIONS(4621), + [anon_sym_DQUOTE] = ACTIONS(4621), + [anon_sym_DOLLAR] = ACTIONS(4623), + [sym_raw_string] = ACTIONS(4621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4621), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4621), + [anon_sym_BQUOTE] = ACTIONS(4621), + [anon_sym_LT_LPAREN] = ACTIONS(4621), + [anon_sym_GT_LPAREN] = ACTIONS(4621), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4623), + [sym_word] = ACTIONS(4623), + }, + [2211] = { + [sym__concat] = ACTIONS(4625), + [sym_variable_name] = ACTIONS(4625), + [anon_sym_PIPE] = ACTIONS(4627), + [anon_sym_RPAREN] = ACTIONS(4625), + [anon_sym_PIPE_AMP] = ACTIONS(4625), + [anon_sym_AMP_AMP] = ACTIONS(4625), + [anon_sym_PIPE_PIPE] = ACTIONS(4625), + [sym__special_characters] = ACTIONS(4625), + [anon_sym_DQUOTE] = ACTIONS(4625), + [anon_sym_DOLLAR] = ACTIONS(4627), + [sym_raw_string] = ACTIONS(4625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4625), + [anon_sym_BQUOTE] = ACTIONS(4625), + [anon_sym_LT_LPAREN] = ACTIONS(4625), + [anon_sym_GT_LPAREN] = ACTIONS(4625), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4627), + [sym_word] = ACTIONS(4627), + }, + [2212] = { + [sym__concat] = ACTIONS(4629), + [sym_variable_name] = ACTIONS(4629), + [anon_sym_PIPE] = ACTIONS(4631), + [anon_sym_RPAREN] = ACTIONS(4629), + [anon_sym_PIPE_AMP] = ACTIONS(4629), + [anon_sym_AMP_AMP] = ACTIONS(4629), + [anon_sym_PIPE_PIPE] = ACTIONS(4629), + [sym__special_characters] = ACTIONS(4629), + [anon_sym_DQUOTE] = ACTIONS(4629), + [anon_sym_DOLLAR] = ACTIONS(4631), + [sym_raw_string] = ACTIONS(4629), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4629), + [anon_sym_BQUOTE] = ACTIONS(4629), + [anon_sym_LT_LPAREN] = ACTIONS(4629), + [anon_sym_GT_LPAREN] = ACTIONS(4629), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4631), + [sym_word] = ACTIONS(4631), + }, + [2213] = { + [sym__concat] = ACTIONS(4633), + [sym_variable_name] = ACTIONS(4633), + [anon_sym_PIPE] = ACTIONS(4635), + [anon_sym_RPAREN] = ACTIONS(4633), + [anon_sym_PIPE_AMP] = ACTIONS(4633), + [anon_sym_AMP_AMP] = ACTIONS(4633), + [anon_sym_PIPE_PIPE] = ACTIONS(4633), + [sym__special_characters] = ACTIONS(4633), + [anon_sym_DQUOTE] = ACTIONS(4633), + [anon_sym_DOLLAR] = ACTIONS(4635), + [sym_raw_string] = ACTIONS(4633), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4633), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4633), + [anon_sym_BQUOTE] = ACTIONS(4633), + [anon_sym_LT_LPAREN] = ACTIONS(4633), + [anon_sym_GT_LPAREN] = ACTIONS(4633), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4635), + [sym_word] = ACTIONS(4635), + }, + [2214] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5578), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2215] = { + [sym__concat] = ACTIONS(4639), + [sym_variable_name] = ACTIONS(4639), + [anon_sym_PIPE] = ACTIONS(4641), + [anon_sym_RPAREN] = ACTIONS(4639), + [anon_sym_PIPE_AMP] = ACTIONS(4639), + [anon_sym_AMP_AMP] = ACTIONS(4639), + [anon_sym_PIPE_PIPE] = ACTIONS(4639), + [sym__special_characters] = ACTIONS(4639), + [anon_sym_DQUOTE] = ACTIONS(4639), + [anon_sym_DOLLAR] = ACTIONS(4641), + [sym_raw_string] = ACTIONS(4639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4639), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4639), + [anon_sym_BQUOTE] = ACTIONS(4639), + [anon_sym_LT_LPAREN] = ACTIONS(4639), + [anon_sym_GT_LPAREN] = ACTIONS(4639), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4641), + [sym_word] = ACTIONS(4641), + }, + [2216] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5580), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2217] = { + [sym__concat] = ACTIONS(4645), + [sym_variable_name] = ACTIONS(4645), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_RPAREN] = ACTIONS(4645), + [anon_sym_PIPE_AMP] = ACTIONS(4645), + [anon_sym_AMP_AMP] = ACTIONS(4645), + [anon_sym_PIPE_PIPE] = ACTIONS(4645), + [sym__special_characters] = ACTIONS(4645), + [anon_sym_DQUOTE] = ACTIONS(4645), + [anon_sym_DOLLAR] = ACTIONS(4647), + [sym_raw_string] = ACTIONS(4645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4645), + [anon_sym_BQUOTE] = ACTIONS(4645), + [anon_sym_LT_LPAREN] = ACTIONS(4645), + [anon_sym_GT_LPAREN] = ACTIONS(4645), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4647), + [sym_word] = ACTIONS(4647), + }, + [2218] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5582), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2219] = { + [sym__concat] = ACTIONS(4651), + [sym_variable_name] = ACTIONS(4651), + [anon_sym_PIPE] = ACTIONS(4653), + [anon_sym_RPAREN] = ACTIONS(4651), + [anon_sym_PIPE_AMP] = ACTIONS(4651), + [anon_sym_AMP_AMP] = ACTIONS(4651), + [anon_sym_PIPE_PIPE] = ACTIONS(4651), + [sym__special_characters] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(4651), + [anon_sym_DOLLAR] = ACTIONS(4653), + [sym_raw_string] = ACTIONS(4651), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4651), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4651), + [anon_sym_BQUOTE] = ACTIONS(4651), + [anon_sym_LT_LPAREN] = ACTIONS(4651), + [anon_sym_GT_LPAREN] = ACTIONS(4651), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4653), + [sym_word] = ACTIONS(4653), + }, + [2220] = { + [sym__concat] = ACTIONS(4655), + [sym_variable_name] = ACTIONS(4655), + [anon_sym_PIPE] = ACTIONS(4657), + [anon_sym_RPAREN] = ACTIONS(4655), + [anon_sym_PIPE_AMP] = ACTIONS(4655), + [anon_sym_AMP_AMP] = ACTIONS(4655), + [anon_sym_PIPE_PIPE] = ACTIONS(4655), + [sym__special_characters] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4655), + [anon_sym_DOLLAR] = ACTIONS(4657), + [sym_raw_string] = ACTIONS(4655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4655), + [anon_sym_BQUOTE] = ACTIONS(4655), + [anon_sym_LT_LPAREN] = ACTIONS(4655), + [anon_sym_GT_LPAREN] = ACTIONS(4655), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4657), + [sym_word] = ACTIONS(4657), + }, + [2221] = { + [sym__concat] = ACTIONS(4621), + [anon_sym_PIPE] = ACTIONS(4623), + [anon_sym_RPAREN] = ACTIONS(4621), + [anon_sym_PIPE_AMP] = ACTIONS(4621), + [anon_sym_AMP_AMP] = ACTIONS(4621), + [anon_sym_PIPE_PIPE] = ACTIONS(4621), + [sym__special_characters] = ACTIONS(4621), + [anon_sym_DQUOTE] = ACTIONS(4621), + [anon_sym_DOLLAR] = ACTIONS(4623), + [sym_raw_string] = ACTIONS(4621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4621), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4621), + [anon_sym_BQUOTE] = ACTIONS(4621), + [anon_sym_LT_LPAREN] = ACTIONS(4621), + [anon_sym_GT_LPAREN] = ACTIONS(4621), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4623), + [sym_word] = ACTIONS(4623), + }, + [2222] = { + [sym__concat] = ACTIONS(4625), + [anon_sym_PIPE] = ACTIONS(4627), + [anon_sym_RPAREN] = ACTIONS(4625), + [anon_sym_PIPE_AMP] = ACTIONS(4625), + [anon_sym_AMP_AMP] = ACTIONS(4625), + [anon_sym_PIPE_PIPE] = ACTIONS(4625), + [sym__special_characters] = ACTIONS(4625), + [anon_sym_DQUOTE] = ACTIONS(4625), + [anon_sym_DOLLAR] = ACTIONS(4627), + [sym_raw_string] = ACTIONS(4625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4625), + [anon_sym_BQUOTE] = ACTIONS(4625), + [anon_sym_LT_LPAREN] = ACTIONS(4625), + [anon_sym_GT_LPAREN] = ACTIONS(4625), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4627), + [sym_word] = ACTIONS(4627), + }, + [2223] = { + [sym__concat] = ACTIONS(4629), + [anon_sym_PIPE] = ACTIONS(4631), + [anon_sym_RPAREN] = ACTIONS(4629), + [anon_sym_PIPE_AMP] = ACTIONS(4629), + [anon_sym_AMP_AMP] = ACTIONS(4629), + [anon_sym_PIPE_PIPE] = ACTIONS(4629), + [sym__special_characters] = ACTIONS(4629), + [anon_sym_DQUOTE] = ACTIONS(4629), + [anon_sym_DOLLAR] = ACTIONS(4631), + [sym_raw_string] = ACTIONS(4629), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4629), + [anon_sym_BQUOTE] = ACTIONS(4629), + [anon_sym_LT_LPAREN] = ACTIONS(4629), + [anon_sym_GT_LPAREN] = ACTIONS(4629), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4631), + [sym_word] = ACTIONS(4631), + }, + [2224] = { + [sym__concat] = ACTIONS(4633), + [anon_sym_PIPE] = ACTIONS(4635), + [anon_sym_RPAREN] = ACTIONS(4633), + [anon_sym_PIPE_AMP] = ACTIONS(4633), + [anon_sym_AMP_AMP] = ACTIONS(4633), + [anon_sym_PIPE_PIPE] = ACTIONS(4633), + [sym__special_characters] = ACTIONS(4633), + [anon_sym_DQUOTE] = ACTIONS(4633), + [anon_sym_DOLLAR] = ACTIONS(4635), + [sym_raw_string] = ACTIONS(4633), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4633), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4633), + [anon_sym_BQUOTE] = ACTIONS(4633), + [anon_sym_LT_LPAREN] = ACTIONS(4633), + [anon_sym_GT_LPAREN] = ACTIONS(4633), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4635), + [sym_word] = ACTIONS(4635), + }, + [2225] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5584), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2226] = { + [sym__concat] = ACTIONS(4639), + [anon_sym_PIPE] = ACTIONS(4641), + [anon_sym_RPAREN] = ACTIONS(4639), + [anon_sym_PIPE_AMP] = ACTIONS(4639), + [anon_sym_AMP_AMP] = ACTIONS(4639), + [anon_sym_PIPE_PIPE] = ACTIONS(4639), + [sym__special_characters] = ACTIONS(4639), + [anon_sym_DQUOTE] = ACTIONS(4639), + [anon_sym_DOLLAR] = ACTIONS(4641), + [sym_raw_string] = ACTIONS(4639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4639), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4639), + [anon_sym_BQUOTE] = ACTIONS(4639), + [anon_sym_LT_LPAREN] = ACTIONS(4639), + [anon_sym_GT_LPAREN] = ACTIONS(4639), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4641), + [sym_word] = ACTIONS(4641), + }, + [2227] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5586), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2228] = { + [sym__concat] = ACTIONS(4645), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_RPAREN] = ACTIONS(4645), + [anon_sym_PIPE_AMP] = ACTIONS(4645), + [anon_sym_AMP_AMP] = ACTIONS(4645), + [anon_sym_PIPE_PIPE] = ACTIONS(4645), + [sym__special_characters] = ACTIONS(4645), + [anon_sym_DQUOTE] = ACTIONS(4645), + [anon_sym_DOLLAR] = ACTIONS(4647), + [sym_raw_string] = ACTIONS(4645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4645), + [anon_sym_BQUOTE] = ACTIONS(4645), + [anon_sym_LT_LPAREN] = ACTIONS(4645), + [anon_sym_GT_LPAREN] = ACTIONS(4645), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4647), + [sym_word] = ACTIONS(4647), + }, + [2229] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5588), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2230] = { + [sym__concat] = ACTIONS(4651), + [anon_sym_PIPE] = ACTIONS(4653), + [anon_sym_RPAREN] = ACTIONS(4651), + [anon_sym_PIPE_AMP] = ACTIONS(4651), + [anon_sym_AMP_AMP] = ACTIONS(4651), + [anon_sym_PIPE_PIPE] = ACTIONS(4651), + [sym__special_characters] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(4651), + [anon_sym_DOLLAR] = ACTIONS(4653), + [sym_raw_string] = ACTIONS(4651), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4651), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4651), + [anon_sym_BQUOTE] = ACTIONS(4651), + [anon_sym_LT_LPAREN] = ACTIONS(4651), + [anon_sym_GT_LPAREN] = ACTIONS(4651), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4653), + [sym_word] = ACTIONS(4653), + }, + [2231] = { + [sym__concat] = ACTIONS(4655), + [anon_sym_PIPE] = ACTIONS(4657), + [anon_sym_RPAREN] = ACTIONS(4655), + [anon_sym_PIPE_AMP] = ACTIONS(4655), + [anon_sym_AMP_AMP] = ACTIONS(4655), + [anon_sym_PIPE_PIPE] = ACTIONS(4655), + [sym__special_characters] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4655), + [anon_sym_DOLLAR] = ACTIONS(4657), + [sym_raw_string] = ACTIONS(4655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4655), + [anon_sym_BQUOTE] = ACTIONS(4655), + [anon_sym_LT_LPAREN] = ACTIONS(4655), + [anon_sym_GT_LPAREN] = ACTIONS(4655), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4657), + [sym_word] = ACTIONS(4657), + }, + [2232] = { + [sym_file_descriptor] = ACTIONS(5178), + [sym__concat] = ACTIONS(5178), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_RPAREN] = ACTIONS(5178), + [anon_sym_PIPE_AMP] = ACTIONS(5178), + [anon_sym_AMP_AMP] = ACTIONS(5178), + [anon_sym_PIPE_PIPE] = ACTIONS(5178), + [anon_sym_EQ_TILDE] = ACTIONS(5180), + [anon_sym_EQ_EQ] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5180), + [anon_sym_GT_GT] = ACTIONS(5178), + [anon_sym_AMP_GT] = ACTIONS(5180), + [anon_sym_AMP_GT_GT] = ACTIONS(5178), + [anon_sym_LT_AMP] = ACTIONS(5178), + [anon_sym_GT_AMP] = ACTIONS(5178), + [anon_sym_LT_LT] = ACTIONS(5180), + [anon_sym_LT_LT_DASH] = ACTIONS(5178), + [anon_sym_LT_LT_LT] = ACTIONS(5178), + [sym__special_characters] = ACTIONS(5178), + [anon_sym_DQUOTE] = ACTIONS(5178), + [anon_sym_DOLLAR] = ACTIONS(5180), + [sym_raw_string] = ACTIONS(5178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5178), + [anon_sym_BQUOTE] = ACTIONS(5178), + [anon_sym_LT_LPAREN] = ACTIONS(5178), + [anon_sym_GT_LPAREN] = ACTIONS(5178), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5180), + }, + [2233] = { + [sym_file_descriptor] = ACTIONS(5182), + [sym__concat] = ACTIONS(5182), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_RPAREN] = ACTIONS(5182), + [anon_sym_PIPE_AMP] = ACTIONS(5182), + [anon_sym_AMP_AMP] = ACTIONS(5182), + [anon_sym_PIPE_PIPE] = ACTIONS(5182), + [anon_sym_EQ_TILDE] = ACTIONS(5184), + [anon_sym_EQ_EQ] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5184), + [anon_sym_GT_GT] = ACTIONS(5182), + [anon_sym_AMP_GT] = ACTIONS(5184), + [anon_sym_AMP_GT_GT] = ACTIONS(5182), + [anon_sym_LT_AMP] = ACTIONS(5182), + [anon_sym_GT_AMP] = ACTIONS(5182), + [anon_sym_LT_LT] = ACTIONS(5184), + [anon_sym_LT_LT_DASH] = ACTIONS(5182), + [anon_sym_LT_LT_LT] = ACTIONS(5182), + [sym__special_characters] = ACTIONS(5182), + [anon_sym_DQUOTE] = ACTIONS(5182), + [anon_sym_DOLLAR] = ACTIONS(5184), + [sym_raw_string] = ACTIONS(5182), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5182), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5182), + [anon_sym_BQUOTE] = ACTIONS(5182), + [anon_sym_LT_LPAREN] = ACTIONS(5182), + [anon_sym_GT_LPAREN] = ACTIONS(5182), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5184), + }, + [2234] = { + [sym_file_descriptor] = ACTIONS(5186), + [sym__concat] = ACTIONS(5186), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_RPAREN] = ACTIONS(5186), + [anon_sym_PIPE_AMP] = ACTIONS(5186), + [anon_sym_AMP_AMP] = ACTIONS(5186), + [anon_sym_PIPE_PIPE] = ACTIONS(5186), + [anon_sym_EQ_TILDE] = ACTIONS(5188), + [anon_sym_EQ_EQ] = ACTIONS(5188), + [anon_sym_LT] = ACTIONS(5188), + [anon_sym_GT] = ACTIONS(5188), + [anon_sym_GT_GT] = ACTIONS(5186), + [anon_sym_AMP_GT] = ACTIONS(5188), + [anon_sym_AMP_GT_GT] = ACTIONS(5186), + [anon_sym_LT_AMP] = ACTIONS(5186), + [anon_sym_GT_AMP] = ACTIONS(5186), + [anon_sym_LT_LT] = ACTIONS(5188), + [anon_sym_LT_LT_DASH] = ACTIONS(5186), + [anon_sym_LT_LT_LT] = ACTIONS(5186), + [sym__special_characters] = ACTIONS(5186), + [anon_sym_DQUOTE] = ACTIONS(5186), + [anon_sym_DOLLAR] = ACTIONS(5188), + [sym_raw_string] = ACTIONS(5186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5186), + [anon_sym_BQUOTE] = ACTIONS(5186), + [anon_sym_LT_LPAREN] = ACTIONS(5186), + [anon_sym_GT_LPAREN] = ACTIONS(5186), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5188), + }, + [2235] = { + [aux_sym_concatenation_repeat1] = STATE(2235), + [sym__concat] = ACTIONS(3962), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1634), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE_PIPE] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [sym_comment] = ACTIONS(54), + }, + [2236] = { + [sym__heredoc_middle] = ACTIONS(3740), + [sym__heredoc_end] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3740), + [sym_comment] = ACTIONS(54), + }, + [2237] = { + [sym__heredoc_middle] = ACTIONS(3746), + [sym__heredoc_end] = ACTIONS(3746), + [anon_sym_DOLLAR] = ACTIONS(3748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3746), + [sym_comment] = ACTIONS(54), + }, + [2238] = { + [sym__heredoc_middle] = ACTIONS(3831), + [sym__heredoc_end] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3831), + [sym_comment] = ACTIONS(54), + }, + [2239] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5590), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2240] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(5592), + [sym_comment] = ACTIONS(54), + }, + [2241] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(5594), + [sym_comment] = ACTIONS(54), + }, + [2242] = { + [anon_sym_RBRACE] = ACTIONS(5594), + [sym_comment] = ACTIONS(54), + }, + [2243] = { + [sym_concatenation] = STATE(2418), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2418), + [anon_sym_RBRACE] = ACTIONS(5596), + [anon_sym_EQ] = ACTIONS(5598), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5600), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2244] = { + [sym__heredoc_middle] = ACTIONS(3847), + [sym__heredoc_end] = ACTIONS(3847), + [anon_sym_DOLLAR] = ACTIONS(3849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3847), + [sym_comment] = ACTIONS(54), + }, + [2245] = { + [sym_concatenation] = STATE(2420), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2420), + [anon_sym_RBRACE] = ACTIONS(5602), + [anon_sym_EQ] = ACTIONS(5604), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5606), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2246] = { + [sym__heredoc_middle] = ACTIONS(3857), + [sym__heredoc_end] = ACTIONS(3857), + [anon_sym_DOLLAR] = ACTIONS(3859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3857), + [sym_comment] = ACTIONS(54), + }, + [2247] = { + [sym_concatenation] = STATE(2422), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), [aux_sym_expansion_repeat1] = STATE(2422), - [anon_sym_RBRACE] = ACTIONS(5117), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5119), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(5608), + [anon_sym_EQ] = ACTIONS(5610), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5612), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [1767] = { - [sym_subscript] = STATE(2426), - [sym_variable_name] = ACTIONS(5121), - [anon_sym_DOLLAR] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5123), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5125), - [anon_sym_STAR] = ACTIONS(5123), - [anon_sym_AT] = ACTIONS(5123), - [anon_sym_QMARK] = ACTIONS(5123), - [anon_sym_0] = ACTIONS(5127), - [anon_sym__] = ACTIONS(5127), + [2248] = { + [sym__heredoc_middle] = ACTIONS(3867), + [sym__heredoc_end] = ACTIONS(3867), + [anon_sym_DOLLAR] = ACTIONS(3869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3867), + [sym_comment] = ACTIONS(54), }, - [1768] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2429), - [anon_sym_RBRACE] = ACTIONS(5129), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5131), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [2249] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5614), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [1769] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2432), - [anon_sym_RBRACE] = ACTIONS(5133), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [2250] = { + [sym__heredoc_middle] = ACTIONS(3873), + [sym__heredoc_end] = ACTIONS(3873), + [anon_sym_DOLLAR] = ACTIONS(3875), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3873), + [sym_comment] = ACTIONS(54), }, - [1770] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(5137), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), + [2251] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5616), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [1771] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(5137), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [2252] = { + [sym__concat] = ACTIONS(4621), + [anon_sym_RPAREN] = ACTIONS(4621), + [sym__special_characters] = ACTIONS(4621), + [anon_sym_DQUOTE] = ACTIONS(4621), + [anon_sym_DOLLAR] = ACTIONS(4623), + [sym_raw_string] = ACTIONS(4621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4621), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4621), + [anon_sym_BQUOTE] = ACTIONS(4621), + [anon_sym_LT_LPAREN] = ACTIONS(4621), + [anon_sym_GT_LPAREN] = ACTIONS(4621), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4621), }, - [1772] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(5137), - [sym_comment] = ACTIONS(56), + [2253] = { + [sym__concat] = ACTIONS(4625), + [anon_sym_RPAREN] = ACTIONS(4625), + [sym__special_characters] = ACTIONS(4625), + [anon_sym_DQUOTE] = ACTIONS(4625), + [anon_sym_DOLLAR] = ACTIONS(4627), + [sym_raw_string] = ACTIONS(4625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4625), + [anon_sym_BQUOTE] = ACTIONS(4625), + [anon_sym_LT_LPAREN] = ACTIONS(4625), + [anon_sym_GT_LPAREN] = ACTIONS(4625), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4625), }, - [1773] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(5137), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [2254] = { + [sym__concat] = ACTIONS(4629), + [anon_sym_RPAREN] = ACTIONS(4629), + [sym__special_characters] = ACTIONS(4629), + [anon_sym_DQUOTE] = ACTIONS(4629), + [anon_sym_DOLLAR] = ACTIONS(4631), + [sym_raw_string] = ACTIONS(4629), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4629), + [anon_sym_BQUOTE] = ACTIONS(4629), + [anon_sym_LT_LPAREN] = ACTIONS(4629), + [anon_sym_GT_LPAREN] = ACTIONS(4629), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4629), }, - [1774] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(5139), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), + [2255] = { + [sym__concat] = ACTIONS(4633), + [anon_sym_RPAREN] = ACTIONS(4633), + [sym__special_characters] = ACTIONS(4633), + [anon_sym_DQUOTE] = ACTIONS(4633), + [anon_sym_DOLLAR] = ACTIONS(4635), + [sym_raw_string] = ACTIONS(4633), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4633), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4633), + [anon_sym_BQUOTE] = ACTIONS(4633), + [anon_sym_LT_LPAREN] = ACTIONS(4633), + [anon_sym_GT_LPAREN] = ACTIONS(4633), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4633), }, - [1775] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(5139), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [2256] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5618), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [1776] = { - [sym_file_descriptor] = ACTIONS(4084), - [anon_sym_PIPE] = ACTIONS(5141), - [anon_sym_RPAREN] = ACTIONS(4084), - [anon_sym_PIPE_AMP] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(5141), - [anon_sym_GT] = ACTIONS(5141), - [anon_sym_GT_GT] = ACTIONS(4084), - [anon_sym_AMP_GT] = ACTIONS(5141), - [anon_sym_AMP_GT_GT] = ACTIONS(4084), - [anon_sym_LT_AMP] = ACTIONS(4084), - [anon_sym_GT_AMP] = ACTIONS(4084), - [anon_sym_LT_LT] = ACTIONS(5141), - [anon_sym_LT_LT_DASH] = ACTIONS(4084), - [anon_sym_LT_LT_LT] = ACTIONS(4084), - [anon_sym_BQUOTE] = ACTIONS(4084), - [sym_comment] = ACTIONS(56), + [2257] = { + [sym__concat] = ACTIONS(4639), + [anon_sym_RPAREN] = ACTIONS(4639), + [sym__special_characters] = ACTIONS(4639), + [anon_sym_DQUOTE] = ACTIONS(4639), + [anon_sym_DOLLAR] = ACTIONS(4641), + [sym_raw_string] = ACTIONS(4639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4639), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4639), + [anon_sym_BQUOTE] = ACTIONS(4639), + [anon_sym_LT_LPAREN] = ACTIONS(4639), + [anon_sym_GT_LPAREN] = ACTIONS(4639), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4639), }, - [1777] = { - [sym_simple_expansion] = STATE(1222), - [sym_expansion] = STATE(1222), - [aux_sym_heredoc_repeat1] = STATE(1910), - [sym__heredoc_middle] = ACTIONS(2446), - [sym__heredoc_end] = ACTIONS(5143), - [anon_sym_DOLLAR] = ACTIONS(2450), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2452), - [sym_comment] = ACTIONS(56), + [2258] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5620), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [1778] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [aux_sym_while_statement_repeat1] = STATE(1105), - [sym_file_descriptor] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(5145), - [anon_sym_RPAREN] = ACTIONS(5147), - [anon_sym_PIPE_AMP] = ACTIONS(5147), - [anon_sym_AMP_AMP] = ACTIONS(5147), - [anon_sym_PIPE_PIPE] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_GT_GT] = ACTIONS(992), - [anon_sym_AMP_GT] = ACTIONS(990), - [anon_sym_AMP_GT_GT] = ACTIONS(992), - [anon_sym_LT_AMP] = ACTIONS(992), - [anon_sym_GT_AMP] = ACTIONS(992), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(998), - [sym_comment] = ACTIONS(56), + [2259] = { + [sym__concat] = ACTIONS(4645), + [anon_sym_RPAREN] = ACTIONS(4645), + [sym__special_characters] = ACTIONS(4645), + [anon_sym_DQUOTE] = ACTIONS(4645), + [anon_sym_DOLLAR] = ACTIONS(4647), + [sym_raw_string] = ACTIONS(4645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4645), + [anon_sym_BQUOTE] = ACTIONS(4645), + [anon_sym_LT_LPAREN] = ACTIONS(4645), + [anon_sym_GT_LPAREN] = ACTIONS(4645), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4645), }, - [1779] = { - [sym_string] = STATE(2436), - [sym_simple_expansion] = STATE(2436), - [sym_string_expansion] = STATE(2436), - [sym_expansion] = STATE(2436), - [sym_command_substitution] = STATE(2436), - [sym_process_substitution] = STATE(2436), - [sym__special_characters] = ACTIONS(5149), - [anon_sym_DQUOTE] = ACTIONS(2258), - [anon_sym_DOLLAR] = ACTIONS(2260), - [sym_raw_string] = ACTIONS(5151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2264), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2266), - [anon_sym_BQUOTE] = ACTIONS(2268), - [anon_sym_LT_LPAREN] = ACTIONS(2270), - [anon_sym_GT_LPAREN] = ACTIONS(2270), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5149), + [2260] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5622), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [1780] = { - [aux_sym_concatenation_repeat1] = STATE(2437), - [sym_file_descriptor] = ACTIONS(790), - [sym__concat] = ACTIONS(3780), - [sym_variable_name] = ACTIONS(790), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [anon_sym_LT] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(1571), - [anon_sym_GT_GT] = ACTIONS(790), - [anon_sym_AMP_GT] = ACTIONS(1571), - [anon_sym_AMP_GT_GT] = ACTIONS(790), - [anon_sym_LT_AMP] = ACTIONS(790), - [anon_sym_GT_AMP] = ACTIONS(790), - [sym__special_characters] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(1571), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1571), + [2261] = { + [sym__concat] = ACTIONS(4651), + [anon_sym_RPAREN] = ACTIONS(4651), + [sym__special_characters] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(4651), + [anon_sym_DOLLAR] = ACTIONS(4653), + [sym_raw_string] = ACTIONS(4651), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4651), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4651), + [anon_sym_BQUOTE] = ACTIONS(4651), + [anon_sym_LT_LPAREN] = ACTIONS(4651), + [anon_sym_GT_LPAREN] = ACTIONS(4651), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4651), }, - [1781] = { - [sym_file_descriptor] = ACTIONS(794), - [sym__concat] = ACTIONS(794), - [sym_variable_name] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(794), - [anon_sym_AMP_GT] = ACTIONS(1573), - [anon_sym_AMP_GT_GT] = ACTIONS(794), - [anon_sym_LT_AMP] = ACTIONS(794), - [anon_sym_GT_AMP] = ACTIONS(794), - [sym__special_characters] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1573), + [2262] = { + [sym__concat] = ACTIONS(4655), + [anon_sym_RPAREN] = ACTIONS(4655), + [sym__special_characters] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4655), + [anon_sym_DOLLAR] = ACTIONS(4657), + [sym_raw_string] = ACTIONS(4655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4655), + [anon_sym_BQUOTE] = ACTIONS(4655), + [anon_sym_LT_LPAREN] = ACTIONS(4655), + [anon_sym_GT_LPAREN] = ACTIONS(4655), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4655), }, - [1782] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), + [2263] = { + [sym_file_descriptor] = ACTIONS(5178), + [sym__concat] = ACTIONS(5178), + [sym_variable_name] = ACTIONS(5178), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_RPAREN] = ACTIONS(5180), + [anon_sym_SEMI_SEMI] = ACTIONS(5180), + [anon_sym_PIPE_AMP] = ACTIONS(5180), + [anon_sym_AMP_AMP] = ACTIONS(5180), + [anon_sym_PIPE_PIPE] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5180), + [anon_sym_GT_GT] = ACTIONS(5180), + [anon_sym_AMP_GT] = ACTIONS(5180), + [anon_sym_AMP_GT_GT] = ACTIONS(5180), + [anon_sym_LT_AMP] = ACTIONS(5180), + [anon_sym_GT_AMP] = ACTIONS(5180), + [sym__special_characters] = ACTIONS(5180), + [anon_sym_DQUOTE] = ACTIONS(5180), + [anon_sym_DOLLAR] = ACTIONS(5180), + [sym_raw_string] = ACTIONS(5180), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5180), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5180), + [anon_sym_BQUOTE] = ACTIONS(5180), + [anon_sym_LT_LPAREN] = ACTIONS(5180), + [anon_sym_GT_LPAREN] = ACTIONS(5180), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5180), + [anon_sym_LF] = ACTIONS(5178), + [anon_sym_AMP] = ACTIONS(5180), }, - [1783] = { - [sym_file_descriptor] = ACTIONS(826), - [sym__concat] = ACTIONS(826), - [sym_variable_name] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1577), - [anon_sym_GT_GT] = ACTIONS(826), - [anon_sym_AMP_GT] = ACTIONS(1577), - [anon_sym_AMP_GT_GT] = ACTIONS(826), - [anon_sym_LT_AMP] = ACTIONS(826), - [anon_sym_GT_AMP] = ACTIONS(826), - [sym__special_characters] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1577), + [2264] = { + [sym_file_descriptor] = ACTIONS(5182), + [sym__concat] = ACTIONS(5182), + [sym_variable_name] = ACTIONS(5182), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_RPAREN] = ACTIONS(5184), + [anon_sym_SEMI_SEMI] = ACTIONS(5184), + [anon_sym_PIPE_AMP] = ACTIONS(5184), + [anon_sym_AMP_AMP] = ACTIONS(5184), + [anon_sym_PIPE_PIPE] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5184), + [anon_sym_GT_GT] = ACTIONS(5184), + [anon_sym_AMP_GT] = ACTIONS(5184), + [anon_sym_AMP_GT_GT] = ACTIONS(5184), + [anon_sym_LT_AMP] = ACTIONS(5184), + [anon_sym_GT_AMP] = ACTIONS(5184), + [sym__special_characters] = ACTIONS(5184), + [anon_sym_DQUOTE] = ACTIONS(5184), + [anon_sym_DOLLAR] = ACTIONS(5184), + [sym_raw_string] = ACTIONS(5184), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5184), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5184), + [anon_sym_BQUOTE] = ACTIONS(5184), + [anon_sym_LT_LPAREN] = ACTIONS(5184), + [anon_sym_GT_LPAREN] = ACTIONS(5184), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5184), + [anon_sym_SEMI] = ACTIONS(5184), + [anon_sym_LF] = ACTIONS(5182), + [anon_sym_AMP] = ACTIONS(5184), }, - [1784] = { - [sym_file_descriptor] = ACTIONS(830), - [sym__concat] = ACTIONS(830), - [sym_variable_name] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_PIPE_AMP] = ACTIONS(830), - [anon_sym_AMP_AMP] = ACTIONS(830), - [anon_sym_PIPE_PIPE] = ACTIONS(830), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(830), - [anon_sym_AMP_GT] = ACTIONS(1579), - [anon_sym_AMP_GT_GT] = ACTIONS(830), - [anon_sym_LT_AMP] = ACTIONS(830), - [anon_sym_GT_AMP] = ACTIONS(830), - [sym__special_characters] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(1579), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1579), + [2265] = { + [sym_file_descriptor] = ACTIONS(5186), + [sym__concat] = ACTIONS(5186), + [sym_variable_name] = ACTIONS(5186), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_RPAREN] = ACTIONS(5188), + [anon_sym_SEMI_SEMI] = ACTIONS(5188), + [anon_sym_PIPE_AMP] = ACTIONS(5188), + [anon_sym_AMP_AMP] = ACTIONS(5188), + [anon_sym_PIPE_PIPE] = ACTIONS(5188), + [anon_sym_LT] = ACTIONS(5188), + [anon_sym_GT] = ACTIONS(5188), + [anon_sym_GT_GT] = ACTIONS(5188), + [anon_sym_AMP_GT] = ACTIONS(5188), + [anon_sym_AMP_GT_GT] = ACTIONS(5188), + [anon_sym_LT_AMP] = ACTIONS(5188), + [anon_sym_GT_AMP] = ACTIONS(5188), + [sym__special_characters] = ACTIONS(5188), + [anon_sym_DQUOTE] = ACTIONS(5188), + [anon_sym_DOLLAR] = ACTIONS(5188), + [sym_raw_string] = ACTIONS(5188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5188), + [anon_sym_BQUOTE] = ACTIONS(5188), + [anon_sym_LT_LPAREN] = ACTIONS(5188), + [anon_sym_GT_LPAREN] = ACTIONS(5188), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5188), + [anon_sym_SEMI] = ACTIONS(5188), + [anon_sym_LF] = ACTIONS(5186), + [anon_sym_AMP] = ACTIONS(5188), }, - [1785] = { - [sym_file_descriptor] = ACTIONS(834), - [sym__concat] = ACTIONS(834), - [sym_variable_name] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1581), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_AMP_GT] = ACTIONS(1581), - [anon_sym_AMP_GT_GT] = ACTIONS(834), - [anon_sym_LT_AMP] = ACTIONS(834), - [anon_sym_GT_AMP] = ACTIONS(834), - [sym__special_characters] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(1581), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1581), + [2266] = { + [sym__concat] = ACTIONS(4621), + [anon_sym_SEMI_SEMI] = ACTIONS(4623), + [sym__special_characters] = ACTIONS(4623), + [anon_sym_DQUOTE] = ACTIONS(4623), + [anon_sym_DOLLAR] = ACTIONS(4623), + [sym_raw_string] = ACTIONS(4623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4623), + [anon_sym_BQUOTE] = ACTIONS(4623), + [anon_sym_LT_LPAREN] = ACTIONS(4623), + [anon_sym_GT_LPAREN] = ACTIONS(4623), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_LF] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4623), }, - [1786] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(5155), - [sym_comment] = ACTIONS(56), + [2267] = { + [sym__concat] = ACTIONS(4625), + [anon_sym_SEMI_SEMI] = ACTIONS(4627), + [sym__special_characters] = ACTIONS(4627), + [anon_sym_DQUOTE] = ACTIONS(4627), + [anon_sym_DOLLAR] = ACTIONS(4627), + [sym_raw_string] = ACTIONS(4627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4627), + [anon_sym_BQUOTE] = ACTIONS(4627), + [anon_sym_LT_LPAREN] = ACTIONS(4627), + [anon_sym_GT_LPAREN] = ACTIONS(4627), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4627), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_LF] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4627), }, - [1787] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2442), - [anon_sym_RBRACE] = ACTIONS(5157), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [2268] = { + [sym__concat] = ACTIONS(4629), + [anon_sym_SEMI_SEMI] = ACTIONS(4631), + [sym__special_characters] = ACTIONS(4631), + [anon_sym_DQUOTE] = ACTIONS(4631), + [anon_sym_DOLLAR] = ACTIONS(4631), + [sym_raw_string] = ACTIONS(4631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4631), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4631), + [anon_sym_BQUOTE] = ACTIONS(4631), + [anon_sym_LT_LPAREN] = ACTIONS(4631), + [anon_sym_GT_LPAREN] = ACTIONS(4631), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4631), + [anon_sym_SEMI] = ACTIONS(4631), + [anon_sym_LF] = ACTIONS(4629), + [anon_sym_AMP] = ACTIONS(4631), }, - [1788] = { - [sym_subscript] = STATE(2446), - [sym_variable_name] = ACTIONS(5161), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5163), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5165), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_AT] = ACTIONS(5163), - [anon_sym_QMARK] = ACTIONS(5163), - [anon_sym_0] = ACTIONS(5167), - [anon_sym__] = ACTIONS(5167), + [2269] = { + [sym__concat] = ACTIONS(4633), + [anon_sym_SEMI_SEMI] = ACTIONS(4635), + [sym__special_characters] = ACTIONS(4635), + [anon_sym_DQUOTE] = ACTIONS(4635), + [anon_sym_DOLLAR] = ACTIONS(4635), + [sym_raw_string] = ACTIONS(4635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4635), + [anon_sym_BQUOTE] = ACTIONS(4635), + [anon_sym_LT_LPAREN] = ACTIONS(4635), + [anon_sym_GT_LPAREN] = ACTIONS(4635), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_LF] = ACTIONS(4633), + [anon_sym_AMP] = ACTIONS(4635), }, - [1789] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2449), - [anon_sym_RBRACE] = ACTIONS(5169), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [2270] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [1790] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2452), - [anon_sym_RBRACE] = ACTIONS(5173), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [2271] = { + [sym__concat] = ACTIONS(4639), + [anon_sym_SEMI_SEMI] = ACTIONS(4641), + [sym__special_characters] = ACTIONS(4641), + [anon_sym_DQUOTE] = ACTIONS(4641), + [anon_sym_DOLLAR] = ACTIONS(4641), + [sym_raw_string] = ACTIONS(4641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4641), + [anon_sym_BQUOTE] = ACTIONS(4641), + [anon_sym_LT_LPAREN] = ACTIONS(4641), + [anon_sym_GT_LPAREN] = ACTIONS(4641), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4641), + [anon_sym_SEMI] = ACTIONS(4641), + [anon_sym_LF] = ACTIONS(4639), + [anon_sym_AMP] = ACTIONS(4641), }, - [1791] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(5177), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), + [2272] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5626), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [1792] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(5177), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [2273] = { + [sym__concat] = ACTIONS(4645), + [anon_sym_SEMI_SEMI] = ACTIONS(4647), + [sym__special_characters] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4647), + [anon_sym_DOLLAR] = ACTIONS(4647), + [sym_raw_string] = ACTIONS(4647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4647), + [anon_sym_BQUOTE] = ACTIONS(4647), + [anon_sym_LT_LPAREN] = ACTIONS(4647), + [anon_sym_GT_LPAREN] = ACTIONS(4647), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4647), + [anon_sym_LF] = ACTIONS(4645), + [anon_sym_AMP] = ACTIONS(4647), }, - [1793] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(5177), - [sym_comment] = ACTIONS(56), + [2274] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5628), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [1794] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(5177), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [2275] = { + [sym__concat] = ACTIONS(4651), + [anon_sym_SEMI_SEMI] = ACTIONS(4653), + [sym__special_characters] = ACTIONS(4653), + [anon_sym_DQUOTE] = ACTIONS(4653), + [anon_sym_DOLLAR] = ACTIONS(4653), + [sym_raw_string] = ACTIONS(4653), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4653), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4653), + [anon_sym_BQUOTE] = ACTIONS(4653), + [anon_sym_LT_LPAREN] = ACTIONS(4653), + [anon_sym_GT_LPAREN] = ACTIONS(4653), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4653), + [anon_sym_SEMI] = ACTIONS(4653), + [anon_sym_LF] = ACTIONS(4651), + [anon_sym_AMP] = ACTIONS(4653), }, - [1795] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(5179), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), + [2276] = { + [sym__concat] = ACTIONS(4655), + [anon_sym_SEMI_SEMI] = ACTIONS(4657), + [sym__special_characters] = ACTIONS(4657), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_DOLLAR] = ACTIONS(4657), + [sym_raw_string] = ACTIONS(4657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4657), + [anon_sym_BQUOTE] = ACTIONS(4657), + [anon_sym_LT_LPAREN] = ACTIONS(4657), + [anon_sym_GT_LPAREN] = ACTIONS(4657), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4657), + [anon_sym_SEMI] = ACTIONS(4657), + [anon_sym_LF] = ACTIONS(4655), + [anon_sym_AMP] = ACTIONS(4657), }, - [1796] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(5179), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [2277] = { + [sym_file_descriptor] = ACTIONS(1079), + [sym_variable_name] = ACTIONS(1079), + [anon_sym_esac] = ACTIONS(1081), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1081), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1081), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1081), + [anon_sym_LF] = ACTIONS(1079), + [anon_sym_AMP] = ACTIONS(1081), }, - [1797] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [aux_sym_while_statement_repeat1] = STATE(1196), - [sym_file_descriptor] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_PIPE_AMP] = ACTIONS(4957), - [anon_sym_AMP_AMP] = ACTIONS(4957), - [anon_sym_PIPE_PIPE] = ACTIONS(4957), - [anon_sym_LT] = ACTIONS(1082), - [anon_sym_GT] = ACTIONS(1082), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1082), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_BQUOTE] = ACTIONS(4957), - [sym_comment] = ACTIONS(56), + [2278] = { + [sym_concatenation] = STATE(2432), + [sym_string] = STATE(549), + [sym_simple_expansion] = STATE(549), + [sym_string_expansion] = STATE(549), + [sym_expansion] = STATE(549), + [sym_command_substitution] = STATE(549), + [sym_process_substitution] = STATE(549), + [aux_sym_for_statement_repeat1] = STATE(2432), + [anon_sym_RPAREN] = ACTIONS(5630), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(1089), + [sym_raw_string] = ACTIONS(1091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1095), + [anon_sym_BQUOTE] = ACTIONS(1097), + [anon_sym_LT_LPAREN] = ACTIONS(1099), + [anon_sym_GT_LPAREN] = ACTIONS(1099), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1091), }, - [1798] = { - [sym_compound_statement] = STATE(2455), - [anon_sym_LBRACE] = ACTIONS(2082), - [sym_comment] = ACTIONS(56), + [2279] = { + [aux_sym_concatenation_repeat1] = STATE(2434), + [sym_file_descriptor] = ACTIONS(1101), + [sym__concat] = ACTIONS(5632), + [sym_variable_name] = ACTIONS(1101), + [anon_sym_esac] = ACTIONS(1105), + [anon_sym_PIPE] = ACTIONS(1105), + [anon_sym_SEMI_SEMI] = ACTIONS(1105), + [anon_sym_PIPE_AMP] = ACTIONS(1105), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE_PIPE] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(1105), + [anon_sym_GT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1105), + [anon_sym_AMP_GT] = ACTIONS(1105), + [anon_sym_AMP_GT_GT] = ACTIONS(1105), + [anon_sym_LT_AMP] = ACTIONS(1105), + [anon_sym_GT_AMP] = ACTIONS(1105), + [sym__special_characters] = ACTIONS(1105), + [anon_sym_DQUOTE] = ACTIONS(1105), + [anon_sym_DOLLAR] = ACTIONS(1105), + [sym_raw_string] = ACTIONS(1105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1105), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), + [anon_sym_BQUOTE] = ACTIONS(1105), + [anon_sym_LT_LPAREN] = ACTIONS(1105), + [anon_sym_GT_LPAREN] = ACTIONS(1105), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(1105), + [anon_sym_LF] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1105), }, - [1799] = { - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5181), - [anon_sym_GT_GT] = ACTIONS(5183), - [anon_sym_AMP_GT] = ACTIONS(5181), - [anon_sym_AMP_GT_GT] = ACTIONS(5183), - [anon_sym_LT_AMP] = ACTIONS(5183), - [anon_sym_GT_AMP] = ACTIONS(5183), - [sym_comment] = ACTIONS(56), + [2280] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(2436), + [anon_sym_DQUOTE] = ACTIONS(5634), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), }, - [1800] = { - [sym_concatenation] = STATE(2359), + [2281] = { + [sym_string] = STATE(2438), + [anon_sym_DQUOTE] = ACTIONS(5362), + [anon_sym_DOLLAR] = ACTIONS(5636), + [sym_raw_string] = ACTIONS(5638), + [anon_sym_POUND] = ACTIONS(5636), + [anon_sym_DASH] = ACTIONS(5636), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5640), + [anon_sym_STAR] = ACTIONS(5636), + [anon_sym_AT] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5636), + [anon_sym_0] = ACTIONS(5642), + [anon_sym__] = ACTIONS(5642), + }, + [2282] = { + [aux_sym_concatenation_repeat1] = STATE(2434), + [sym_file_descriptor] = ACTIONS(1079), + [sym__concat] = ACTIONS(5632), + [sym_variable_name] = ACTIONS(1079), + [anon_sym_esac] = ACTIONS(1081), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1081), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1081), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1081), + [anon_sym_LF] = ACTIONS(1079), + [anon_sym_AMP] = ACTIONS(1081), + }, + [2283] = { + [sym_subscript] = STATE(2444), + [sym_variable_name] = ACTIONS(5644), + [anon_sym_DOLLAR] = ACTIONS(5646), + [anon_sym_POUND] = ACTIONS(5648), + [anon_sym_DASH] = ACTIONS(5646), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5650), + [anon_sym_STAR] = ACTIONS(5646), + [anon_sym_AT] = ACTIONS(5646), + [anon_sym_QMARK] = ACTIONS(5646), + [anon_sym_0] = ACTIONS(5652), + [anon_sym__] = ACTIONS(5652), + }, + [2284] = { + [sym_for_statement] = STATE(2445), + [sym_while_statement] = STATE(2445), + [sym_if_statement] = STATE(2445), + [sym_case_statement] = STATE(2445), + [sym_function_definition] = STATE(2445), + [sym_subshell] = STATE(2445), + [sym_pipeline] = STATE(2445), + [sym_list] = STATE(2445), + [sym_command] = STATE(2445), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(2445), + [sym_variable_assignment] = STATE(2446), + [sym_declaration_command] = STATE(2445), + [sym_unset_command] = STATE(2445), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [2285] = { + [sym_for_statement] = STATE(2447), + [sym_while_statement] = STATE(2447), + [sym_if_statement] = STATE(2447), + [sym_case_statement] = STATE(2447), + [sym_function_definition] = STATE(2447), + [sym_subshell] = STATE(2447), + [sym_pipeline] = STATE(2447), + [sym_list] = STATE(2447), + [sym_command] = STATE(2447), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(2447), + [sym_variable_assignment] = STATE(2448), + [sym_declaration_command] = STATE(2447), + [sym_unset_command] = STATE(2447), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), + }, + [2286] = { + [sym_for_statement] = STATE(2449), + [sym_while_statement] = STATE(2449), + [sym_if_statement] = STATE(2449), + [sym_case_statement] = STATE(2449), + [sym_function_definition] = STATE(2449), + [sym_subshell] = STATE(2449), + [sym_pipeline] = STATE(2449), + [sym_list] = STATE(2449), + [sym_command] = STATE(2449), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(2449), + [sym_variable_assignment] = STATE(2450), + [sym_declaration_command] = STATE(2449), + [sym_unset_command] = STATE(2449), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [2287] = { + [sym_file_redirect] = STATE(2451), + [sym_heredoc_redirect] = STATE(2451), + [sym_herestring_redirect] = STATE(2451), + [aux_sym_while_statement_repeat1] = STATE(2451), + [sym_file_descriptor] = ACTIONS(5013), + [anon_sym_esac] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1147), + [anon_sym_SEMI_SEMI] = ACTIONS(1147), + [anon_sym_PIPE_AMP] = ACTIONS(1147), + [anon_sym_AMP_AMP] = ACTIONS(1147), + [anon_sym_PIPE_PIPE] = ACTIONS(1147), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_GT_GT] = ACTIONS(5017), + [anon_sym_AMP_GT] = ACTIONS(5017), + [anon_sym_AMP_GT_GT] = ACTIONS(5017), + [anon_sym_LT_AMP] = ACTIONS(5017), + [anon_sym_GT_AMP] = ACTIONS(5017), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(5019), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_LF] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1147), + }, + [2288] = { + [anon_sym_RPAREN] = ACTIONS(5654), + [sym_comment] = ACTIONS(54), + }, + [2289] = { + [sym_file_redirect] = STATE(627), + [sym_file_descriptor] = ACTIONS(5656), + [anon_sym_esac] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_SEMI_SEMI] = ACTIONS(1217), + [anon_sym_PIPE_AMP] = ACTIONS(1217), + [anon_sym_AMP_AMP] = ACTIONS(1217), + [anon_sym_PIPE_PIPE] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(5658), + [anon_sym_GT] = ACTIONS(5658), + [anon_sym_GT_GT] = ACTIONS(5658), + [anon_sym_AMP_GT] = ACTIONS(5658), + [anon_sym_AMP_GT_GT] = ACTIONS(5658), + [anon_sym_LT_AMP] = ACTIONS(5658), + [anon_sym_GT_AMP] = ACTIONS(5658), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1217), + }, + [2290] = { + [sym_file_redirect] = STATE(2455), + [sym_heredoc_redirect] = STATE(2455), + [sym_herestring_redirect] = STATE(2455), + [aux_sym_while_statement_repeat1] = STATE(2455), + [sym_file_descriptor] = ACTIONS(5013), + [anon_sym_esac] = ACTIONS(1313), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_SEMI_SEMI] = ACTIONS(1313), + [anon_sym_PIPE_AMP] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_GT_GT] = ACTIONS(5017), + [anon_sym_AMP_GT] = ACTIONS(5017), + [anon_sym_AMP_GT_GT] = ACTIONS(5017), + [anon_sym_LT_AMP] = ACTIONS(5017), + [anon_sym_GT_AMP] = ACTIONS(5017), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(5019), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LF] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1313), + }, + [2291] = { + [sym_concatenation] = STATE(2456), + [sym_string] = STATE(2459), + [sym_array] = STATE(2456), + [sym_simple_expansion] = STATE(2459), + [sym_string_expansion] = STATE(2459), + [sym_expansion] = STATE(2459), + [sym_command_substitution] = STATE(2459), + [sym_process_substitution] = STATE(2459), + [sym__empty_value] = ACTIONS(5660), + [anon_sym_LPAREN] = ACTIONS(5662), + [sym__special_characters] = ACTIONS(5664), + [anon_sym_DQUOTE] = ACTIONS(5386), + [anon_sym_DOLLAR] = ACTIONS(4947), + [sym_raw_string] = ACTIONS(5666), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5668), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5670), + [anon_sym_BQUOTE] = ACTIONS(5672), + [anon_sym_LT_LPAREN] = ACTIONS(5674), + [anon_sym_GT_LPAREN] = ACTIONS(5674), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5666), + }, + [2292] = { + [sym_variable_name] = ACTIONS(388), + [anon_sym_esac] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(390), + [anon_sym_SEMI_SEMI] = ACTIONS(390), + [anon_sym_PIPE_AMP] = ACTIONS(390), + [anon_sym_AMP_AMP] = ACTIONS(390), + [anon_sym_PIPE_PIPE] = ACTIONS(390), + [sym__special_characters] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(390), + [sym_raw_string] = ACTIONS(390), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(390), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_BQUOTE] = ACTIONS(390), + [anon_sym_LT_LPAREN] = ACTIONS(390), + [anon_sym_GT_LPAREN] = ACTIONS(390), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(390), + [sym_word] = ACTIONS(390), + [anon_sym_SEMI] = ACTIONS(390), + [anon_sym_LF] = ACTIONS(388), + [anon_sym_AMP] = ACTIONS(390), + }, + [2293] = { [sym_string] = STATE(2460), [sym_simple_expansion] = STATE(2460), [sym_string_expansion] = STATE(2460), [sym_expansion] = STATE(2460), [sym_command_substitution] = STATE(2460), [sym_process_substitution] = STATE(2460), - [sym__special_characters] = ACTIONS(5185), - [anon_sym_DQUOTE] = ACTIONS(5187), - [anon_sym_DOLLAR] = ACTIONS(5189), - [sym_raw_string] = ACTIONS(5191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5193), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5195), - [anon_sym_BQUOTE] = ACTIONS(5197), - [anon_sym_LT_LPAREN] = ACTIONS(5199), - [anon_sym_GT_LPAREN] = ACTIONS(5199), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5201), - }, - [1801] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [aux_sym_while_statement_repeat1] = STATE(1196), - [sym_file_descriptor] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_PIPE_AMP] = ACTIONS(5013), - [anon_sym_AMP_AMP] = ACTIONS(5013), - [anon_sym_PIPE_PIPE] = ACTIONS(5013), - [anon_sym_LT] = ACTIONS(1082), - [anon_sym_GT] = ACTIONS(1082), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1082), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_BQUOTE] = ACTIONS(5013), - [sym_comment] = ACTIONS(56), - }, - [1802] = { - [aux_sym_concatenation_repeat1] = STATE(1123), - [sym__concat] = ACTIONS(2280), - [sym_variable_name] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(3434), - [anon_sym_PIPE_AMP] = ACTIONS(1303), - [anon_sym_AMP_AMP] = ACTIONS(1303), - [anon_sym_PIPE_PIPE] = ACTIONS(1303), - [sym__special_characters] = ACTIONS(3434), - [anon_sym_DQUOTE] = ACTIONS(1303), - [anon_sym_DOLLAR] = ACTIONS(3434), - [sym_raw_string] = ACTIONS(1303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1303), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1303), - [anon_sym_BQUOTE] = ACTIONS(1303), - [anon_sym_LT_LPAREN] = ACTIONS(1303), - [anon_sym_GT_LPAREN] = ACTIONS(1303), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3434), - [sym_word] = ACTIONS(1307), - }, - [1803] = { - [aux_sym_concatenation_repeat1] = STATE(1123), - [sym__concat] = ACTIONS(2280), - [sym_variable_name] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(3428), - [anon_sym_PIPE_AMP] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [sym__special_characters] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(3428), - [sym_raw_string] = ACTIONS(1279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), - [anon_sym_BQUOTE] = ACTIONS(1279), - [anon_sym_LT_LPAREN] = ACTIONS(1279), - [anon_sym_GT_LPAREN] = ACTIONS(1279), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3428), - [sym_word] = ACTIONS(1281), - }, - [1804] = { - [sym__concat] = ACTIONS(1890), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3066), - [sym_word] = ACTIONS(1892), - }, - [1805] = { - [aux_sym_concatenation_repeat1] = STATE(1805), - [sym__concat] = ACTIONS(5203), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3066), - [sym_word] = ACTIONS(1892), - }, - [1806] = { - [sym__concat] = ACTIONS(1927), - [sym_variable_name] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), - [anon_sym_BQUOTE] = ACTIONS(1927), - [anon_sym_LT_LPAREN] = ACTIONS(1927), - [anon_sym_GT_LPAREN] = ACTIONS(1927), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3071), - [sym_word] = ACTIONS(1929), - }, - [1807] = { - [sym_concatenation] = STATE(2468), - [sym_string] = STATE(2467), - [sym_simple_expansion] = STATE(2467), - [sym_string_expansion] = STATE(2467), - [sym_expansion] = STATE(2467), - [sym_command_substitution] = STATE(2467), - [sym_process_substitution] = STATE(2467), - [anon_sym_RBRACE] = ACTIONS(5206), - [sym__special_characters] = ACTIONS(5208), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(5210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5212), - }, - [1808] = { - [sym__concat] = ACTIONS(1972), - [sym_variable_name] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [sym__special_characters] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(3081), - [sym_raw_string] = ACTIONS(1972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1972), - [anon_sym_LT_LPAREN] = ACTIONS(1972), - [anon_sym_GT_LPAREN] = ACTIONS(1972), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3081), - [sym_word] = ACTIONS(1974), - }, - [1809] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5214), - }, - [1810] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5216), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1811] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(5218), - [sym_comment] = ACTIONS(56), - }, - [1812] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2474), - [anon_sym_RBRACE] = ACTIONS(5220), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5222), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1813] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2477), - [anon_sym_RBRACE] = ACTIONS(5224), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5226), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1814] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2479), - [anon_sym_RBRACE] = ACTIONS(5206), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5228), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1815] = { - [sym__concat] = ACTIONS(2026), - [sym_variable_name] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PIPE_AMP] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [sym__special_characters] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(2026), - [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), - [anon_sym_BQUOTE] = ACTIONS(2026), - [anon_sym_LT_LPAREN] = ACTIONS(2026), - [anon_sym_GT_LPAREN] = ACTIONS(2026), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3099), - [sym_word] = ACTIONS(2028), - }, - [1816] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5230), - }, - [1817] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5232), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1818] = { - [sym__concat] = ACTIONS(2034), - [sym_variable_name] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_PIPE_AMP] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [sym__special_characters] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(2034), - [anon_sym_DOLLAR] = ACTIONS(3105), - [sym_raw_string] = ACTIONS(2034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), - [anon_sym_BQUOTE] = ACTIONS(2034), - [anon_sym_LT_LPAREN] = ACTIONS(2034), - [anon_sym_GT_LPAREN] = ACTIONS(2034), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3105), - [sym_word] = ACTIONS(2036), - }, - [1819] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5234), - }, - [1820] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5206), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1821] = { - [sym__concat] = ACTIONS(2196), - [sym_variable_name] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_PIPE_AMP] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [sym__special_characters] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_DOLLAR] = ACTIONS(3109), - [sym_raw_string] = ACTIONS(2196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), - [anon_sym_BQUOTE] = ACTIONS(2196), - [anon_sym_LT_LPAREN] = ACTIONS(2196), - [anon_sym_GT_LPAREN] = ACTIONS(2196), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3109), - [sym_word] = ACTIONS(2198), - }, - [1822] = { - [sym__concat] = ACTIONS(2402), - [sym_variable_name] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_PIPE_AMP] = ACTIONS(2402), - [anon_sym_AMP_AMP] = ACTIONS(2402), - [anon_sym_PIPE_PIPE] = ACTIONS(2402), - [sym__special_characters] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_DOLLAR] = ACTIONS(3111), - [sym_raw_string] = ACTIONS(2402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), - [anon_sym_BQUOTE] = ACTIONS(2402), - [anon_sym_LT_LPAREN] = ACTIONS(2402), - [anon_sym_GT_LPAREN] = ACTIONS(2402), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3111), - [sym_word] = ACTIONS(2404), - }, - [1823] = { - [sym__concat] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3066), - [sym_word] = ACTIONS(1892), - }, - [1824] = { - [aux_sym_concatenation_repeat1] = STATE(1824), - [sym__concat] = ACTIONS(5236), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3066), - [sym_word] = ACTIONS(1892), - }, - [1825] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), - [anon_sym_BQUOTE] = ACTIONS(1927), - [anon_sym_LT_LPAREN] = ACTIONS(1927), - [anon_sym_GT_LPAREN] = ACTIONS(1927), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3071), - [sym_word] = ACTIONS(1929), - }, - [1826] = { - [sym_concatenation] = STATE(2486), - [sym_string] = STATE(2485), - [sym_simple_expansion] = STATE(2485), - [sym_string_expansion] = STATE(2485), - [sym_expansion] = STATE(2485), - [sym_command_substitution] = STATE(2485), - [sym_process_substitution] = STATE(2485), - [anon_sym_RBRACE] = ACTIONS(5239), - [sym__special_characters] = ACTIONS(5241), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(5243), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5245), - }, - [1827] = { - [sym__concat] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [sym__special_characters] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(3081), - [sym_raw_string] = ACTIONS(1972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1972), - [anon_sym_LT_LPAREN] = ACTIONS(1972), - [anon_sym_GT_LPAREN] = ACTIONS(1972), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3081), - [sym_word] = ACTIONS(1974), - }, - [1828] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5247), - }, - [1829] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5249), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1830] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(5251), - [sym_comment] = ACTIONS(56), - }, - [1831] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2492), - [anon_sym_RBRACE] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5255), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1832] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2495), - [anon_sym_RBRACE] = ACTIONS(5257), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5259), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1833] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2497), - [anon_sym_RBRACE] = ACTIONS(5239), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5261), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1834] = { - [sym__concat] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PIPE_AMP] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [sym__special_characters] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(2026), - [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), - [anon_sym_BQUOTE] = ACTIONS(2026), - [anon_sym_LT_LPAREN] = ACTIONS(2026), - [anon_sym_GT_LPAREN] = ACTIONS(2026), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3099), - [sym_word] = ACTIONS(2028), - }, - [1835] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5263), - }, - [1836] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5265), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1837] = { - [sym__concat] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_PIPE_AMP] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [sym__special_characters] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(2034), - [anon_sym_DOLLAR] = ACTIONS(3105), - [sym_raw_string] = ACTIONS(2034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), - [anon_sym_BQUOTE] = ACTIONS(2034), - [anon_sym_LT_LPAREN] = ACTIONS(2034), - [anon_sym_GT_LPAREN] = ACTIONS(2034), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3105), - [sym_word] = ACTIONS(2036), - }, - [1838] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5267), - }, - [1839] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5239), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1840] = { - [sym__concat] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_PIPE_AMP] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [sym__special_characters] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_DOLLAR] = ACTIONS(3109), - [sym_raw_string] = ACTIONS(2196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), - [anon_sym_BQUOTE] = ACTIONS(2196), - [anon_sym_LT_LPAREN] = ACTIONS(2196), - [anon_sym_GT_LPAREN] = ACTIONS(2196), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3109), - [sym_word] = ACTIONS(2198), - }, - [1841] = { - [sym__concat] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_PIPE_AMP] = ACTIONS(2402), - [anon_sym_AMP_AMP] = ACTIONS(2402), - [anon_sym_PIPE_PIPE] = ACTIONS(2402), - [sym__special_characters] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_DOLLAR] = ACTIONS(3111), - [sym_raw_string] = ACTIONS(2402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), - [anon_sym_BQUOTE] = ACTIONS(2402), - [anon_sym_LT_LPAREN] = ACTIONS(2402), - [anon_sym_GT_LPAREN] = ACTIONS(2402), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3111), - [sym_word] = ACTIONS(2404), - }, - [1842] = { - [sym_file_descriptor] = ACTIONS(3293), - [sym__concat] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(4614), - [anon_sym_PIPE_AMP] = ACTIONS(3293), - [anon_sym_AMP_AMP] = ACTIONS(3293), - [anon_sym_PIPE_PIPE] = ACTIONS(3293), - [anon_sym_EQ_TILDE] = ACTIONS(4614), - [anon_sym_EQ_EQ] = ACTIONS(4614), - [anon_sym_LT] = ACTIONS(4614), - [anon_sym_GT] = ACTIONS(4614), - [anon_sym_GT_GT] = ACTIONS(3293), - [anon_sym_AMP_GT] = ACTIONS(4614), - [anon_sym_AMP_GT_GT] = ACTIONS(3293), - [anon_sym_LT_AMP] = ACTIONS(3293), - [anon_sym_GT_AMP] = ACTIONS(3293), - [anon_sym_LT_LT] = ACTIONS(4614), - [anon_sym_LT_LT_DASH] = ACTIONS(3293), - [anon_sym_LT_LT_LT] = ACTIONS(3293), - [sym__special_characters] = ACTIONS(4614), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_DOLLAR] = ACTIONS(4614), - [sym_raw_string] = ACTIONS(3293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), - [anon_sym_BQUOTE] = ACTIONS(3293), - [anon_sym_LT_LPAREN] = ACTIONS(3293), - [anon_sym_GT_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3295), - }, - [1843] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5269), - [sym_comment] = ACTIONS(56), - }, - [1844] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5271), - [sym_comment] = ACTIONS(56), - }, - [1845] = { - [anon_sym_RBRACE] = ACTIONS(5271), - [sym_comment] = ACTIONS(56), - }, - [1846] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2504), - [anon_sym_RBRACE] = ACTIONS(5273), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1847] = { - [sym_file_descriptor] = ACTIONS(3357), - [sym__concat] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(4622), - [anon_sym_PIPE_AMP] = ACTIONS(3357), - [anon_sym_AMP_AMP] = ACTIONS(3357), - [anon_sym_PIPE_PIPE] = ACTIONS(3357), - [anon_sym_EQ_TILDE] = ACTIONS(4622), - [anon_sym_EQ_EQ] = ACTIONS(4622), - [anon_sym_LT] = ACTIONS(4622), - [anon_sym_GT] = ACTIONS(4622), - [anon_sym_GT_GT] = ACTIONS(3357), - [anon_sym_AMP_GT] = ACTIONS(4622), - [anon_sym_AMP_GT_GT] = ACTIONS(3357), - [anon_sym_LT_AMP] = ACTIONS(3357), - [anon_sym_GT_AMP] = ACTIONS(3357), - [anon_sym_LT_LT] = ACTIONS(4622), - [anon_sym_LT_LT_DASH] = ACTIONS(3357), - [anon_sym_LT_LT_LT] = ACTIONS(3357), - [sym__special_characters] = ACTIONS(4622), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_DOLLAR] = ACTIONS(4622), - [sym_raw_string] = ACTIONS(3357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), - [anon_sym_BQUOTE] = ACTIONS(3357), - [anon_sym_LT_LPAREN] = ACTIONS(3357), - [anon_sym_GT_LPAREN] = ACTIONS(3357), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3359), - }, - [1848] = { - [sym_concatenation] = STATE(2507), - [sym_string] = STATE(2506), - [sym_simple_expansion] = STATE(2506), - [sym_string_expansion] = STATE(2506), - [sym_expansion] = STATE(2506), - [sym_command_substitution] = STATE(2506), - [sym_process_substitution] = STATE(2506), - [anon_sym_RBRACE] = ACTIONS(5271), - [sym__special_characters] = ACTIONS(5275), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(5277), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5279), - }, - [1849] = { - [sym_file_descriptor] = ACTIONS(3402), - [sym__concat] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(4630), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [anon_sym_EQ_TILDE] = ACTIONS(4630), - [anon_sym_EQ_EQ] = ACTIONS(4630), - [anon_sym_LT] = ACTIONS(4630), - [anon_sym_GT] = ACTIONS(4630), - [anon_sym_GT_GT] = ACTIONS(3402), - [anon_sym_AMP_GT] = ACTIONS(4630), - [anon_sym_AMP_GT_GT] = ACTIONS(3402), - [anon_sym_LT_AMP] = ACTIONS(3402), - [anon_sym_GT_AMP] = ACTIONS(3402), - [anon_sym_LT_LT] = ACTIONS(4630), - [anon_sym_LT_LT_DASH] = ACTIONS(3402), - [anon_sym_LT_LT_LT] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(4630), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(4630), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3404), - }, - [1850] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5281), - }, - [1851] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5283), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1852] = { - [sym_file_descriptor] = ACTIONS(3410), - [sym__concat] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(4636), - [anon_sym_PIPE_AMP] = ACTIONS(3410), - [anon_sym_AMP_AMP] = ACTIONS(3410), - [anon_sym_PIPE_PIPE] = ACTIONS(3410), - [anon_sym_EQ_TILDE] = ACTIONS(4636), - [anon_sym_EQ_EQ] = ACTIONS(4636), - [anon_sym_LT] = ACTIONS(4636), - [anon_sym_GT] = ACTIONS(4636), - [anon_sym_GT_GT] = ACTIONS(3410), - [anon_sym_AMP_GT] = ACTIONS(4636), - [anon_sym_AMP_GT_GT] = ACTIONS(3410), - [anon_sym_LT_AMP] = ACTIONS(3410), - [anon_sym_GT_AMP] = ACTIONS(3410), - [anon_sym_LT_LT] = ACTIONS(4636), - [anon_sym_LT_LT_DASH] = ACTIONS(3410), - [anon_sym_LT_LT_LT] = ACTIONS(3410), - [sym__special_characters] = ACTIONS(4636), - [anon_sym_DQUOTE] = ACTIONS(3410), - [anon_sym_DOLLAR] = ACTIONS(4636), - [sym_raw_string] = ACTIONS(3410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), - [anon_sym_BQUOTE] = ACTIONS(3410), - [anon_sym_LT_LPAREN] = ACTIONS(3410), - [anon_sym_GT_LPAREN] = ACTIONS(3410), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3412), - }, - [1853] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5285), - }, - [1854] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5287), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1855] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5289), - }, - [1856] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5271), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1857] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2514), - [anon_sym_RBRACE] = ACTIONS(5291), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1858] = { - [sym_file_descriptor] = ACTIONS(3422), - [sym__concat] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(4646), - [anon_sym_PIPE_AMP] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_EQ_TILDE] = ACTIONS(4646), - [anon_sym_EQ_EQ] = ACTIONS(4646), - [anon_sym_LT] = ACTIONS(4646), - [anon_sym_GT] = ACTIONS(4646), - [anon_sym_GT_GT] = ACTIONS(3422), - [anon_sym_AMP_GT] = ACTIONS(4646), - [anon_sym_AMP_GT_GT] = ACTIONS(3422), - [anon_sym_LT_AMP] = ACTIONS(3422), - [anon_sym_GT_AMP] = ACTIONS(3422), - [anon_sym_LT_LT] = ACTIONS(4646), - [anon_sym_LT_LT_DASH] = ACTIONS(3422), - [anon_sym_LT_LT_LT] = ACTIONS(3422), - [sym__special_characters] = ACTIONS(4646), - [anon_sym_DQUOTE] = ACTIONS(3422), - [anon_sym_DOLLAR] = ACTIONS(4646), - [sym_raw_string] = ACTIONS(3422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), - [anon_sym_BQUOTE] = ACTIONS(3422), - [anon_sym_LT_LPAREN] = ACTIONS(3422), - [anon_sym_GT_LPAREN] = ACTIONS(3422), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3424), - }, - [1859] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2516), - [anon_sym_RBRACE] = ACTIONS(5293), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1860] = { - [sym_file_redirect] = STATE(2415), - [sym_file_descriptor] = ACTIONS(3804), - [anon_sym_PIPE] = ACTIONS(5001), - [anon_sym_PIPE_AMP] = ACTIONS(5003), - [anon_sym_AMP_AMP] = ACTIONS(5003), - [anon_sym_PIPE_PIPE] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(3806), - [anon_sym_GT] = ACTIONS(3806), - [anon_sym_GT_GT] = ACTIONS(3808), - [anon_sym_AMP_GT] = ACTIONS(3806), - [anon_sym_AMP_GT_GT] = ACTIONS(3808), - [anon_sym_LT_AMP] = ACTIONS(3808), - [anon_sym_GT_AMP] = ACTIONS(3808), - [anon_sym_BQUOTE] = ACTIONS(5003), - [sym_comment] = ACTIONS(56), - }, - [1861] = { - [aux_sym_concatenation_repeat1] = STATE(1864), - [sym_file_descriptor] = ACTIONS(1241), - [sym__concat] = ACTIONS(3980), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_PIPE_AMP] = ACTIONS(1241), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_AMP_GT] = ACTIONS(1243), - [anon_sym_AMP_GT_GT] = ACTIONS(1241), - [anon_sym_LT_AMP] = ACTIONS(1241), - [anon_sym_GT_AMP] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1243), - [anon_sym_LT_LT_DASH] = ACTIONS(1241), - [anon_sym_LT_LT_LT] = ACTIONS(1241), - [anon_sym_BQUOTE] = ACTIONS(1241), - [sym_comment] = ACTIONS(56), - }, - [1862] = { - [aux_sym_concatenation_repeat1] = STATE(1864), - [sym_file_descriptor] = ACTIONS(1245), - [sym__concat] = ACTIONS(3980), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_PIPE_AMP] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_AMP_GT] = ACTIONS(1247), - [anon_sym_AMP_GT_GT] = ACTIONS(1245), - [anon_sym_LT_AMP] = ACTIONS(1245), - [anon_sym_GT_AMP] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1247), - [anon_sym_LT_LT_DASH] = ACTIONS(1245), - [anon_sym_LT_LT_LT] = ACTIONS(1245), - [anon_sym_BQUOTE] = ACTIONS(1245), - [sym_comment] = ACTIONS(56), - }, - [1863] = { - [sym_string] = STATE(2517), - [sym_simple_expansion] = STATE(2517), - [sym_string_expansion] = STATE(2517), - [sym_expansion] = STATE(2517), - [sym_command_substitution] = STATE(2517), - [sym_process_substitution] = STATE(2517), - [sym__special_characters] = ACTIONS(5295), - [anon_sym_DQUOTE] = ACTIONS(2380), - [anon_sym_DOLLAR] = ACTIONS(2382), - [sym_raw_string] = ACTIONS(5297), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2386), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2388), - [anon_sym_BQUOTE] = ACTIONS(2390), - [anon_sym_LT_LPAREN] = ACTIONS(2392), - [anon_sym_GT_LPAREN] = ACTIONS(2392), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5295), - }, - [1864] = { - [aux_sym_concatenation_repeat1] = STATE(2518), - [sym_file_descriptor] = ACTIONS(790), - [sym__concat] = ACTIONS(3980), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [anon_sym_LT] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(1571), - [anon_sym_GT_GT] = ACTIONS(790), - [anon_sym_AMP_GT] = ACTIONS(1571), - [anon_sym_AMP_GT_GT] = ACTIONS(790), - [anon_sym_LT_AMP] = ACTIONS(790), - [anon_sym_GT_AMP] = ACTIONS(790), - [anon_sym_LT_LT] = ACTIONS(1571), - [anon_sym_LT_LT_DASH] = ACTIONS(790), - [anon_sym_LT_LT_LT] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [sym_comment] = ACTIONS(56), - }, - [1865] = { - [sym_file_descriptor] = ACTIONS(794), - [sym__concat] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(794), - [anon_sym_AMP_GT] = ACTIONS(1573), - [anon_sym_AMP_GT_GT] = ACTIONS(794), - [anon_sym_LT_AMP] = ACTIONS(794), - [anon_sym_GT_AMP] = ACTIONS(794), - [anon_sym_LT_LT] = ACTIONS(1573), - [anon_sym_LT_LT_DASH] = ACTIONS(794), - [anon_sym_LT_LT_LT] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [sym_comment] = ACTIONS(56), - }, - [1866] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(5299), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1867] = { - [sym_file_descriptor] = ACTIONS(826), - [sym__concat] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1577), - [anon_sym_GT_GT] = ACTIONS(826), - [anon_sym_AMP_GT] = ACTIONS(1577), - [anon_sym_AMP_GT_GT] = ACTIONS(826), - [anon_sym_LT_AMP] = ACTIONS(826), - [anon_sym_GT_AMP] = ACTIONS(826), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT_LT_DASH] = ACTIONS(826), - [anon_sym_LT_LT_LT] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [sym_comment] = ACTIONS(56), - }, - [1868] = { - [sym_file_descriptor] = ACTIONS(830), - [sym__concat] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_PIPE_AMP] = ACTIONS(830), - [anon_sym_AMP_AMP] = ACTIONS(830), - [anon_sym_PIPE_PIPE] = ACTIONS(830), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(830), - [anon_sym_AMP_GT] = ACTIONS(1579), - [anon_sym_AMP_GT_GT] = ACTIONS(830), - [anon_sym_LT_AMP] = ACTIONS(830), - [anon_sym_GT_AMP] = ACTIONS(830), - [anon_sym_LT_LT] = ACTIONS(1579), - [anon_sym_LT_LT_DASH] = ACTIONS(830), - [anon_sym_LT_LT_LT] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_comment] = ACTIONS(56), - }, - [1869] = { - [sym_file_descriptor] = ACTIONS(834), - [sym__concat] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1581), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_AMP_GT] = ACTIONS(1581), - [anon_sym_AMP_GT_GT] = ACTIONS(834), - [anon_sym_LT_AMP] = ACTIONS(834), - [anon_sym_GT_AMP] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(1581), - [anon_sym_LT_LT_DASH] = ACTIONS(834), - [anon_sym_LT_LT_LT] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [sym_comment] = ACTIONS(56), - }, - [1870] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(5301), - [sym_comment] = ACTIONS(56), - }, - [1871] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2523), - [anon_sym_RBRACE] = ACTIONS(5303), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5305), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1872] = { - [sym_subscript] = STATE(2527), - [sym_variable_name] = ACTIONS(5307), - [anon_sym_DOLLAR] = ACTIONS(5309), - [anon_sym_DASH] = ACTIONS(5309), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5311), - [anon_sym_STAR] = ACTIONS(5309), - [anon_sym_AT] = ACTIONS(5309), - [anon_sym_QMARK] = ACTIONS(5309), - [anon_sym_0] = ACTIONS(5313), - [anon_sym__] = ACTIONS(5313), - }, - [1873] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2530), - [anon_sym_RBRACE] = ACTIONS(5315), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5317), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1874] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2533), - [anon_sym_RBRACE] = ACTIONS(5319), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5321), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1875] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(5323), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1876] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(5323), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1877] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(5323), - [sym_comment] = ACTIONS(56), - }, - [1878] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(5323), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1879] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(5325), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [1880] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(5325), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1881] = { - [sym_file_redirect] = STATE(540), - [sym_heredoc_redirect] = STATE(540), - [sym_herestring_redirect] = STATE(540), - [aux_sym_while_statement_repeat1] = STATE(1196), - [sym_file_descriptor] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(5145), - [anon_sym_PIPE_AMP] = ACTIONS(5147), - [anon_sym_AMP_AMP] = ACTIONS(5147), - [anon_sym_PIPE_PIPE] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(1082), - [anon_sym_GT] = ACTIONS(1082), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1082), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_LT_LT_DASH] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_BQUOTE] = ACTIONS(5147), - [sym_comment] = ACTIONS(56), - }, - [1882] = { - [anon_sym_esac] = ACTIONS(4400), - [anon_sym_PIPE] = ACTIONS(4400), - [anon_sym_RPAREN] = ACTIONS(4400), - [anon_sym_SEMI_SEMI] = ACTIONS(4400), - [anon_sym_PIPE_AMP] = ACTIONS(4400), - [anon_sym_AMP_AMP] = ACTIONS(4400), - [anon_sym_PIPE_PIPE] = ACTIONS(4400), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4400), - [anon_sym_LF] = ACTIONS(4400), - [anon_sym_AMP] = ACTIONS(4400), - }, - [1883] = { - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_AMP_GT] = ACTIONS(1892), - [anon_sym_AMP_GT_GT] = ACTIONS(1892), - [anon_sym_LT_AMP] = ACTIONS(1892), - [anon_sym_GT_AMP] = ACTIONS(1892), - [anon_sym_LT_LT] = ACTIONS(1892), - [anon_sym_LT_LT_DASH] = ACTIONS(1892), - [anon_sym_LT_LT_LT] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [1884] = { - [aux_sym_concatenation_repeat1] = STATE(1884), - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(5327), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_AMP_GT] = ACTIONS(1892), - [anon_sym_AMP_GT_GT] = ACTIONS(1892), - [anon_sym_LT_AMP] = ACTIONS(1892), - [anon_sym_GT_AMP] = ACTIONS(1892), - [anon_sym_LT_LT] = ACTIONS(1892), - [anon_sym_LT_LT_DASH] = ACTIONS(1892), - [anon_sym_LT_LT_LT] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [1885] = { - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1929), - [anon_sym_PIPE_AMP] = ACTIONS(1929), - [anon_sym_AMP_AMP] = ACTIONS(1929), - [anon_sym_PIPE_PIPE] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_GT_GT] = ACTIONS(1929), - [anon_sym_AMP_GT] = ACTIONS(1929), - [anon_sym_AMP_GT_GT] = ACTIONS(1929), - [anon_sym_LT_AMP] = ACTIONS(1929), - [anon_sym_GT_AMP] = ACTIONS(1929), - [anon_sym_LT_LT] = ACTIONS(1929), - [anon_sym_LT_LT_DASH] = ACTIONS(1929), - [anon_sym_LT_LT_LT] = ACTIONS(1929), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - }, - [1886] = { - [sym_concatenation] = STATE(2539), - [sym_string] = STATE(2538), - [sym_simple_expansion] = STATE(2538), - [sym_string_expansion] = STATE(2538), - [sym_expansion] = STATE(2538), - [sym_command_substitution] = STATE(2538), - [sym_process_substitution] = STATE(2538), - [anon_sym_RBRACE] = ACTIONS(5330), - [sym__special_characters] = ACTIONS(5332), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(5334), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5336), - }, - [1887] = { - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1974), - [anon_sym_GT_GT] = ACTIONS(1974), - [anon_sym_AMP_GT] = ACTIONS(1974), - [anon_sym_AMP_GT_GT] = ACTIONS(1974), - [anon_sym_LT_AMP] = ACTIONS(1974), - [anon_sym_GT_AMP] = ACTIONS(1974), - [anon_sym_LT_LT] = ACTIONS(1974), - [anon_sym_LT_LT_DASH] = ACTIONS(1974), - [anon_sym_LT_LT_LT] = ACTIONS(1974), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_LF] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - }, - [1888] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5338), - }, - [1889] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5340), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1890] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(5342), - [sym_comment] = ACTIONS(56), - }, - [1891] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2545), - [anon_sym_RBRACE] = ACTIONS(5344), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5346), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1892] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2548), - [anon_sym_RBRACE] = ACTIONS(5348), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5350), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1893] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2550), - [anon_sym_RBRACE] = ACTIONS(5330), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5352), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1894] = { - [sym_file_descriptor] = ACTIONS(2026), - [sym__concat] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_SEMI_SEMI] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(2028), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [anon_sym_LT] = ACTIONS(2028), - [anon_sym_GT] = ACTIONS(2028), - [anon_sym_GT_GT] = ACTIONS(2028), - [anon_sym_AMP_GT] = ACTIONS(2028), - [anon_sym_AMP_GT_GT] = ACTIONS(2028), - [anon_sym_LT_AMP] = ACTIONS(2028), - [anon_sym_GT_AMP] = ACTIONS(2028), - [anon_sym_LT_LT] = ACTIONS(2028), - [anon_sym_LT_LT_DASH] = ACTIONS(2028), - [anon_sym_LT_LT_LT] = ACTIONS(2028), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - }, - [1895] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5354), - }, - [1896] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5356), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1897] = { - [sym_file_descriptor] = ACTIONS(2034), - [sym__concat] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_SEMI_SEMI] = ACTIONS(2036), - [anon_sym_PIPE_AMP] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [anon_sym_LT] = ACTIONS(2036), - [anon_sym_GT] = ACTIONS(2036), - [anon_sym_GT_GT] = ACTIONS(2036), - [anon_sym_AMP_GT] = ACTIONS(2036), - [anon_sym_AMP_GT_GT] = ACTIONS(2036), - [anon_sym_LT_AMP] = ACTIONS(2036), - [anon_sym_GT_AMP] = ACTIONS(2036), - [anon_sym_LT_LT] = ACTIONS(2036), - [anon_sym_LT_LT_DASH] = ACTIONS(2036), - [anon_sym_LT_LT_LT] = ACTIONS(2036), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_LF] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - }, - [1898] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5358), - }, - [1899] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5330), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1900] = { - [sym_file_descriptor] = ACTIONS(2196), - [sym__concat] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_SEMI_SEMI] = ACTIONS(2198), - [anon_sym_PIPE_AMP] = ACTIONS(2198), - [anon_sym_AMP_AMP] = ACTIONS(2198), - [anon_sym_PIPE_PIPE] = ACTIONS(2198), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_GT] = ACTIONS(2198), - [anon_sym_GT_GT] = ACTIONS(2198), - [anon_sym_AMP_GT] = ACTIONS(2198), - [anon_sym_AMP_GT_GT] = ACTIONS(2198), - [anon_sym_LT_AMP] = ACTIONS(2198), - [anon_sym_GT_AMP] = ACTIONS(2198), - [anon_sym_LT_LT] = ACTIONS(2198), - [anon_sym_LT_LT_DASH] = ACTIONS(2198), - [anon_sym_LT_LT_LT] = ACTIONS(2198), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - }, - [1901] = { - [sym_file_descriptor] = ACTIONS(2402), - [sym__concat] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_SEMI_SEMI] = ACTIONS(2404), - [anon_sym_PIPE_AMP] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2404), - [anon_sym_GT] = ACTIONS(2404), - [anon_sym_GT_GT] = ACTIONS(2404), - [anon_sym_AMP_GT] = ACTIONS(2404), - [anon_sym_AMP_GT_GT] = ACTIONS(2404), - [anon_sym_LT_AMP] = ACTIONS(2404), - [anon_sym_GT_AMP] = ACTIONS(2404), - [anon_sym_LT_LT] = ACTIONS(2404), - [anon_sym_LT_LT_DASH] = ACTIONS(2404), - [anon_sym_LT_LT_LT] = ACTIONS(2404), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LF] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - }, - [1902] = { - [sym__heredoc_middle] = ACTIONS(826), - [sym__heredoc_end] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(1577), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [sym_comment] = ACTIONS(56), - }, - [1903] = { - [sym__heredoc_middle] = ACTIONS(834), - [sym__heredoc_end] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(1581), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [sym_comment] = ACTIONS(56), - }, - [1904] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(5360), - [sym_comment] = ACTIONS(56), - }, - [1905] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2557), - [anon_sym_RBRACE] = ACTIONS(5362), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5364), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1906] = { - [sym_subscript] = STATE(2561), - [sym_variable_name] = ACTIONS(5366), - [anon_sym_DOLLAR] = ACTIONS(5368), - [anon_sym_DASH] = ACTIONS(5368), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5370), - [anon_sym_STAR] = ACTIONS(5368), - [anon_sym_AT] = ACTIONS(5368), - [anon_sym_QMARK] = ACTIONS(5368), - [anon_sym_0] = ACTIONS(5372), - [anon_sym__] = ACTIONS(5372), - }, - [1907] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2564), - [anon_sym_RBRACE] = ACTIONS(5374), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5376), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1908] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2567), - [anon_sym_RBRACE] = ACTIONS(5378), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5380), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1909] = { - [sym_file_descriptor] = ACTIONS(5382), - [anon_sym_esac] = ACTIONS(5384), - [anon_sym_PIPE] = ACTIONS(5384), - [anon_sym_RPAREN] = ACTIONS(5384), - [anon_sym_SEMI_SEMI] = ACTIONS(5384), - [anon_sym_PIPE_AMP] = ACTIONS(5384), - [anon_sym_AMP_AMP] = ACTIONS(5384), - [anon_sym_PIPE_PIPE] = ACTIONS(5384), - [anon_sym_LT] = ACTIONS(5384), - [anon_sym_GT] = ACTIONS(5384), - [anon_sym_GT_GT] = ACTIONS(5384), - [anon_sym_AMP_GT] = ACTIONS(5384), - [anon_sym_AMP_GT_GT] = ACTIONS(5384), - [anon_sym_LT_AMP] = ACTIONS(5384), - [anon_sym_GT_AMP] = ACTIONS(5384), - [anon_sym_LT_LT] = ACTIONS(5384), - [anon_sym_LT_LT_DASH] = ACTIONS(5384), - [anon_sym_LT_LT_LT] = ACTIONS(5384), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5384), - [anon_sym_LF] = ACTIONS(5384), - [anon_sym_AMP] = ACTIONS(5384), - }, - [1910] = { - [sym_simple_expansion] = STATE(1222), - [sym_expansion] = STATE(1222), - [aux_sym_heredoc_repeat1] = STATE(1910), - [sym__heredoc_middle] = ACTIONS(5386), - [sym__heredoc_end] = ACTIONS(5389), - [anon_sym_DOLLAR] = ACTIONS(5391), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5394), - [sym_comment] = ACTIONS(56), - }, - [1911] = { - [anon_sym_EQ] = ACTIONS(5397), - [anon_sym_PLUS_EQ] = ACTIONS(5397), - [sym_comment] = ACTIONS(56), - }, - [1912] = { - [anon_sym_EQ] = ACTIONS(5399), - [anon_sym_PLUS_EQ] = ACTIONS(5399), - [sym_comment] = ACTIONS(56), - }, - [1913] = { - [sym__concat] = ACTIONS(3293), - [anon_sym_RBRACK] = ACTIONS(3293), - [sym_comment] = ACTIONS(56), - }, - [1914] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5401), - [sym_comment] = ACTIONS(56), - }, - [1915] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5403), - [sym_comment] = ACTIONS(56), - }, - [1916] = { - [anon_sym_RBRACE] = ACTIONS(5403), - [sym_comment] = ACTIONS(56), - }, - [1917] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2571), - [anon_sym_RBRACE] = ACTIONS(5405), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1918] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_RBRACK] = ACTIONS(3357), - [sym_comment] = ACTIONS(56), - }, - [1919] = { - [sym_concatenation] = STATE(2574), - [sym_string] = STATE(2573), - [sym_simple_expansion] = STATE(2573), - [sym_string_expansion] = STATE(2573), - [sym_expansion] = STATE(2573), - [sym_command_substitution] = STATE(2573), - [sym_process_substitution] = STATE(2573), - [anon_sym_RBRACE] = ACTIONS(5403), - [sym__special_characters] = ACTIONS(5407), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(5409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5411), - }, - [1920] = { - [sym__concat] = ACTIONS(3402), - [anon_sym_RBRACK] = ACTIONS(3402), - [sym_comment] = ACTIONS(56), - }, - [1921] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5413), - }, - [1922] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5415), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1923] = { - [sym__concat] = ACTIONS(3410), - [anon_sym_RBRACK] = ACTIONS(3410), - [sym_comment] = ACTIONS(56), - }, - [1924] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5417), - }, - [1925] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5419), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1926] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5421), - }, - [1927] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5403), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1928] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2581), - [anon_sym_RBRACE] = ACTIONS(5423), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1929] = { - [sym__concat] = ACTIONS(3422), - [anon_sym_RBRACK] = ACTIONS(3422), - [sym_comment] = ACTIONS(56), - }, - [1930] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2583), - [anon_sym_RBRACE] = ACTIONS(5425), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1931] = { - [sym__concat] = ACTIONS(1890), - [anon_sym_RPAREN] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3066), - }, - [1932] = { - [aux_sym_concatenation_repeat1] = STATE(1932), - [sym__concat] = ACTIONS(5427), - [anon_sym_RPAREN] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3066), - }, - [1933] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_RPAREN] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), - [anon_sym_BQUOTE] = ACTIONS(1927), - [anon_sym_LT_LPAREN] = ACTIONS(1927), - [anon_sym_GT_LPAREN] = ACTIONS(1927), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3071), - }, - [1934] = { - [sym_concatenation] = STATE(2587), - [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), - [anon_sym_RBRACE] = ACTIONS(5430), - [sym__special_characters] = ACTIONS(5432), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(5434), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5436), - }, - [1935] = { - [sym__concat] = ACTIONS(1972), - [anon_sym_RPAREN] = ACTIONS(1972), - [sym__special_characters] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(3081), - [sym_raw_string] = ACTIONS(1972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1972), - [anon_sym_LT_LPAREN] = ACTIONS(1972), - [anon_sym_GT_LPAREN] = ACTIONS(1972), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3081), - }, - [1936] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5438), - }, - [1937] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5440), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1938] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(5442), - [sym_comment] = ACTIONS(56), - }, - [1939] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2593), - [anon_sym_RBRACE] = ACTIONS(5444), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5446), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1940] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2596), - [anon_sym_RBRACE] = ACTIONS(5448), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5450), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1941] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2598), - [anon_sym_RBRACE] = ACTIONS(5430), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5452), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1942] = { - [sym__concat] = ACTIONS(2026), - [anon_sym_RPAREN] = ACTIONS(2026), - [sym__special_characters] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(2026), - [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), - [anon_sym_BQUOTE] = ACTIONS(2026), - [anon_sym_LT_LPAREN] = ACTIONS(2026), - [anon_sym_GT_LPAREN] = ACTIONS(2026), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3099), - }, - [1943] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5454), - }, - [1944] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5456), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1945] = { - [sym__concat] = ACTIONS(2034), - [anon_sym_RPAREN] = ACTIONS(2034), - [sym__special_characters] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(2034), - [anon_sym_DOLLAR] = ACTIONS(3105), - [sym_raw_string] = ACTIONS(2034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), - [anon_sym_BQUOTE] = ACTIONS(2034), - [anon_sym_LT_LPAREN] = ACTIONS(2034), - [anon_sym_GT_LPAREN] = ACTIONS(2034), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3105), - }, - [1946] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5458), - }, - [1947] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5430), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1948] = { - [sym__concat] = ACTIONS(2196), - [anon_sym_RPAREN] = ACTIONS(2196), - [sym__special_characters] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_DOLLAR] = ACTIONS(3109), - [sym_raw_string] = ACTIONS(2196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), - [anon_sym_BQUOTE] = ACTIONS(2196), - [anon_sym_LT_LPAREN] = ACTIONS(2196), - [anon_sym_GT_LPAREN] = ACTIONS(2196), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3109), - }, - [1949] = { - [sym__concat] = ACTIONS(2402), - [anon_sym_RPAREN] = ACTIONS(2402), - [sym__special_characters] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_DOLLAR] = ACTIONS(3111), - [sym_raw_string] = ACTIONS(2402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), - [anon_sym_BQUOTE] = ACTIONS(2402), - [anon_sym_LT_LPAREN] = ACTIONS(2402), - [anon_sym_GT_LPAREN] = ACTIONS(2402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3111), - }, - [1950] = { - [sym_file_descriptor] = ACTIONS(3293), - [sym__concat] = ACTIONS(3293), - [sym_variable_name] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_SEMI_SEMI] = ACTIONS(3295), - [anon_sym_PIPE_AMP] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_GT_GT] = ACTIONS(3295), - [anon_sym_AMP_GT] = ACTIONS(3295), - [anon_sym_AMP_GT_GT] = ACTIONS(3295), - [anon_sym_LT_AMP] = ACTIONS(3295), - [anon_sym_GT_AMP] = ACTIONS(3295), - [sym__special_characters] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_DOLLAR] = ACTIONS(3295), - [sym_raw_string] = ACTIONS(3295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), - [anon_sym_BQUOTE] = ACTIONS(3295), - [anon_sym_LT_LPAREN] = ACTIONS(3295), - [anon_sym_GT_LPAREN] = ACTIONS(3295), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - }, - [1951] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5460), - [sym_comment] = ACTIONS(56), - }, - [1952] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5462), - [sym_comment] = ACTIONS(56), - }, - [1953] = { - [anon_sym_RBRACE] = ACTIONS(5462), - [sym_comment] = ACTIONS(56), - }, - [1954] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2605), - [anon_sym_RBRACE] = ACTIONS(5464), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1955] = { - [sym_file_descriptor] = ACTIONS(3357), - [sym__concat] = ACTIONS(3357), - [sym_variable_name] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_PIPE_AMP] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_GT_GT] = ACTIONS(3359), - [anon_sym_AMP_GT] = ACTIONS(3359), - [anon_sym_AMP_GT_GT] = ACTIONS(3359), - [anon_sym_LT_AMP] = ACTIONS(3359), - [anon_sym_GT_AMP] = ACTIONS(3359), - [sym__special_characters] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_DOLLAR] = ACTIONS(3359), - [sym_raw_string] = ACTIONS(3359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), - [anon_sym_BQUOTE] = ACTIONS(3359), - [anon_sym_LT_LPAREN] = ACTIONS(3359), - [anon_sym_GT_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - }, - [1956] = { - [sym_concatenation] = STATE(2608), - [sym_string] = STATE(2607), - [sym_simple_expansion] = STATE(2607), - [sym_string_expansion] = STATE(2607), - [sym_expansion] = STATE(2607), - [sym_command_substitution] = STATE(2607), - [sym_process_substitution] = STATE(2607), - [anon_sym_RBRACE] = ACTIONS(5462), - [sym__special_characters] = ACTIONS(5466), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(5468), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5470), - }, - [1957] = { - [sym_file_descriptor] = ACTIONS(3402), - [sym__concat] = ACTIONS(3402), - [sym_variable_name] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_SEMI_SEMI] = ACTIONS(3404), - [anon_sym_PIPE_AMP] = ACTIONS(3404), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3404), - [anon_sym_LT] = ACTIONS(3404), - [anon_sym_GT] = ACTIONS(3404), - [anon_sym_GT_GT] = ACTIONS(3404), - [anon_sym_AMP_GT] = ACTIONS(3404), - [anon_sym_AMP_GT_GT] = ACTIONS(3404), - [anon_sym_LT_AMP] = ACTIONS(3404), - [anon_sym_GT_AMP] = ACTIONS(3404), - [sym__special_characters] = ACTIONS(3404), - [anon_sym_DQUOTE] = ACTIONS(3404), - [anon_sym_DOLLAR] = ACTIONS(3404), - [sym_raw_string] = ACTIONS(3404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), - [anon_sym_BQUOTE] = ACTIONS(3404), - [anon_sym_LT_LPAREN] = ACTIONS(3404), - [anon_sym_GT_LPAREN] = ACTIONS(3404), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3404), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - }, - [1958] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5472), - }, - [1959] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5474), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1960] = { - [sym_file_descriptor] = ACTIONS(3410), - [sym__concat] = ACTIONS(3410), - [sym_variable_name] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [anon_sym_LT] = ACTIONS(3412), - [anon_sym_GT] = ACTIONS(3412), - [anon_sym_GT_GT] = ACTIONS(3412), - [anon_sym_AMP_GT] = ACTIONS(3412), - [anon_sym_AMP_GT_GT] = ACTIONS(3412), - [anon_sym_LT_AMP] = ACTIONS(3412), - [anon_sym_GT_AMP] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(3412), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3412), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - }, - [1961] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5476), - }, - [1962] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5478), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1963] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5480), - }, - [1964] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5462), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1965] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2615), - [anon_sym_RBRACE] = ACTIONS(5482), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1966] = { - [sym_file_descriptor] = ACTIONS(3422), - [sym__concat] = ACTIONS(3422), - [sym_variable_name] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_SEMI_SEMI] = ACTIONS(3424), - [anon_sym_PIPE_AMP] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_PIPE_PIPE] = ACTIONS(3424), - [anon_sym_LT] = ACTIONS(3424), - [anon_sym_GT] = ACTIONS(3424), - [anon_sym_GT_GT] = ACTIONS(3424), - [anon_sym_AMP_GT] = ACTIONS(3424), - [anon_sym_AMP_GT_GT] = ACTIONS(3424), - [anon_sym_LT_AMP] = ACTIONS(3424), - [anon_sym_GT_AMP] = ACTIONS(3424), - [sym__special_characters] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [anon_sym_DOLLAR] = ACTIONS(3424), - [sym_raw_string] = ACTIONS(3424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), - [anon_sym_BQUOTE] = ACTIONS(3424), - [anon_sym_LT_LPAREN] = ACTIONS(3424), - [anon_sym_GT_LPAREN] = ACTIONS(3424), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - }, - [1967] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2617), - [anon_sym_RBRACE] = ACTIONS(5484), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1968] = { - [sym__concat] = ACTIONS(1890), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [1969] = { - [aux_sym_concatenation_repeat1] = STATE(1969), - [sym__concat] = ACTIONS(5486), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [1970] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_SEMI_SEMI] = ACTIONS(1929), - [sym__special_characters] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1929), - [sym_raw_string] = ACTIONS(1929), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), - [anon_sym_BQUOTE] = ACTIONS(1929), - [anon_sym_LT_LPAREN] = ACTIONS(1929), - [anon_sym_GT_LPAREN] = ACTIONS(1929), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1929), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - }, - [1971] = { - [sym_concatenation] = STATE(2621), - [sym_string] = STATE(2620), - [sym_simple_expansion] = STATE(2620), - [sym_string_expansion] = STATE(2620), - [sym_expansion] = STATE(2620), - [sym_command_substitution] = STATE(2620), - [sym_process_substitution] = STATE(2620), - [anon_sym_RBRACE] = ACTIONS(5489), - [sym__special_characters] = ACTIONS(5491), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(5493), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5495), - }, - [1972] = { - [sym__concat] = ACTIONS(1972), - [anon_sym_SEMI_SEMI] = ACTIONS(1974), - [sym__special_characters] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(1974), - [sym_raw_string] = ACTIONS(1974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_BQUOTE] = ACTIONS(1974), - [anon_sym_LT_LPAREN] = ACTIONS(1974), - [anon_sym_GT_LPAREN] = ACTIONS(1974), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_LF] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - }, - [1973] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5497), - }, - [1974] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5499), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1975] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(5501), - [sym_comment] = ACTIONS(56), - }, - [1976] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2627), - [anon_sym_RBRACE] = ACTIONS(5503), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5505), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1977] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2630), - [anon_sym_RBRACE] = ACTIONS(5507), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5509), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1978] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2632), - [anon_sym_RBRACE] = ACTIONS(5489), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5511), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1979] = { - [sym__concat] = ACTIONS(2026), - [anon_sym_SEMI_SEMI] = ACTIONS(2028), - [sym__special_characters] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [anon_sym_DOLLAR] = ACTIONS(2028), - [sym_raw_string] = ACTIONS(2028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), - [anon_sym_BQUOTE] = ACTIONS(2028), - [anon_sym_LT_LPAREN] = ACTIONS(2028), - [anon_sym_GT_LPAREN] = ACTIONS(2028), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - }, - [1980] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5513), - }, - [1981] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5515), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1982] = { - [sym__concat] = ACTIONS(2034), - [anon_sym_SEMI_SEMI] = ACTIONS(2036), - [sym__special_characters] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2036), - [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(182), - [sym_word] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_LF] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - }, - [1983] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5517), - }, - [1984] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5489), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [1985] = { - [sym__concat] = ACTIONS(2196), - [anon_sym_SEMI_SEMI] = ACTIONS(2198), - [sym__special_characters] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(2198), - [sym_raw_string] = ACTIONS(2198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), - [anon_sym_BQUOTE] = ACTIONS(2198), - [anon_sym_LT_LPAREN] = ACTIONS(2198), - [anon_sym_GT_LPAREN] = ACTIONS(2198), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - }, - [1986] = { - [sym__concat] = ACTIONS(2402), - [anon_sym_SEMI_SEMI] = ACTIONS(2404), - [sym__special_characters] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2404), - [anon_sym_DOLLAR] = ACTIONS(2404), - [sym_raw_string] = ACTIONS(2404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2404), - [anon_sym_LT_LPAREN] = ACTIONS(2404), - [anon_sym_GT_LPAREN] = ACTIONS(2404), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2404), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LF] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - }, - [1987] = { - [anon_sym_esac] = ACTIONS(5519), - [anon_sym_PIPE] = ACTIONS(5519), - [anon_sym_RPAREN] = ACTIONS(5519), - [anon_sym_SEMI_SEMI] = ACTIONS(5519), - [anon_sym_PIPE_AMP] = ACTIONS(5519), - [anon_sym_AMP_AMP] = ACTIONS(5519), - [anon_sym_PIPE_PIPE] = ACTIONS(5519), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5519), - [anon_sym_LF] = ACTIONS(5519), - [anon_sym_AMP] = ACTIONS(5519), - }, - [1988] = { - [anon_sym_esac] = ACTIONS(4309), - [anon_sym_PIPE] = ACTIONS(4309), - [anon_sym_RPAREN] = ACTIONS(4309), - [anon_sym_SEMI_SEMI] = ACTIONS(4309), - [anon_sym_PIPE_AMP] = ACTIONS(4309), - [anon_sym_AMP_AMP] = ACTIONS(4309), - [anon_sym_PIPE_PIPE] = ACTIONS(4309), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4309), - [anon_sym_LF] = ACTIONS(4309), - [anon_sym_AMP] = ACTIONS(4309), - }, - [1989] = { - [sym__terminated_statement] = STATE(702), - [sym_for_statement] = STATE(703), - [sym_while_statement] = STATE(703), - [sym_if_statement] = STATE(703), - [sym_case_statement] = STATE(703), - [sym_function_definition] = STATE(703), - [sym_subshell] = STATE(703), - [sym_pipeline] = STATE(703), - [sym_list] = STATE(703), - [sym_command] = STATE(703), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(703), - [sym_variable_assignment] = STATE(706), - [sym_declaration_command] = STATE(703), - [sym_unset_command] = STATE(703), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2636), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(5521), - [anon_sym_elif] = ACTIONS(5521), - [anon_sym_else] = ACTIONS(5521), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [1990] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_fi] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1104), - [sym_raw_string] = ACTIONS(1102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), - [anon_sym_BQUOTE] = ACTIONS(1102), - [anon_sym_LT_LPAREN] = ACTIONS(1102), - [anon_sym_GT_LPAREN] = ACTIONS(1102), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1106), - }, - [1991] = { - [sym__terminated_statement] = STATE(1319), - [sym_for_statement] = STATE(1320), - [sym_while_statement] = STATE(1320), - [sym_if_statement] = STATE(1320), - [sym_case_statement] = STATE(1320), - [sym_function_definition] = STATE(1320), - [sym_subshell] = STATE(1320), - [sym_pipeline] = STATE(1320), - [sym_list] = STATE(1320), - [sym_command] = STATE(1320), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(1320), - [sym_variable_assignment] = STATE(1321), - [sym_declaration_command] = STATE(1320), - [sym_unset_command] = STATE(1320), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1991), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1152), - [sym_variable_name] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1166), - [anon_sym_fi] = ACTIONS(4311), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_function] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), - [anon_sym_declare] = ACTIONS(1184), - [anon_sym_typeset] = ACTIONS(1184), - [anon_sym_export] = ACTIONS(1184), - [anon_sym_readonly] = ACTIONS(1184), - [anon_sym_local] = ACTIONS(1184), - [anon_sym_unset] = ACTIONS(1187), - [anon_sym_unsetenv] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1193), - [anon_sym_AMP_GT] = ACTIONS(1190), - [anon_sym_AMP_GT_GT] = ACTIONS(1193), - [anon_sym_LT_AMP] = ACTIONS(1193), - [anon_sym_GT_AMP] = ACTIONS(1193), - [sym__special_characters] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1199), - [anon_sym_DOLLAR] = ACTIONS(1202), - [sym_raw_string] = ACTIONS(1205), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1211), - [anon_sym_BQUOTE] = ACTIONS(1214), - [anon_sym_LT_LPAREN] = ACTIONS(1217), - [anon_sym_GT_LPAREN] = ACTIONS(1217), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1220), - }, - [1992] = { - [anon_sym_esac] = ACTIONS(5523), - [anon_sym_PIPE] = ACTIONS(5523), - [anon_sym_RPAREN] = ACTIONS(5523), - [anon_sym_SEMI_SEMI] = ACTIONS(5523), - [anon_sym_PIPE_AMP] = ACTIONS(5523), - [anon_sym_AMP_AMP] = ACTIONS(5523), - [anon_sym_PIPE_PIPE] = ACTIONS(5523), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5523), - [anon_sym_LF] = ACTIONS(5523), - [anon_sym_AMP] = ACTIONS(5523), - }, - [1993] = { - [anon_sym_fi] = ACTIONS(5525), - [sym_comment] = ACTIONS(56), - }, - [1994] = { - [sym_string] = STATE(2638), - [sym_simple_expansion] = STATE(2638), - [sym_string_expansion] = STATE(2638), - [sym_expansion] = STATE(2638), - [sym_command_substitution] = STATE(2638), - [sym_process_substitution] = STATE(2638), - [sym__special_characters] = ACTIONS(5527), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2711), - [sym_raw_string] = ACTIONS(5529), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), - [anon_sym_BQUOTE] = ACTIONS(2719), - [anon_sym_LT_LPAREN] = ACTIONS(2721), - [anon_sym_GT_LPAREN] = ACTIONS(2721), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5527), - }, - [1995] = { - [sym_concatenation] = STATE(2641), - [sym_string] = STATE(2640), - [sym_simple_expansion] = STATE(2640), - [sym_string_expansion] = STATE(2640), - [sym_expansion] = STATE(2640), - [sym_command_substitution] = STATE(2640), - [sym_process_substitution] = STATE(2640), - [sym__special_characters] = ACTIONS(5531), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2711), - [sym_raw_string] = ACTIONS(5533), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), - [anon_sym_BQUOTE] = ACTIONS(2719), - [anon_sym_LT_LPAREN] = ACTIONS(2721), - [anon_sym_GT_LPAREN] = ACTIONS(2721), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5535), - }, - [1996] = { - [sym__terminated_statement] = STATE(2659), - [sym_for_statement] = STATE(2660), - [sym_while_statement] = STATE(2660), - [sym_if_statement] = STATE(2660), - [sym_case_statement] = STATE(2660), - [sym_function_definition] = STATE(2660), - [sym_subshell] = STATE(2660), - [sym_pipeline] = STATE(2660), - [sym_list] = STATE(2660), - [sym_command] = STATE(2660), - [sym_command_name] = STATE(2661), - [sym_bracket_command] = STATE(2660), - [sym_variable_assignment] = STATE(2662), - [sym_declaration_command] = STATE(2660), - [sym_unset_command] = STATE(2660), - [sym_subscript] = STATE(2663), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2664), - [sym_string] = STATE(2653), - [sym_simple_expansion] = STATE(2653), - [sym_string_expansion] = STATE(2653), - [sym_expansion] = STATE(2653), - [sym_command_substitution] = STATE(2653), - [sym_process_substitution] = STATE(2653), - [aux_sym_program_repeat1] = STATE(2665), - [aux_sym_command_repeat1] = STATE(2666), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5537), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5539), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(5541), - [anon_sym_SEMI_SEMI] = ACTIONS(5543), - [anon_sym_function] = ACTIONS(5545), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5547), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), - [anon_sym_declare] = ACTIONS(5551), - [anon_sym_typeset] = ACTIONS(5551), - [anon_sym_export] = ACTIONS(5551), - [anon_sym_readonly] = ACTIONS(5551), - [anon_sym_local] = ACTIONS(5551), - [anon_sym_unset] = ACTIONS(5553), - [anon_sym_unsetenv] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(5555), - [anon_sym_DQUOTE] = ACTIONS(5557), - [anon_sym_DOLLAR] = ACTIONS(5559), - [sym_raw_string] = ACTIONS(5561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), - [anon_sym_BQUOTE] = ACTIONS(5567), - [anon_sym_LT_LPAREN] = ACTIONS(5569), - [anon_sym_GT_LPAREN] = ACTIONS(5569), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5571), - }, - [1997] = { - [aux_sym_case_item_repeat1] = STATE(2668), - [anon_sym_PIPE] = ACTIONS(4332), - [anon_sym_RPAREN] = ACTIONS(5573), - [sym_comment] = ACTIONS(56), - }, - [1998] = { - [aux_sym_concatenation_repeat1] = STATE(2669), - [sym__concat] = ACTIONS(4330), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_RPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(56), - }, - [1999] = { - [sym__concat] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_RPAREN] = ACTIONS(794), - [sym_comment] = ACTIONS(56), - }, - [2000] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(5575), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [2001] = { - [sym__concat] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(826), - [anon_sym_RPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(56), - }, - [2002] = { - [sym__concat] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(830), - [anon_sym_RPAREN] = ACTIONS(830), - [sym_comment] = ACTIONS(56), - }, - [2003] = { - [sym__concat] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_RPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(56), - }, - [2004] = { - [sym__terminated_statement] = STATE(2659), - [sym_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_command] = STATE(2672), - [sym_command_name] = STATE(2661), - [sym_bracket_command] = STATE(2672), - [sym_variable_assignment] = STATE(2673), - [sym_declaration_command] = STATE(2672), - [sym_unset_command] = STATE(2672), - [sym_subscript] = STATE(2663), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2664), - [sym_string] = STATE(2653), - [sym_simple_expansion] = STATE(2653), - [sym_string_expansion] = STATE(2653), - [sym_expansion] = STATE(2653), - [sym_command_substitution] = STATE(2653), - [sym_process_substitution] = STATE(2653), - [aux_sym_program_repeat1] = STATE(2674), - [aux_sym_command_repeat1] = STATE(2666), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5537), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5539), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(5577), - [anon_sym_SEMI_SEMI] = ACTIONS(5579), - [anon_sym_function] = ACTIONS(5545), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5547), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), - [anon_sym_declare] = ACTIONS(5551), - [anon_sym_typeset] = ACTIONS(5551), - [anon_sym_export] = ACTIONS(5551), - [anon_sym_readonly] = ACTIONS(5551), - [anon_sym_local] = ACTIONS(5551), - [anon_sym_unset] = ACTIONS(5553), - [anon_sym_unsetenv] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(5555), - [anon_sym_DQUOTE] = ACTIONS(5557), - [anon_sym_DOLLAR] = ACTIONS(5559), - [sym_raw_string] = ACTIONS(5561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), - [anon_sym_BQUOTE] = ACTIONS(5567), - [anon_sym_LT_LPAREN] = ACTIONS(5569), - [anon_sym_GT_LPAREN] = ACTIONS(5569), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5571), - }, - [2005] = { - [aux_sym_case_item_repeat1] = STATE(2668), - [anon_sym_PIPE] = ACTIONS(4332), - [anon_sym_RPAREN] = ACTIONS(5581), - [sym_comment] = ACTIONS(56), - }, - [2006] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(5583), - [sym_comment] = ACTIONS(56), - }, - [2007] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2679), - [anon_sym_RBRACE] = ACTIONS(5585), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5587), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2008] = { - [sym_subscript] = STATE(2683), - [sym_variable_name] = ACTIONS(5589), - [anon_sym_DOLLAR] = ACTIONS(5591), - [anon_sym_DASH] = ACTIONS(5591), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5593), - [anon_sym_STAR] = ACTIONS(5591), - [anon_sym_AT] = ACTIONS(5591), - [anon_sym_QMARK] = ACTIONS(5591), - [anon_sym_0] = ACTIONS(5595), - [anon_sym__] = ACTIONS(5595), - }, - [2009] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2686), - [anon_sym_RBRACE] = ACTIONS(5597), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5599), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2010] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2689), - [anon_sym_RBRACE] = ACTIONS(5601), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5603), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2011] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(5605), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [2012] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(5605), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [2013] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(5605), - [sym_comment] = ACTIONS(56), - }, - [2014] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(5605), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [2015] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(5607), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [2016] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(5607), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [2017] = { - [anon_sym_esac] = ACTIONS(5609), - [anon_sym_PIPE] = ACTIONS(5609), - [anon_sym_RPAREN] = ACTIONS(5609), - [anon_sym_SEMI_SEMI] = ACTIONS(5609), - [anon_sym_PIPE_AMP] = ACTIONS(5609), - [anon_sym_AMP_AMP] = ACTIONS(5609), - [anon_sym_PIPE_PIPE] = ACTIONS(5609), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5609), - [anon_sym_LF] = ACTIONS(5609), - [anon_sym_AMP] = ACTIONS(5609), - }, - [2018] = { - [anon_sym_esac] = ACTIONS(5611), - [sym_comment] = ACTIONS(56), - }, - [2019] = { - [sym_case_item] = STATE(1338), - [sym_concatenation] = STATE(2695), - [sym_string] = STATE(2694), - [sym_simple_expansion] = STATE(2694), - [sym_string_expansion] = STATE(2694), - [sym_expansion] = STATE(2694), - [sym_command_substitution] = STATE(2694), - [sym_process_substitution] = STATE(2694), - [aux_sym_case_statement_repeat1] = STATE(2019), - [sym__special_characters] = ACTIONS(5613), - [anon_sym_DQUOTE] = ACTIONS(5616), - [anon_sym_DOLLAR] = ACTIONS(5619), - [sym_raw_string] = ACTIONS(5622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5625), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5628), - [anon_sym_BQUOTE] = ACTIONS(5631), - [anon_sym_LT_LPAREN] = ACTIONS(5634), - [anon_sym_GT_LPAREN] = ACTIONS(5634), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5637), - }, - [2020] = { - [anon_sym_esac] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5640), - [anon_sym_RPAREN] = ACTIONS(5640), - [anon_sym_SEMI_SEMI] = ACTIONS(5640), - [anon_sym_PIPE_AMP] = ACTIONS(5640), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE_PIPE] = ACTIONS(5640), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5640), - [anon_sym_LF] = ACTIONS(5640), - [anon_sym_AMP] = ACTIONS(5640), - }, - [2021] = { - [sym_case_item] = STATE(1338), - [sym_last_case_item] = STATE(2696), - [sym_concatenation] = STATE(1340), - [sym_string] = STATE(1333), - [sym_simple_expansion] = STATE(1333), - [sym_string_expansion] = STATE(1333), - [sym_expansion] = STATE(1333), - [sym_command_substitution] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_case_statement_repeat1] = STATE(2019), - [sym__special_characters] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2711), - [sym_raw_string] = ACTIONS(2713), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), - [anon_sym_BQUOTE] = ACTIONS(2719), - [anon_sym_LT_LPAREN] = ACTIONS(2721), - [anon_sym_GT_LPAREN] = ACTIONS(2721), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4364), - }, - [2022] = { - [anon_sym_esac] = ACTIONS(5642), - [anon_sym_PIPE] = ACTIONS(5642), - [anon_sym_RPAREN] = ACTIONS(5642), - [anon_sym_SEMI_SEMI] = ACTIONS(5642), - [anon_sym_PIPE_AMP] = ACTIONS(5642), - [anon_sym_AMP_AMP] = ACTIONS(5642), - [anon_sym_PIPE_PIPE] = ACTIONS(5642), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5642), - [anon_sym_LF] = ACTIONS(5642), - [anon_sym_AMP] = ACTIONS(5642), - }, - [2023] = { - [anon_sym_esac] = ACTIONS(5644), - [sym_comment] = ACTIONS(56), - }, - [2024] = { - [anon_sym_esac] = ACTIONS(5646), - [anon_sym_PIPE] = ACTIONS(5646), - [anon_sym_RPAREN] = ACTIONS(5646), - [anon_sym_SEMI_SEMI] = ACTIONS(5646), - [anon_sym_PIPE_AMP] = ACTIONS(5646), - [anon_sym_AMP_AMP] = ACTIONS(5646), - [anon_sym_PIPE_PIPE] = ACTIONS(5646), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5646), - [anon_sym_LF] = ACTIONS(5646), - [anon_sym_AMP] = ACTIONS(5646), - }, - [2025] = { - [sym_case_item] = STATE(1338), - [sym_last_case_item] = STATE(2698), - [sym_concatenation] = STATE(1340), - [sym_string] = STATE(1333), - [sym_simple_expansion] = STATE(1333), - [sym_string_expansion] = STATE(1333), - [sym_expansion] = STATE(1333), - [sym_command_substitution] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_case_statement_repeat1] = STATE(2019), - [sym__special_characters] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2711), - [sym_raw_string] = ACTIONS(2713), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), - [anon_sym_BQUOTE] = ACTIONS(2719), - [anon_sym_LT_LPAREN] = ACTIONS(2721), - [anon_sym_GT_LPAREN] = ACTIONS(2721), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4364), - }, - [2026] = { - [sym__concat] = ACTIONS(4802), - [anon_sym_in] = ACTIONS(4804), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4804), - [anon_sym_LF] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4804), - }, - [2027] = { - [sym__concat] = ACTIONS(4808), - [anon_sym_in] = ACTIONS(4810), - [anon_sym_SEMI_SEMI] = ACTIONS(4810), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LF] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4810), - }, - [2028] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_in] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [2029] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5648), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2030] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5650), - [sym_comment] = ACTIONS(56), - }, - [2031] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5652), - [sym_comment] = ACTIONS(56), - }, - [2032] = { - [anon_sym_RBRACE] = ACTIONS(5652), - [sym_comment] = ACTIONS(56), - }, - [2033] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2703), - [anon_sym_RBRACE] = ACTIONS(5654), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2034] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_in] = ACTIONS(4885), - [anon_sym_SEMI_SEMI] = ACTIONS(4885), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [2035] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2705), - [anon_sym_RBRACE] = ACTIONS(5656), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2036] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_in] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [2037] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2707), - [anon_sym_RBRACE] = ACTIONS(5658), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2038] = { - [sym__concat] = ACTIONS(4895), - [anon_sym_in] = ACTIONS(4897), - [anon_sym_SEMI_SEMI] = ACTIONS(4897), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LF] = ACTIONS(4897), - [anon_sym_AMP] = ACTIONS(4897), - }, - [2039] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5660), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2040] = { - [sym__concat] = ACTIONS(4901), - [anon_sym_in] = ACTIONS(4903), - [anon_sym_SEMI_SEMI] = ACTIONS(4903), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LF] = ACTIONS(4903), - [anon_sym_AMP] = ACTIONS(4903), - }, - [2041] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5662), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2042] = { - [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), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5664), - [anon_sym_LF] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5664), - }, - [2043] = { - [aux_sym_concatenation_repeat1] = STATE(2047), - [sym__concat] = ACTIONS(4412), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_SEMI_SEMI] = ACTIONS(4044), - [anon_sym_PIPE_AMP] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_PIPE_PIPE] = ACTIONS(4044), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4044), - }, - [2044] = { - [aux_sym_concatenation_repeat1] = STATE(2047), - [sym__concat] = ACTIONS(4412), - [anon_sym_PIPE] = ACTIONS(4046), - [anon_sym_SEMI_SEMI] = ACTIONS(4046), - [anon_sym_PIPE_AMP] = ACTIONS(4046), - [anon_sym_AMP_AMP] = ACTIONS(4046), - [anon_sym_PIPE_PIPE] = ACTIONS(4046), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4046), - [anon_sym_AMP] = ACTIONS(4046), - }, - [2045] = { - [anon_sym_esac] = ACTIONS(4046), - [anon_sym_PIPE] = ACTIONS(4046), - [anon_sym_RPAREN] = ACTIONS(4046), - [anon_sym_SEMI_SEMI] = ACTIONS(4046), - [anon_sym_PIPE_AMP] = ACTIONS(4046), - [anon_sym_AMP_AMP] = ACTIONS(4046), - [anon_sym_PIPE_PIPE] = ACTIONS(4046), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4046), - [anon_sym_AMP] = ACTIONS(4046), - }, - [2046] = { - [sym_string] = STATE(2710), - [sym_simple_expansion] = STATE(2710), - [sym_string_expansion] = STATE(2710), - [sym_expansion] = STATE(2710), - [sym_command_substitution] = STATE(2710), - [sym_process_substitution] = STATE(2710), - [sym__special_characters] = ACTIONS(5666), - [anon_sym_DQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2780), - [sym_raw_string] = ACTIONS(5668), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2784), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2786), - [anon_sym_BQUOTE] = ACTIONS(2788), - [anon_sym_LT_LPAREN] = ACTIONS(2790), - [anon_sym_GT_LPAREN] = ACTIONS(2790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5666), - }, - [2047] = { - [aux_sym_concatenation_repeat1] = STATE(2711), - [sym__concat] = ACTIONS(4412), - [anon_sym_PIPE] = ACTIONS(792), - [anon_sym_SEMI_SEMI] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LF] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(792), - }, - [2048] = { - [sym__concat] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_SEMI_SEMI] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_LF] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - }, - [2049] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(5670), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [2050] = { - [sym__concat] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_SEMI_SEMI] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(828), - }, - [2051] = { - [sym__concat] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(832), - [anon_sym_AMP] = ACTIONS(832), - }, - [2052] = { - [sym__concat] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_SEMI_SEMI] = ACTIONS(836), - [anon_sym_PIPE_AMP] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(836), - }, - [2053] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(5672), - [sym_comment] = ACTIONS(56), - }, - [2054] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2716), - [anon_sym_RBRACE] = ACTIONS(5674), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5676), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2055] = { - [sym_subscript] = STATE(2720), - [sym_variable_name] = ACTIONS(5678), - [anon_sym_DOLLAR] = ACTIONS(5680), - [anon_sym_DASH] = ACTIONS(5680), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5682), - [anon_sym_STAR] = ACTIONS(5680), - [anon_sym_AT] = ACTIONS(5680), - [anon_sym_QMARK] = ACTIONS(5680), - [anon_sym_0] = ACTIONS(5684), - [anon_sym__] = ACTIONS(5684), - }, - [2056] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2723), - [anon_sym_RBRACE] = ACTIONS(5686), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5688), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2057] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2726), - [anon_sym_RBRACE] = ACTIONS(5690), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5692), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2058] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(5694), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [2059] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(5694), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [2060] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(5694), - [sym_comment] = ACTIONS(56), - }, - [2061] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(5694), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [2062] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(5696), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [2063] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(5696), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [2064] = { - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(1890), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_AMP_GT] = ACTIONS(1892), - [anon_sym_AMP_GT_GT] = ACTIONS(1892), - [anon_sym_LT_AMP] = ACTIONS(1892), - [anon_sym_GT_AMP] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [2065] = { - [aux_sym_concatenation_repeat1] = STATE(2065), - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(5698), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_AMP_GT] = ACTIONS(1892), - [anon_sym_AMP_GT_GT] = ACTIONS(1892), - [anon_sym_LT_AMP] = ACTIONS(1892), - [anon_sym_GT_AMP] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [2066] = { - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [sym_variable_name] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_RPAREN] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1929), - [anon_sym_PIPE_AMP] = ACTIONS(1929), - [anon_sym_AMP_AMP] = ACTIONS(1929), - [anon_sym_PIPE_PIPE] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_GT_GT] = ACTIONS(1929), - [anon_sym_AMP_GT] = ACTIONS(1929), - [anon_sym_AMP_GT_GT] = ACTIONS(1929), - [anon_sym_LT_AMP] = ACTIONS(1929), - [anon_sym_GT_AMP] = ACTIONS(1929), - [sym__special_characters] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1929), - [sym_raw_string] = ACTIONS(1929), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), - [anon_sym_BQUOTE] = ACTIONS(1929), - [anon_sym_LT_LPAREN] = ACTIONS(1929), - [anon_sym_GT_LPAREN] = ACTIONS(1929), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1929), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - }, - [2067] = { - [sym_concatenation] = STATE(2732), - [sym_string] = STATE(2731), - [sym_simple_expansion] = STATE(2731), - [sym_string_expansion] = STATE(2731), - [sym_expansion] = STATE(2731), - [sym_command_substitution] = STATE(2731), - [sym_process_substitution] = STATE(2731), - [anon_sym_RBRACE] = ACTIONS(5701), - [sym__special_characters] = ACTIONS(5703), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(5705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5707), - }, - [2068] = { - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(1972), - [sym_variable_name] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1974), - [anon_sym_GT_GT] = ACTIONS(1974), - [anon_sym_AMP_GT] = ACTIONS(1974), - [anon_sym_AMP_GT_GT] = ACTIONS(1974), - [anon_sym_LT_AMP] = ACTIONS(1974), - [anon_sym_GT_AMP] = ACTIONS(1974), - [sym__special_characters] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(1974), - [sym_raw_string] = ACTIONS(1974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_BQUOTE] = ACTIONS(1974), - [anon_sym_LT_LPAREN] = ACTIONS(1974), - [anon_sym_GT_LPAREN] = ACTIONS(1974), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_LF] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - }, - [2069] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5709), - }, - [2070] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5711), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2071] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(5713), - [sym_comment] = ACTIONS(56), - }, - [2072] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2738), - [anon_sym_RBRACE] = ACTIONS(5715), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5717), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2073] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2741), - [anon_sym_RBRACE] = ACTIONS(5719), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5721), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2074] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2743), - [anon_sym_RBRACE] = ACTIONS(5701), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5723), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2075] = { - [sym_file_descriptor] = ACTIONS(2026), - [sym__concat] = ACTIONS(2026), - [sym_variable_name] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_RPAREN] = ACTIONS(2028), - [anon_sym_SEMI_SEMI] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(2028), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [anon_sym_LT] = ACTIONS(2028), - [anon_sym_GT] = ACTIONS(2028), - [anon_sym_GT_GT] = ACTIONS(2028), - [anon_sym_AMP_GT] = ACTIONS(2028), - [anon_sym_AMP_GT_GT] = ACTIONS(2028), - [anon_sym_LT_AMP] = ACTIONS(2028), - [anon_sym_GT_AMP] = ACTIONS(2028), - [sym__special_characters] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [anon_sym_DOLLAR] = ACTIONS(2028), - [sym_raw_string] = ACTIONS(2028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), - [anon_sym_BQUOTE] = ACTIONS(2028), - [anon_sym_LT_LPAREN] = ACTIONS(2028), - [anon_sym_GT_LPAREN] = ACTIONS(2028), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - }, - [2076] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5725), - }, - [2077] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5727), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2078] = { - [sym_file_descriptor] = ACTIONS(2034), - [sym__concat] = ACTIONS(2034), - [sym_variable_name] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_RPAREN] = ACTIONS(2036), - [anon_sym_SEMI_SEMI] = ACTIONS(2036), - [anon_sym_PIPE_AMP] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [anon_sym_LT] = ACTIONS(2036), - [anon_sym_GT] = ACTIONS(2036), - [anon_sym_GT_GT] = ACTIONS(2036), - [anon_sym_AMP_GT] = ACTIONS(2036), - [anon_sym_AMP_GT_GT] = ACTIONS(2036), - [anon_sym_LT_AMP] = ACTIONS(2036), - [anon_sym_GT_AMP] = ACTIONS(2036), - [sym__special_characters] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2036), - [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(182), - [sym_word] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_LF] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - }, - [2079] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5729), - }, - [2080] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5701), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2081] = { - [sym_file_descriptor] = ACTIONS(2196), - [sym__concat] = ACTIONS(2196), - [sym_variable_name] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_SEMI_SEMI] = ACTIONS(2198), - [anon_sym_PIPE_AMP] = ACTIONS(2198), - [anon_sym_AMP_AMP] = ACTIONS(2198), - [anon_sym_PIPE_PIPE] = ACTIONS(2198), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_GT] = ACTIONS(2198), - [anon_sym_GT_GT] = ACTIONS(2198), - [anon_sym_AMP_GT] = ACTIONS(2198), - [anon_sym_AMP_GT_GT] = ACTIONS(2198), - [anon_sym_LT_AMP] = ACTIONS(2198), - [anon_sym_GT_AMP] = ACTIONS(2198), - [sym__special_characters] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(2198), - [sym_raw_string] = ACTIONS(2198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), - [anon_sym_BQUOTE] = ACTIONS(2198), - [anon_sym_LT_LPAREN] = ACTIONS(2198), - [anon_sym_GT_LPAREN] = ACTIONS(2198), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - }, - [2082] = { - [sym_file_descriptor] = ACTIONS(2402), - [sym__concat] = ACTIONS(2402), - [sym_variable_name] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_RPAREN] = ACTIONS(2404), - [anon_sym_SEMI_SEMI] = ACTIONS(2404), - [anon_sym_PIPE_AMP] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2404), - [anon_sym_GT] = ACTIONS(2404), - [anon_sym_GT_GT] = ACTIONS(2404), - [anon_sym_AMP_GT] = ACTIONS(2404), - [anon_sym_AMP_GT_GT] = ACTIONS(2404), - [anon_sym_LT_AMP] = ACTIONS(2404), - [anon_sym_GT_AMP] = ACTIONS(2404), - [sym__special_characters] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2404), - [anon_sym_DOLLAR] = ACTIONS(2404), - [sym_raw_string] = ACTIONS(2404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2404), - [anon_sym_LT_LPAREN] = ACTIONS(2404), - [anon_sym_GT_LPAREN] = ACTIONS(2404), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2404), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LF] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - }, - [2083] = { - [sym_file_redirect] = STATE(2042), - [sym_file_descriptor] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(4400), - [anon_sym_RPAREN] = ACTIONS(4400), - [anon_sym_SEMI_SEMI] = ACTIONS(4400), - [anon_sym_PIPE_AMP] = ACTIONS(4400), - [anon_sym_AMP_AMP] = ACTIONS(4400), - [anon_sym_PIPE_PIPE] = ACTIONS(4400), - [anon_sym_LT] = ACTIONS(2822), - [anon_sym_GT] = ACTIONS(2822), - [anon_sym_GT_GT] = ACTIONS(2822), - [anon_sym_AMP_GT] = ACTIONS(2822), - [anon_sym_AMP_GT_GT] = ACTIONS(2822), - [anon_sym_LT_AMP] = ACTIONS(2822), - [anon_sym_GT_AMP] = ACTIONS(2822), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4400), - [anon_sym_LF] = ACTIONS(4400), - [anon_sym_AMP] = ACTIONS(4400), - }, - [2084] = { - [sym_concatenation] = STATE(2045), - [sym_string] = STATE(2748), - [sym_simple_expansion] = STATE(2748), - [sym_string_expansion] = STATE(2748), - [sym_expansion] = STATE(2748), - [sym_command_substitution] = STATE(2748), - [sym_process_substitution] = STATE(2748), - [sym__special_characters] = ACTIONS(5731), - [anon_sym_DQUOTE] = ACTIONS(4472), - [anon_sym_DOLLAR] = ACTIONS(4474), - [sym_raw_string] = ACTIONS(5733), - [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(56), - [sym_word] = ACTIONS(5735), - }, - [2085] = { - [aux_sym_concatenation_repeat1] = STATE(2750), - [sym__concat] = ACTIONS(5737), - [anon_sym_PIPE] = ACTIONS(2418), - [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), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_LF] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2418), - }, - [2086] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(2752), - [anon_sym_DQUOTE] = ACTIONS(5739), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [2087] = { - [sym_string] = STATE(2754), - [anon_sym_DQUOTE] = ACTIONS(4472), - [anon_sym_DOLLAR] = ACTIONS(5741), - [sym_raw_string] = ACTIONS(5743), - [anon_sym_POUND] = ACTIONS(5741), - [anon_sym_DASH] = ACTIONS(5741), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5745), - [anon_sym_STAR] = ACTIONS(5741), - [anon_sym_AT] = ACTIONS(5741), - [anon_sym_QMARK] = ACTIONS(5741), - [anon_sym_0] = ACTIONS(5747), - [anon_sym__] = ACTIONS(5747), - }, - [2088] = { - [aux_sym_concatenation_repeat1] = STATE(2750), - [sym__concat] = ACTIONS(5737), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_RPAREN] = ACTIONS(2430), - [anon_sym_SEMI_SEMI] = ACTIONS(2430), - [anon_sym_PIPE_AMP] = ACTIONS(2430), - [anon_sym_AMP_AMP] = ACTIONS(2430), - [anon_sym_PIPE_PIPE] = ACTIONS(2430), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2430), - [anon_sym_LF] = ACTIONS(2430), - [anon_sym_AMP] = ACTIONS(2430), - }, - [2089] = { - [sym_subscript] = STATE(2760), - [sym_variable_name] = ACTIONS(5749), - [anon_sym_DOLLAR] = ACTIONS(5751), - [anon_sym_POUND] = ACTIONS(5753), - [anon_sym_DASH] = ACTIONS(5751), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5755), - [anon_sym_STAR] = ACTIONS(5751), - [anon_sym_AT] = ACTIONS(5751), - [anon_sym_QMARK] = ACTIONS(5751), - [anon_sym_0] = ACTIONS(5757), - [anon_sym__] = ACTIONS(5757), - }, - [2090] = { - [sym_for_statement] = STATE(2761), - [sym_while_statement] = STATE(2761), - [sym_if_statement] = STATE(2761), - [sym_case_statement] = STATE(2761), - [sym_function_definition] = STATE(2761), - [sym_subshell] = STATE(2761), - [sym_pipeline] = STATE(2761), - [sym_list] = STATE(2761), - [sym_command] = STATE(2761), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(2761), - [sym_variable_assignment] = STATE(2762), - [sym_declaration_command] = STATE(2761), - [sym_unset_command] = STATE(2761), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [2091] = { - [sym_for_statement] = STATE(2763), - [sym_while_statement] = STATE(2763), - [sym_if_statement] = STATE(2763), - [sym_case_statement] = STATE(2763), - [sym_function_definition] = STATE(2763), - [sym_subshell] = STATE(2763), - [sym_pipeline] = STATE(2763), - [sym_list] = STATE(2763), - [sym_command] = STATE(2763), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(2763), - [sym_variable_assignment] = STATE(2764), - [sym_declaration_command] = STATE(2763), - [sym_unset_command] = STATE(2763), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [2092] = { - [sym_for_statement] = STATE(2765), - [sym_while_statement] = STATE(2765), - [sym_if_statement] = STATE(2765), - [sym_case_statement] = STATE(2765), - [sym_function_definition] = STATE(2765), - [sym_subshell] = STATE(2765), - [sym_pipeline] = STATE(2765), - [sym_list] = STATE(2765), - [sym_command] = STATE(2765), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(2765), - [sym_variable_assignment] = STATE(2766), - [sym_declaration_command] = STATE(2765), - [sym_unset_command] = STATE(2765), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [2093] = { - [sym__concat] = ACTIONS(3293), - [sym_variable_name] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_RPAREN] = ACTIONS(3295), - [anon_sym_SEMI_SEMI] = ACTIONS(3295), - [anon_sym_PIPE_AMP] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [sym__special_characters] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_DOLLAR] = ACTIONS(3295), - [sym_raw_string] = ACTIONS(3295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), - [anon_sym_BQUOTE] = ACTIONS(3295), - [anon_sym_LT_LPAREN] = ACTIONS(3295), - [anon_sym_GT_LPAREN] = ACTIONS(3295), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3295), - [sym_word] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - }, - [2094] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5759), - [sym_comment] = ACTIONS(56), - }, - [2095] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5761), - [sym_comment] = ACTIONS(56), - }, - [2096] = { - [anon_sym_RBRACE] = ACTIONS(5761), - [sym_comment] = ACTIONS(56), - }, - [2097] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2770), - [anon_sym_RBRACE] = ACTIONS(5763), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2098] = { - [sym__concat] = ACTIONS(3357), - [sym_variable_name] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_RPAREN] = ACTIONS(3359), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_PIPE_AMP] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [sym__special_characters] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_DOLLAR] = ACTIONS(3359), - [sym_raw_string] = ACTIONS(3359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), - [anon_sym_BQUOTE] = ACTIONS(3359), - [anon_sym_LT_LPAREN] = ACTIONS(3359), - [anon_sym_GT_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3359), - [sym_word] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - }, - [2099] = { - [sym_concatenation] = STATE(2773), - [sym_string] = STATE(2772), - [sym_simple_expansion] = STATE(2772), - [sym_string_expansion] = STATE(2772), - [sym_expansion] = STATE(2772), - [sym_command_substitution] = STATE(2772), - [sym_process_substitution] = STATE(2772), - [anon_sym_RBRACE] = ACTIONS(5761), - [sym__special_characters] = ACTIONS(5765), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(5767), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5769), - }, - [2100] = { - [sym__concat] = ACTIONS(3402), - [sym_variable_name] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_RPAREN] = ACTIONS(3404), - [anon_sym_SEMI_SEMI] = ACTIONS(3404), - [anon_sym_PIPE_AMP] = ACTIONS(3404), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3404), - [sym__special_characters] = ACTIONS(3404), - [anon_sym_DQUOTE] = ACTIONS(3404), - [anon_sym_DOLLAR] = ACTIONS(3404), - [sym_raw_string] = ACTIONS(3404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), - [anon_sym_BQUOTE] = ACTIONS(3404), - [anon_sym_LT_LPAREN] = ACTIONS(3404), - [anon_sym_GT_LPAREN] = ACTIONS(3404), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3404), - [sym_word] = ACTIONS(3404), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - }, - [2101] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5771), - }, - [2102] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5773), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2103] = { - [sym__concat] = ACTIONS(3410), - [sym_variable_name] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_RPAREN] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(3412), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3412), - [sym_word] = ACTIONS(3412), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - }, - [2104] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5775), - }, - [2105] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5777), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2106] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5779), - }, - [2107] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5761), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2108] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2780), - [anon_sym_RBRACE] = ACTIONS(5781), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2109] = { - [sym__concat] = ACTIONS(3422), - [sym_variable_name] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_RPAREN] = ACTIONS(3424), - [anon_sym_SEMI_SEMI] = ACTIONS(3424), - [anon_sym_PIPE_AMP] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_PIPE_PIPE] = ACTIONS(3424), - [sym__special_characters] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [anon_sym_DOLLAR] = ACTIONS(3424), - [sym_raw_string] = ACTIONS(3424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), - [anon_sym_BQUOTE] = ACTIONS(3424), - [anon_sym_LT_LPAREN] = ACTIONS(3424), - [anon_sym_GT_LPAREN] = ACTIONS(3424), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3424), - [sym_word] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - }, - [2110] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2782), - [anon_sym_RBRACE] = ACTIONS(5783), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2111] = { - [sym__concat] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_RPAREN] = ACTIONS(3295), - [anon_sym_SEMI_SEMI] = ACTIONS(3295), - [anon_sym_PIPE_AMP] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [sym__special_characters] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_DOLLAR] = ACTIONS(3295), - [sym_raw_string] = ACTIONS(3295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), - [anon_sym_BQUOTE] = ACTIONS(3295), - [anon_sym_LT_LPAREN] = ACTIONS(3295), - [anon_sym_GT_LPAREN] = ACTIONS(3295), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3295), - [sym_word] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - }, - [2112] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5785), - [sym_comment] = ACTIONS(56), - }, - [2113] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5787), - [sym_comment] = ACTIONS(56), - }, - [2114] = { - [anon_sym_RBRACE] = ACTIONS(5787), - [sym_comment] = ACTIONS(56), - }, - [2115] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2786), - [anon_sym_RBRACE] = ACTIONS(5789), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2116] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_RPAREN] = ACTIONS(3359), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_PIPE_AMP] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [sym__special_characters] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_DOLLAR] = ACTIONS(3359), - [sym_raw_string] = ACTIONS(3359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), - [anon_sym_BQUOTE] = ACTIONS(3359), - [anon_sym_LT_LPAREN] = ACTIONS(3359), - [anon_sym_GT_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3359), - [sym_word] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - }, - [2117] = { - [sym_concatenation] = STATE(2789), - [sym_string] = STATE(2788), - [sym_simple_expansion] = STATE(2788), - [sym_string_expansion] = STATE(2788), - [sym_expansion] = STATE(2788), - [sym_command_substitution] = STATE(2788), - [sym_process_substitution] = STATE(2788), - [anon_sym_RBRACE] = ACTIONS(5787), - [sym__special_characters] = ACTIONS(5791), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(5793), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5795), - }, - [2118] = { - [sym__concat] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_RPAREN] = ACTIONS(3404), - [anon_sym_SEMI_SEMI] = ACTIONS(3404), - [anon_sym_PIPE_AMP] = ACTIONS(3404), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3404), - [sym__special_characters] = ACTIONS(3404), - [anon_sym_DQUOTE] = ACTIONS(3404), - [anon_sym_DOLLAR] = ACTIONS(3404), - [sym_raw_string] = ACTIONS(3404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), - [anon_sym_BQUOTE] = ACTIONS(3404), - [anon_sym_LT_LPAREN] = ACTIONS(3404), - [anon_sym_GT_LPAREN] = ACTIONS(3404), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3404), - [sym_word] = ACTIONS(3404), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - }, - [2119] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5797), - }, - [2120] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5799), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2121] = { - [sym__concat] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_RPAREN] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(3412), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3412), - [sym_word] = ACTIONS(3412), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - }, - [2122] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5801), - }, - [2123] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5803), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2124] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5805), - }, - [2125] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5787), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2126] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2796), - [anon_sym_RBRACE] = ACTIONS(5807), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2127] = { - [sym__concat] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_RPAREN] = ACTIONS(3424), - [anon_sym_SEMI_SEMI] = ACTIONS(3424), - [anon_sym_PIPE_AMP] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_PIPE_PIPE] = ACTIONS(3424), - [sym__special_characters] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [anon_sym_DOLLAR] = ACTIONS(3424), - [sym_raw_string] = ACTIONS(3424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), - [anon_sym_BQUOTE] = ACTIONS(3424), - [anon_sym_LT_LPAREN] = ACTIONS(3424), - [anon_sym_GT_LPAREN] = ACTIONS(3424), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3424), - [sym_word] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - }, - [2128] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2798), - [anon_sym_RBRACE] = ACTIONS(5809), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2129] = { - [sym_file_descriptor] = ACTIONS(4802), - [sym__concat] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_RPAREN] = ACTIONS(4804), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [anon_sym_PIPE_AMP] = ACTIONS(4804), - [anon_sym_AMP_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4804), - [anon_sym_EQ_TILDE] = ACTIONS(4804), - [anon_sym_EQ_EQ] = ACTIONS(4804), - [anon_sym_LT] = ACTIONS(4804), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_GT_GT] = ACTIONS(4804), - [anon_sym_AMP_GT] = ACTIONS(4804), - [anon_sym_AMP_GT_GT] = ACTIONS(4804), - [anon_sym_LT_AMP] = ACTIONS(4804), - [anon_sym_GT_AMP] = ACTIONS(4804), - [anon_sym_LT_LT] = ACTIONS(4804), - [anon_sym_LT_LT_DASH] = ACTIONS(4804), - [anon_sym_LT_LT_LT] = ACTIONS(4804), - [sym__special_characters] = ACTIONS(4804), - [anon_sym_DQUOTE] = ACTIONS(4804), - [anon_sym_DOLLAR] = ACTIONS(4804), - [sym_raw_string] = ACTIONS(4804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), - [anon_sym_BQUOTE] = ACTIONS(4804), - [anon_sym_LT_LPAREN] = ACTIONS(4804), - [anon_sym_GT_LPAREN] = ACTIONS(4804), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4804), - [anon_sym_SEMI] = ACTIONS(4804), - [anon_sym_LF] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4804), - }, - [2130] = { - [sym_file_descriptor] = ACTIONS(4808), - [sym__concat] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_RPAREN] = ACTIONS(4810), - [anon_sym_SEMI_SEMI] = ACTIONS(4810), - [anon_sym_PIPE_AMP] = ACTIONS(4810), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [anon_sym_EQ_TILDE] = ACTIONS(4810), - [anon_sym_EQ_EQ] = ACTIONS(4810), - [anon_sym_LT] = ACTIONS(4810), - [anon_sym_GT] = ACTIONS(4810), - [anon_sym_GT_GT] = ACTIONS(4810), - [anon_sym_AMP_GT] = ACTIONS(4810), - [anon_sym_AMP_GT_GT] = ACTIONS(4810), - [anon_sym_LT_AMP] = ACTIONS(4810), - [anon_sym_GT_AMP] = ACTIONS(4810), - [anon_sym_LT_LT] = ACTIONS(4810), - [anon_sym_LT_LT_DASH] = ACTIONS(4810), - [anon_sym_LT_LT_LT] = ACTIONS(4810), - [sym__special_characters] = ACTIONS(4810), - [anon_sym_DQUOTE] = ACTIONS(4810), - [anon_sym_DOLLAR] = ACTIONS(4810), - [sym_raw_string] = ACTIONS(4810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), - [anon_sym_BQUOTE] = ACTIONS(4810), - [anon_sym_LT_LPAREN] = ACTIONS(4810), - [anon_sym_GT_LPAREN] = ACTIONS(4810), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4810), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LF] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4810), - }, - [2131] = { - [sym_file_descriptor] = ACTIONS(4871), - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_RPAREN] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [anon_sym_EQ_TILDE] = ACTIONS(4873), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_GT_GT] = ACTIONS(4873), - [anon_sym_AMP_GT] = ACTIONS(4873), - [anon_sym_AMP_GT_GT] = ACTIONS(4873), - [anon_sym_LT_AMP] = ACTIONS(4873), - [anon_sym_GT_AMP] = ACTIONS(4873), - [anon_sym_LT_LT] = ACTIONS(4873), - [anon_sym_LT_LT_DASH] = ACTIONS(4873), - [anon_sym_LT_LT_LT] = ACTIONS(4873), - [sym__special_characters] = ACTIONS(4873), - [anon_sym_DQUOTE] = ACTIONS(4873), - [anon_sym_DOLLAR] = ACTIONS(4873), - [sym_raw_string] = ACTIONS(4873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), - [anon_sym_BQUOTE] = ACTIONS(4873), - [anon_sym_LT_LPAREN] = ACTIONS(4873), - [anon_sym_GT_LPAREN] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [2132] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5811), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2133] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5813), - [sym_comment] = ACTIONS(56), - }, - [2134] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5815), - [sym_comment] = ACTIONS(56), - }, - [2135] = { - [anon_sym_RBRACE] = ACTIONS(5815), - [sym_comment] = ACTIONS(56), - }, - [2136] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2803), - [anon_sym_RBRACE] = ACTIONS(5817), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2137] = { - [sym_file_descriptor] = ACTIONS(4883), - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(4885), - [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(4885), - [anon_sym_EQ_EQ] = ACTIONS(4885), - [anon_sym_LT] = ACTIONS(4885), - [anon_sym_GT] = ACTIONS(4885), - [anon_sym_GT_GT] = ACTIONS(4885), - [anon_sym_AMP_GT] = ACTIONS(4885), - [anon_sym_AMP_GT_GT] = ACTIONS(4885), - [anon_sym_LT_AMP] = ACTIONS(4885), - [anon_sym_GT_AMP] = ACTIONS(4885), - [anon_sym_LT_LT] = ACTIONS(4885), - [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(4885), - [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(182), - [sym_word] = ACTIONS(4885), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [2138] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2805), - [anon_sym_RBRACE] = ACTIONS(5819), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2139] = { - [sym_file_descriptor] = ACTIONS(4889), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_RPAREN] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [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(4891), - [anon_sym_AMP_GT] = ACTIONS(4891), - [anon_sym_AMP_GT_GT] = ACTIONS(4891), - [anon_sym_LT_AMP] = ACTIONS(4891), - [anon_sym_GT_AMP] = ACTIONS(4891), - [anon_sym_LT_LT] = ACTIONS(4891), - [anon_sym_LT_LT_DASH] = ACTIONS(4891), - [anon_sym_LT_LT_LT] = ACTIONS(4891), - [sym__special_characters] = ACTIONS(4891), - [anon_sym_DQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR] = ACTIONS(4891), - [sym_raw_string] = ACTIONS(4891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), - [anon_sym_BQUOTE] = ACTIONS(4891), - [anon_sym_LT_LPAREN] = ACTIONS(4891), - [anon_sym_GT_LPAREN] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4891), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [2140] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2807), - [anon_sym_RBRACE] = ACTIONS(5821), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2141] = { - [sym_file_descriptor] = ACTIONS(4895), - [sym__concat] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_RPAREN] = ACTIONS(4897), - [anon_sym_SEMI_SEMI] = ACTIONS(4897), - [anon_sym_PIPE_AMP] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [anon_sym_EQ_TILDE] = ACTIONS(4897), - [anon_sym_EQ_EQ] = ACTIONS(4897), - [anon_sym_LT] = ACTIONS(4897), - [anon_sym_GT] = ACTIONS(4897), - [anon_sym_GT_GT] = ACTIONS(4897), - [anon_sym_AMP_GT] = ACTIONS(4897), - [anon_sym_AMP_GT_GT] = ACTIONS(4897), - [anon_sym_LT_AMP] = ACTIONS(4897), - [anon_sym_GT_AMP] = ACTIONS(4897), - [anon_sym_LT_LT] = ACTIONS(4897), - [anon_sym_LT_LT_DASH] = ACTIONS(4897), - [anon_sym_LT_LT_LT] = ACTIONS(4897), - [sym__special_characters] = ACTIONS(4897), - [anon_sym_DQUOTE] = ACTIONS(4897), - [anon_sym_DOLLAR] = ACTIONS(4897), - [sym_raw_string] = ACTIONS(4897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), - [anon_sym_BQUOTE] = ACTIONS(4897), - [anon_sym_LT_LPAREN] = ACTIONS(4897), - [anon_sym_GT_LPAREN] = ACTIONS(4897), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4897), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LF] = ACTIONS(4897), - [anon_sym_AMP] = ACTIONS(4897), - }, - [2142] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5823), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2143] = { - [sym_file_descriptor] = ACTIONS(4901), - [sym__concat] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(4903), - [anon_sym_RPAREN] = ACTIONS(4903), - [anon_sym_SEMI_SEMI] = ACTIONS(4903), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [anon_sym_EQ_TILDE] = ACTIONS(4903), - [anon_sym_EQ_EQ] = ACTIONS(4903), - [anon_sym_LT] = ACTIONS(4903), - [anon_sym_GT] = ACTIONS(4903), - [anon_sym_GT_GT] = ACTIONS(4903), - [anon_sym_AMP_GT] = ACTIONS(4903), - [anon_sym_AMP_GT_GT] = ACTIONS(4903), - [anon_sym_LT_AMP] = ACTIONS(4903), - [anon_sym_GT_AMP] = ACTIONS(4903), - [anon_sym_LT_LT] = ACTIONS(4903), - [anon_sym_LT_LT_DASH] = ACTIONS(4903), - [anon_sym_LT_LT_LT] = ACTIONS(4903), - [sym__special_characters] = ACTIONS(4903), - [anon_sym_DQUOTE] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4903), - [sym_raw_string] = ACTIONS(4903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), - [anon_sym_BQUOTE] = ACTIONS(4903), - [anon_sym_LT_LPAREN] = ACTIONS(4903), - [anon_sym_GT_LPAREN] = ACTIONS(4903), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4903), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LF] = ACTIONS(4903), - [anon_sym_AMP] = ACTIONS(4903), - }, - [2144] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5825), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2145] = { - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_AMP_GT] = ACTIONS(1892), - [anon_sym_AMP_GT_GT] = ACTIONS(1892), - [anon_sym_LT_AMP] = ACTIONS(1892), - [anon_sym_GT_AMP] = ACTIONS(1892), - [anon_sym_LT_LT] = ACTIONS(1892), - [anon_sym_LT_LT_DASH] = ACTIONS(1892), - [anon_sym_LT_LT_LT] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [2146] = { - [aux_sym_concatenation_repeat1] = STATE(2146), - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(5827), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_AMP_GT] = ACTIONS(1892), - [anon_sym_AMP_GT_GT] = ACTIONS(1892), - [anon_sym_LT_AMP] = ACTIONS(1892), - [anon_sym_GT_AMP] = ACTIONS(1892), - [anon_sym_LT_LT] = ACTIONS(1892), - [anon_sym_LT_LT_DASH] = ACTIONS(1892), - [anon_sym_LT_LT_LT] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [2147] = { - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_RPAREN] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1929), - [anon_sym_PIPE_AMP] = ACTIONS(1929), - [anon_sym_AMP_AMP] = ACTIONS(1929), - [anon_sym_PIPE_PIPE] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_GT_GT] = ACTIONS(1929), - [anon_sym_AMP_GT] = ACTIONS(1929), - [anon_sym_AMP_GT_GT] = ACTIONS(1929), - [anon_sym_LT_AMP] = ACTIONS(1929), - [anon_sym_GT_AMP] = ACTIONS(1929), - [anon_sym_LT_LT] = ACTIONS(1929), - [anon_sym_LT_LT_DASH] = ACTIONS(1929), - [anon_sym_LT_LT_LT] = ACTIONS(1929), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - }, - [2148] = { - [sym_concatenation] = STATE(2813), - [sym_string] = STATE(2812), - [sym_simple_expansion] = STATE(2812), - [sym_string_expansion] = STATE(2812), - [sym_expansion] = STATE(2812), - [sym_command_substitution] = STATE(2812), - [sym_process_substitution] = STATE(2812), - [anon_sym_RBRACE] = ACTIONS(5830), - [sym__special_characters] = ACTIONS(5832), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(5834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5836), - }, - [2149] = { - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1974), - [anon_sym_GT_GT] = ACTIONS(1974), - [anon_sym_AMP_GT] = ACTIONS(1974), - [anon_sym_AMP_GT_GT] = ACTIONS(1974), - [anon_sym_LT_AMP] = ACTIONS(1974), - [anon_sym_GT_AMP] = ACTIONS(1974), - [anon_sym_LT_LT] = ACTIONS(1974), - [anon_sym_LT_LT_DASH] = ACTIONS(1974), - [anon_sym_LT_LT_LT] = ACTIONS(1974), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_LF] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - }, - [2150] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5838), - }, - [2151] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5840), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2152] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(5842), - [sym_comment] = ACTIONS(56), - }, - [2153] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2819), - [anon_sym_RBRACE] = ACTIONS(5844), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5846), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2154] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2822), - [anon_sym_RBRACE] = ACTIONS(5848), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5850), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2155] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2824), - [anon_sym_RBRACE] = ACTIONS(5830), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(5852), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2156] = { - [sym_file_descriptor] = ACTIONS(2026), - [sym__concat] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_RPAREN] = ACTIONS(2028), - [anon_sym_SEMI_SEMI] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(2028), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [anon_sym_LT] = ACTIONS(2028), - [anon_sym_GT] = ACTIONS(2028), - [anon_sym_GT_GT] = ACTIONS(2028), - [anon_sym_AMP_GT] = ACTIONS(2028), - [anon_sym_AMP_GT_GT] = ACTIONS(2028), - [anon_sym_LT_AMP] = ACTIONS(2028), - [anon_sym_GT_AMP] = ACTIONS(2028), - [anon_sym_LT_LT] = ACTIONS(2028), - [anon_sym_LT_LT_DASH] = ACTIONS(2028), - [anon_sym_LT_LT_LT] = ACTIONS(2028), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - }, - [2157] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5854), - }, - [2158] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5856), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2159] = { - [sym_file_descriptor] = ACTIONS(2034), - [sym__concat] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_RPAREN] = ACTIONS(2036), - [anon_sym_SEMI_SEMI] = ACTIONS(2036), - [anon_sym_PIPE_AMP] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [anon_sym_LT] = ACTIONS(2036), - [anon_sym_GT] = ACTIONS(2036), - [anon_sym_GT_GT] = ACTIONS(2036), - [anon_sym_AMP_GT] = ACTIONS(2036), - [anon_sym_AMP_GT_GT] = ACTIONS(2036), - [anon_sym_LT_AMP] = ACTIONS(2036), - [anon_sym_GT_AMP] = ACTIONS(2036), - [anon_sym_LT_LT] = ACTIONS(2036), - [anon_sym_LT_LT_DASH] = ACTIONS(2036), - [anon_sym_LT_LT_LT] = ACTIONS(2036), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_LF] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - }, - [2160] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5858), - }, - [2161] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5830), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2162] = { - [sym_file_descriptor] = ACTIONS(2196), - [sym__concat] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_SEMI_SEMI] = ACTIONS(2198), - [anon_sym_PIPE_AMP] = ACTIONS(2198), - [anon_sym_AMP_AMP] = ACTIONS(2198), - [anon_sym_PIPE_PIPE] = ACTIONS(2198), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_GT] = ACTIONS(2198), - [anon_sym_GT_GT] = ACTIONS(2198), - [anon_sym_AMP_GT] = ACTIONS(2198), - [anon_sym_AMP_GT_GT] = ACTIONS(2198), - [anon_sym_LT_AMP] = ACTIONS(2198), - [anon_sym_GT_AMP] = ACTIONS(2198), - [anon_sym_LT_LT] = ACTIONS(2198), - [anon_sym_LT_LT_DASH] = ACTIONS(2198), - [anon_sym_LT_LT_LT] = ACTIONS(2198), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - }, - [2163] = { - [sym_file_descriptor] = ACTIONS(2402), - [sym__concat] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_RPAREN] = ACTIONS(2404), - [anon_sym_SEMI_SEMI] = ACTIONS(2404), - [anon_sym_PIPE_AMP] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2404), - [anon_sym_GT] = ACTIONS(2404), - [anon_sym_GT_GT] = ACTIONS(2404), - [anon_sym_AMP_GT] = ACTIONS(2404), - [anon_sym_AMP_GT_GT] = ACTIONS(2404), - [anon_sym_LT_AMP] = ACTIONS(2404), - [anon_sym_GT_AMP] = ACTIONS(2404), - [anon_sym_LT_LT] = ACTIONS(2404), - [anon_sym_LT_LT_DASH] = ACTIONS(2404), - [anon_sym_LT_LT_LT] = ACTIONS(2404), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LF] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - }, - [2164] = { - [sym__concat] = ACTIONS(4802), - [anon_sym_EQ_TILDE] = ACTIONS(5860), - [anon_sym_EQ_EQ] = ACTIONS(5860), - [anon_sym_RBRACK] = ACTIONS(4802), - [sym__special_characters] = ACTIONS(4804), - [anon_sym_DQUOTE] = ACTIONS(4802), - [anon_sym_DOLLAR] = ACTIONS(5860), - [sym_raw_string] = ACTIONS(4802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), - [anon_sym_BQUOTE] = ACTIONS(4802), - [anon_sym_LT_LPAREN] = ACTIONS(4802), - [anon_sym_GT_LPAREN] = ACTIONS(4802), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4804), - }, - [2165] = { - [sym__concat] = ACTIONS(4808), - [anon_sym_EQ_TILDE] = ACTIONS(5862), - [anon_sym_EQ_EQ] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(4808), - [sym__special_characters] = ACTIONS(4810), - [anon_sym_DQUOTE] = ACTIONS(4808), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4808), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), - [anon_sym_BQUOTE] = ACTIONS(4808), - [anon_sym_LT_LPAREN] = ACTIONS(4808), - [anon_sym_GT_LPAREN] = ACTIONS(4808), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4810), - }, - [2166] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_EQ_TILDE] = ACTIONS(5864), - [anon_sym_EQ_EQ] = ACTIONS(5864), - [anon_sym_RBRACK] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(4873), - [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5864), - [sym_raw_string] = ACTIONS(4871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), - [anon_sym_BQUOTE] = ACTIONS(4871), - [anon_sym_LT_LPAREN] = ACTIONS(4871), - [anon_sym_GT_LPAREN] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4873), - }, - [2167] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2168] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5868), - [sym_comment] = ACTIONS(56), - }, - [2169] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5870), - [sym_comment] = ACTIONS(56), - }, - [2170] = { - [anon_sym_RBRACE] = ACTIONS(5870), - [sym_comment] = ACTIONS(56), - }, - [2171] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2832), - [anon_sym_RBRACE] = ACTIONS(5872), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2172] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_EQ_TILDE] = ACTIONS(5874), - [anon_sym_EQ_EQ] = ACTIONS(5874), - [anon_sym_RBRACK] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(4885), - [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5874), - [sym_raw_string] = ACTIONS(4883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(4883), - [anon_sym_LT_LPAREN] = ACTIONS(4883), - [anon_sym_GT_LPAREN] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4885), - }, - [2173] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2834), - [anon_sym_RBRACE] = ACTIONS(5876), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2174] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_EQ_TILDE] = ACTIONS(5878), - [anon_sym_EQ_EQ] = ACTIONS(5878), - [anon_sym_RBRACK] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(4891), - [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5878), - [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(56), - [sym_word] = ACTIONS(4891), - }, - [2175] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2836), - [anon_sym_RBRACE] = ACTIONS(5880), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2176] = { - [sym__concat] = ACTIONS(4895), - [anon_sym_EQ_TILDE] = ACTIONS(5882), - [anon_sym_EQ_EQ] = ACTIONS(5882), - [anon_sym_RBRACK] = ACTIONS(4895), - [sym__special_characters] = ACTIONS(4897), - [anon_sym_DQUOTE] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(5882), - [sym_raw_string] = ACTIONS(4895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), - [anon_sym_BQUOTE] = ACTIONS(4895), - [anon_sym_LT_LPAREN] = ACTIONS(4895), - [anon_sym_GT_LPAREN] = ACTIONS(4895), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4897), - }, - [2177] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5884), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2178] = { - [sym__concat] = ACTIONS(4901), - [anon_sym_EQ_TILDE] = ACTIONS(5886), - [anon_sym_EQ_EQ] = ACTIONS(5886), - [anon_sym_RBRACK] = ACTIONS(4901), - [sym__special_characters] = ACTIONS(4903), - [anon_sym_DQUOTE] = ACTIONS(4901), - [anon_sym_DOLLAR] = ACTIONS(5886), - [sym_raw_string] = ACTIONS(4901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), - [anon_sym_BQUOTE] = ACTIONS(4901), - [anon_sym_LT_LPAREN] = ACTIONS(4901), - [anon_sym_GT_LPAREN] = ACTIONS(4901), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4903), - }, - [2179] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5888), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2180] = { - [sym__concat] = ACTIONS(4802), - [anon_sym_EQ_TILDE] = ACTIONS(5860), - [anon_sym_EQ_EQ] = ACTIONS(5860), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4802), - [sym__special_characters] = ACTIONS(4804), - [anon_sym_DQUOTE] = ACTIONS(4802), - [anon_sym_DOLLAR] = ACTIONS(5860), - [sym_raw_string] = ACTIONS(4802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), - [anon_sym_BQUOTE] = ACTIONS(4802), - [anon_sym_LT_LPAREN] = ACTIONS(4802), - [anon_sym_GT_LPAREN] = ACTIONS(4802), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4804), - }, - [2181] = { - [sym__concat] = ACTIONS(4808), - [anon_sym_EQ_TILDE] = ACTIONS(5862), - [anon_sym_EQ_EQ] = ACTIONS(5862), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4808), - [sym__special_characters] = ACTIONS(4810), - [anon_sym_DQUOTE] = ACTIONS(4808), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4808), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), - [anon_sym_BQUOTE] = ACTIONS(4808), - [anon_sym_LT_LPAREN] = ACTIONS(4808), - [anon_sym_GT_LPAREN] = ACTIONS(4808), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4810), - }, - [2182] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_EQ_TILDE] = ACTIONS(5864), - [anon_sym_EQ_EQ] = ACTIONS(5864), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(4873), - [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5864), - [sym_raw_string] = ACTIONS(4871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), - [anon_sym_BQUOTE] = ACTIONS(4871), - [anon_sym_LT_LPAREN] = ACTIONS(4871), - [anon_sym_GT_LPAREN] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4873), - }, - [2183] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5890), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2184] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5892), - [sym_comment] = ACTIONS(56), - }, - [2185] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5894), - [sym_comment] = ACTIONS(56), - }, - [2186] = { - [anon_sym_RBRACE] = ACTIONS(5894), - [sym_comment] = ACTIONS(56), - }, - [2187] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2843), - [anon_sym_RBRACE] = ACTIONS(5896), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2188] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_EQ_TILDE] = ACTIONS(5874), - [anon_sym_EQ_EQ] = ACTIONS(5874), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(4885), - [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5874), - [sym_raw_string] = ACTIONS(4883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(4883), - [anon_sym_LT_LPAREN] = ACTIONS(4883), - [anon_sym_GT_LPAREN] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4885), - }, - [2189] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2845), - [anon_sym_RBRACE] = ACTIONS(5898), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2190] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_EQ_TILDE] = ACTIONS(5878), - [anon_sym_EQ_EQ] = ACTIONS(5878), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(4891), - [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5878), - [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(56), - [sym_word] = ACTIONS(4891), - }, - [2191] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2847), - [anon_sym_RBRACE] = ACTIONS(5900), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2192] = { - [sym__concat] = ACTIONS(4895), - [anon_sym_EQ_TILDE] = ACTIONS(5882), - [anon_sym_EQ_EQ] = ACTIONS(5882), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4895), - [sym__special_characters] = ACTIONS(4897), - [anon_sym_DQUOTE] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(5882), - [sym_raw_string] = ACTIONS(4895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), - [anon_sym_BQUOTE] = ACTIONS(4895), - [anon_sym_LT_LPAREN] = ACTIONS(4895), - [anon_sym_GT_LPAREN] = ACTIONS(4895), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4897), - }, - [2193] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5902), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2194] = { - [sym__concat] = ACTIONS(4901), - [anon_sym_EQ_TILDE] = ACTIONS(5886), - [anon_sym_EQ_EQ] = ACTIONS(5886), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4901), - [sym__special_characters] = ACTIONS(4903), - [anon_sym_DQUOTE] = ACTIONS(4901), - [anon_sym_DOLLAR] = ACTIONS(5886), - [sym_raw_string] = ACTIONS(4901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), - [anon_sym_BQUOTE] = ACTIONS(4901), - [anon_sym_LT_LPAREN] = ACTIONS(4901), - [anon_sym_GT_LPAREN] = ACTIONS(4901), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4903), - }, - [2195] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5904), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2196] = { - [sym_variable_name] = ACTIONS(4181), - [anon_sym_PIPE] = ACTIONS(4183), - [anon_sym_RPAREN] = ACTIONS(4183), - [anon_sym_SEMI_SEMI] = ACTIONS(4183), - [anon_sym_PIPE_AMP] = ACTIONS(4183), - [anon_sym_AMP_AMP] = ACTIONS(4183), - [anon_sym_PIPE_PIPE] = ACTIONS(4183), - [sym__special_characters] = ACTIONS(4183), - [anon_sym_DQUOTE] = ACTIONS(4183), - [anon_sym_DOLLAR] = ACTIONS(4183), - [sym_raw_string] = ACTIONS(4183), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4183), - [anon_sym_BQUOTE] = ACTIONS(4183), - [anon_sym_LT_LPAREN] = ACTIONS(4183), - [anon_sym_GT_LPAREN] = ACTIONS(4183), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4183), - [sym_word] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4183), - [anon_sym_LF] = ACTIONS(4183), - [anon_sym_AMP] = ACTIONS(4183), - }, - [2197] = { - [sym__concat] = ACTIONS(4802), - [sym_variable_name] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [anon_sym_PIPE_AMP] = ACTIONS(4804), - [anon_sym_AMP_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4804), - [sym__special_characters] = ACTIONS(4804), - [anon_sym_DQUOTE] = ACTIONS(4804), - [anon_sym_DOLLAR] = ACTIONS(4804), - [sym_raw_string] = ACTIONS(4804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), - [anon_sym_BQUOTE] = ACTIONS(4804), - [anon_sym_LT_LPAREN] = ACTIONS(4804), - [anon_sym_GT_LPAREN] = ACTIONS(4804), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4804), - [sym_word] = ACTIONS(4804), - [anon_sym_SEMI] = ACTIONS(4804), - [anon_sym_LF] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4804), - }, - [2198] = { - [sym__concat] = ACTIONS(4808), - [sym_variable_name] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_SEMI_SEMI] = ACTIONS(4810), - [anon_sym_PIPE_AMP] = ACTIONS(4810), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [sym__special_characters] = ACTIONS(4810), - [anon_sym_DQUOTE] = ACTIONS(4810), - [anon_sym_DOLLAR] = ACTIONS(4810), - [sym_raw_string] = ACTIONS(4810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), - [anon_sym_BQUOTE] = ACTIONS(4810), - [anon_sym_LT_LPAREN] = ACTIONS(4810), - [anon_sym_GT_LPAREN] = ACTIONS(4810), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4810), - [sym_word] = ACTIONS(4810), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LF] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4810), - }, - [2199] = { - [sym__concat] = ACTIONS(4871), - [sym_variable_name] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [sym__special_characters] = ACTIONS(4873), - [anon_sym_DQUOTE] = ACTIONS(4873), - [anon_sym_DOLLAR] = ACTIONS(4873), - [sym_raw_string] = ACTIONS(4873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), - [anon_sym_BQUOTE] = ACTIONS(4873), - [anon_sym_LT_LPAREN] = ACTIONS(4873), - [anon_sym_GT_LPAREN] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4873), - [sym_word] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [2200] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5906), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2201] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5908), - [sym_comment] = ACTIONS(56), - }, - [2202] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5910), - [sym_comment] = ACTIONS(56), - }, - [2203] = { - [anon_sym_RBRACE] = ACTIONS(5910), - [sym_comment] = ACTIONS(56), - }, - [2204] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2854), - [anon_sym_RBRACE] = ACTIONS(5912), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2205] = { - [sym__concat] = ACTIONS(4883), - [sym_variable_name] = ACTIONS(4883), - [anon_sym_PIPE] = 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(4885), - [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(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4885), - [sym_word] = ACTIONS(4885), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [2206] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2856), - [anon_sym_RBRACE] = ACTIONS(5914), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2207] = { - [sym__concat] = ACTIONS(4889), - [sym_variable_name] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [sym__special_characters] = ACTIONS(4891), - [anon_sym_DQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR] = ACTIONS(4891), - [sym_raw_string] = ACTIONS(4891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), - [anon_sym_BQUOTE] = ACTIONS(4891), - [anon_sym_LT_LPAREN] = ACTIONS(4891), - [anon_sym_GT_LPAREN] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4891), - [sym_word] = ACTIONS(4891), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [2208] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2858), - [anon_sym_RBRACE] = ACTIONS(5916), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2209] = { - [sym__concat] = ACTIONS(4895), - [sym_variable_name] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_SEMI_SEMI] = ACTIONS(4897), - [anon_sym_PIPE_AMP] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [sym__special_characters] = ACTIONS(4897), - [anon_sym_DQUOTE] = ACTIONS(4897), - [anon_sym_DOLLAR] = ACTIONS(4897), - [sym_raw_string] = ACTIONS(4897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), - [anon_sym_BQUOTE] = ACTIONS(4897), - [anon_sym_LT_LPAREN] = ACTIONS(4897), - [anon_sym_GT_LPAREN] = ACTIONS(4897), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4897), - [sym_word] = ACTIONS(4897), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LF] = ACTIONS(4897), - [anon_sym_AMP] = ACTIONS(4897), - }, - [2210] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5918), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2211] = { - [sym__concat] = ACTIONS(4901), - [sym_variable_name] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(4903), - [anon_sym_SEMI_SEMI] = ACTIONS(4903), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [sym__special_characters] = ACTIONS(4903), - [anon_sym_DQUOTE] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4903), - [sym_raw_string] = ACTIONS(4903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), - [anon_sym_BQUOTE] = ACTIONS(4903), - [anon_sym_LT_LPAREN] = ACTIONS(4903), - [anon_sym_GT_LPAREN] = ACTIONS(4903), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4903), - [sym_word] = ACTIONS(4903), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LF] = ACTIONS(4903), - [anon_sym_AMP] = ACTIONS(4903), - }, - [2212] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5920), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2213] = { - [sym__concat] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [anon_sym_PIPE_AMP] = ACTIONS(4804), - [anon_sym_AMP_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4804), - [sym__special_characters] = ACTIONS(4804), - [anon_sym_DQUOTE] = ACTIONS(4804), - [anon_sym_DOLLAR] = ACTIONS(4804), - [sym_raw_string] = ACTIONS(4804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), - [anon_sym_BQUOTE] = ACTIONS(4804), - [anon_sym_LT_LPAREN] = ACTIONS(4804), - [anon_sym_GT_LPAREN] = ACTIONS(4804), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4804), - [sym_word] = ACTIONS(4804), - [anon_sym_SEMI] = ACTIONS(4804), - [anon_sym_LF] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4804), - }, - [2214] = { - [sym__concat] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_SEMI_SEMI] = ACTIONS(4810), - [anon_sym_PIPE_AMP] = ACTIONS(4810), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [sym__special_characters] = ACTIONS(4810), - [anon_sym_DQUOTE] = ACTIONS(4810), - [anon_sym_DOLLAR] = ACTIONS(4810), - [sym_raw_string] = ACTIONS(4810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), - [anon_sym_BQUOTE] = ACTIONS(4810), - [anon_sym_LT_LPAREN] = ACTIONS(4810), - [anon_sym_GT_LPAREN] = ACTIONS(4810), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4810), - [sym_word] = ACTIONS(4810), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LF] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4810), - }, - [2215] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [sym__special_characters] = ACTIONS(4873), - [anon_sym_DQUOTE] = ACTIONS(4873), - [anon_sym_DOLLAR] = ACTIONS(4873), - [sym_raw_string] = ACTIONS(4873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), - [anon_sym_BQUOTE] = ACTIONS(4873), - [anon_sym_LT_LPAREN] = ACTIONS(4873), - [anon_sym_GT_LPAREN] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4873), - [sym_word] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [2216] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5922), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2217] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5924), - [sym_comment] = ACTIONS(56), - }, - [2218] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5926), - [sym_comment] = ACTIONS(56), - }, - [2219] = { - [anon_sym_RBRACE] = ACTIONS(5926), - [sym_comment] = ACTIONS(56), - }, - [2220] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2865), - [anon_sym_RBRACE] = ACTIONS(5928), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2221] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = 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(4885), - [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(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4885), - [sym_word] = ACTIONS(4885), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [2222] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2867), - [anon_sym_RBRACE] = ACTIONS(5930), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2223] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [sym__special_characters] = ACTIONS(4891), - [anon_sym_DQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR] = ACTIONS(4891), - [sym_raw_string] = ACTIONS(4891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), - [anon_sym_BQUOTE] = ACTIONS(4891), - [anon_sym_LT_LPAREN] = ACTIONS(4891), - [anon_sym_GT_LPAREN] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4891), - [sym_word] = ACTIONS(4891), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [2224] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2869), - [anon_sym_RBRACE] = ACTIONS(5932), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2225] = { - [sym__concat] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_SEMI_SEMI] = ACTIONS(4897), - [anon_sym_PIPE_AMP] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [sym__special_characters] = ACTIONS(4897), - [anon_sym_DQUOTE] = ACTIONS(4897), - [anon_sym_DOLLAR] = ACTIONS(4897), - [sym_raw_string] = ACTIONS(4897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), - [anon_sym_BQUOTE] = ACTIONS(4897), - [anon_sym_LT_LPAREN] = ACTIONS(4897), - [anon_sym_GT_LPAREN] = ACTIONS(4897), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4897), - [sym_word] = ACTIONS(4897), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LF] = ACTIONS(4897), - [anon_sym_AMP] = ACTIONS(4897), - }, - [2226] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5934), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2227] = { - [sym__concat] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(4903), - [anon_sym_SEMI_SEMI] = ACTIONS(4903), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [sym__special_characters] = ACTIONS(4903), - [anon_sym_DQUOTE] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4903), - [sym_raw_string] = ACTIONS(4903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), - [anon_sym_BQUOTE] = ACTIONS(4903), - [anon_sym_LT_LPAREN] = ACTIONS(4903), - [anon_sym_GT_LPAREN] = ACTIONS(4903), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4903), - [sym_word] = ACTIONS(4903), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LF] = ACTIONS(4903), - [anon_sym_AMP] = ACTIONS(4903), - }, - [2228] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5936), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2229] = { - [sym_file_descriptor] = ACTIONS(4802), - [sym__concat] = ACTIONS(4802), - [sym_variable_name] = ACTIONS(4802), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_GT_GT] = ACTIONS(4802), - [anon_sym_AMP_GT] = ACTIONS(5860), - [anon_sym_AMP_GT_GT] = ACTIONS(4802), - [anon_sym_LT_AMP] = ACTIONS(4802), - [anon_sym_GT_AMP] = ACTIONS(4802), - [sym__special_characters] = ACTIONS(5860), - [anon_sym_DQUOTE] = ACTIONS(4802), - [anon_sym_DOLLAR] = ACTIONS(5860), - [sym_raw_string] = ACTIONS(4802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), - [anon_sym_BQUOTE] = ACTIONS(4802), - [anon_sym_LT_LPAREN] = ACTIONS(4802), - [anon_sym_GT_LPAREN] = ACTIONS(4802), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5860), - }, - [2230] = { - [sym_file_descriptor] = ACTIONS(4808), - [sym__concat] = ACTIONS(4808), - [sym_variable_name] = ACTIONS(4808), - [anon_sym_LT] = ACTIONS(5862), - [anon_sym_GT] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(4808), - [anon_sym_AMP_GT] = ACTIONS(5862), - [anon_sym_AMP_GT_GT] = ACTIONS(4808), - [anon_sym_LT_AMP] = ACTIONS(4808), - [anon_sym_GT_AMP] = ACTIONS(4808), - [sym__special_characters] = ACTIONS(5862), - [anon_sym_DQUOTE] = ACTIONS(4808), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4808), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), - [anon_sym_BQUOTE] = ACTIONS(4808), - [anon_sym_LT_LPAREN] = ACTIONS(4808), - [anon_sym_GT_LPAREN] = ACTIONS(4808), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5862), - }, - [2231] = { - [sym_file_descriptor] = ACTIONS(4871), - [sym__concat] = ACTIONS(4871), - [sym_variable_name] = ACTIONS(4871), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_GT_GT] = ACTIONS(4871), - [anon_sym_AMP_GT] = ACTIONS(5864), - [anon_sym_AMP_GT_GT] = ACTIONS(4871), - [anon_sym_LT_AMP] = ACTIONS(4871), - [anon_sym_GT_AMP] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(5864), - [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5864), - [sym_raw_string] = ACTIONS(4871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), - [anon_sym_BQUOTE] = ACTIONS(4871), - [anon_sym_LT_LPAREN] = ACTIONS(4871), - [anon_sym_GT_LPAREN] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5864), - }, - [2232] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5938), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2233] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5940), - [sym_comment] = ACTIONS(56), - }, - [2234] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5942), - [sym_comment] = ACTIONS(56), - }, - [2235] = { - [anon_sym_RBRACE] = ACTIONS(5942), - [sym_comment] = ACTIONS(56), - }, - [2236] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2876), - [anon_sym_RBRACE] = ACTIONS(5944), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2237] = { - [sym_file_descriptor] = ACTIONS(4883), - [sym__concat] = ACTIONS(4883), - [sym_variable_name] = ACTIONS(4883), - [anon_sym_LT] = ACTIONS(5874), - [anon_sym_GT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(4883), - [anon_sym_AMP_GT] = ACTIONS(5874), - [anon_sym_AMP_GT_GT] = ACTIONS(4883), - [anon_sym_LT_AMP] = ACTIONS(4883), - [anon_sym_GT_AMP] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(5874), - [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5874), - [sym_raw_string] = ACTIONS(4883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(4883), - [anon_sym_LT_LPAREN] = ACTIONS(4883), - [anon_sym_GT_LPAREN] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5874), - }, - [2238] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2878), - [anon_sym_RBRACE] = ACTIONS(5946), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2239] = { - [sym_file_descriptor] = ACTIONS(4889), - [sym__concat] = ACTIONS(4889), - [sym_variable_name] = ACTIONS(4889), - [anon_sym_LT] = ACTIONS(5878), - [anon_sym_GT] = ACTIONS(5878), - [anon_sym_GT_GT] = ACTIONS(4889), - [anon_sym_AMP_GT] = ACTIONS(5878), - [anon_sym_AMP_GT_GT] = ACTIONS(4889), - [anon_sym_LT_AMP] = ACTIONS(4889), - [anon_sym_GT_AMP] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(5878), - [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5878), - [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(56), - [sym_word] = ACTIONS(5878), - }, - [2240] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2880), - [anon_sym_RBRACE] = ACTIONS(5948), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2241] = { - [sym_file_descriptor] = ACTIONS(4895), - [sym__concat] = ACTIONS(4895), - [sym_variable_name] = ACTIONS(4895), - [anon_sym_LT] = ACTIONS(5882), - [anon_sym_GT] = ACTIONS(5882), - [anon_sym_GT_GT] = ACTIONS(4895), - [anon_sym_AMP_GT] = ACTIONS(5882), - [anon_sym_AMP_GT_GT] = ACTIONS(4895), - [anon_sym_LT_AMP] = ACTIONS(4895), - [anon_sym_GT_AMP] = ACTIONS(4895), - [sym__special_characters] = ACTIONS(5882), - [anon_sym_DQUOTE] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(5882), - [sym_raw_string] = ACTIONS(4895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), - [anon_sym_BQUOTE] = ACTIONS(4895), - [anon_sym_LT_LPAREN] = ACTIONS(4895), - [anon_sym_GT_LPAREN] = ACTIONS(4895), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5882), - }, - [2242] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5950), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2243] = { - [sym_file_descriptor] = ACTIONS(4901), - [sym__concat] = ACTIONS(4901), - [sym_variable_name] = ACTIONS(4901), - [anon_sym_LT] = ACTIONS(5886), - [anon_sym_GT] = ACTIONS(5886), - [anon_sym_GT_GT] = ACTIONS(4901), - [anon_sym_AMP_GT] = ACTIONS(5886), - [anon_sym_AMP_GT_GT] = ACTIONS(4901), - [anon_sym_LT_AMP] = ACTIONS(4901), - [anon_sym_GT_AMP] = ACTIONS(4901), - [sym__special_characters] = ACTIONS(5886), - [anon_sym_DQUOTE] = ACTIONS(4901), - [anon_sym_DOLLAR] = ACTIONS(5886), - [sym_raw_string] = ACTIONS(4901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), - [anon_sym_BQUOTE] = ACTIONS(4901), - [anon_sym_LT_LPAREN] = ACTIONS(4901), - [anon_sym_GT_LPAREN] = ACTIONS(4901), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5886), - }, - [2244] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5952), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2245] = { - [sym__concat] = ACTIONS(4802), - [anon_sym_DQUOTE] = ACTIONS(4804), - [anon_sym_DOLLAR] = ACTIONS(4804), - [sym__string_content] = ACTIONS(5860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), - [anon_sym_BQUOTE] = ACTIONS(4804), - [sym_comment] = ACTIONS(182), - }, - [2246] = { - [sym__concat] = ACTIONS(4808), - [anon_sym_DQUOTE] = ACTIONS(4810), - [anon_sym_DOLLAR] = ACTIONS(4810), - [sym__string_content] = ACTIONS(5862), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), - [anon_sym_BQUOTE] = ACTIONS(4810), - [sym_comment] = ACTIONS(182), - }, - [2247] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_DQUOTE] = ACTIONS(4873), - [anon_sym_DOLLAR] = ACTIONS(4873), - [sym__string_content] = ACTIONS(5864), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), - [anon_sym_BQUOTE] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - }, - [2248] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5954), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2249] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5956), - [sym_comment] = ACTIONS(56), - }, - [2250] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(5958), - [sym_comment] = ACTIONS(56), - }, - [2251] = { - [anon_sym_RBRACE] = ACTIONS(5958), - [sym_comment] = ACTIONS(56), - }, - [2252] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2887), - [anon_sym_RBRACE] = ACTIONS(5960), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2253] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_DQUOTE] = ACTIONS(4885), - [anon_sym_DOLLAR] = ACTIONS(4885), - [sym__string_content] = ACTIONS(5874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), - [anon_sym_BQUOTE] = ACTIONS(4885), - [sym_comment] = ACTIONS(182), - }, - [2254] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2889), - [anon_sym_RBRACE] = ACTIONS(5962), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2255] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_DQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR] = ACTIONS(4891), - [sym__string_content] = ACTIONS(5878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), - [anon_sym_BQUOTE] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - }, - [2256] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2891), - [anon_sym_RBRACE] = ACTIONS(5964), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2257] = { - [sym__concat] = ACTIONS(4895), - [anon_sym_DQUOTE] = ACTIONS(4897), - [anon_sym_DOLLAR] = ACTIONS(4897), - [sym__string_content] = ACTIONS(5882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), - [anon_sym_BQUOTE] = ACTIONS(4897), - [sym_comment] = ACTIONS(182), - }, - [2258] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5966), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2259] = { - [sym__concat] = ACTIONS(4901), - [anon_sym_DQUOTE] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4903), - [sym__string_content] = ACTIONS(5886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), - [anon_sym_BQUOTE] = ACTIONS(4903), - [sym_comment] = ACTIONS(182), - }, - [2260] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5968), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2261] = { - [sym__concat] = ACTIONS(5970), - [anon_sym_RBRACE] = ACTIONS(4110), - [anon_sym_EQ] = ACTIONS(5972), - [sym__special_characters] = ACTIONS(5974), - [anon_sym_DQUOTE] = ACTIONS(4110), - [anon_sym_DOLLAR] = ACTIONS(5972), - [sym_raw_string] = ACTIONS(4110), - [anon_sym_POUND] = ACTIONS(4110), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4110), - [aux_sym_SLASH] = ACTIONS(4110), - [anon_sym_COLON] = ACTIONS(5972), - [anon_sym_COLON_QMARK] = ACTIONS(5972), - [anon_sym_COLON_DASH] = ACTIONS(5972), - [anon_sym_PERCENT] = ACTIONS(5972), - [anon_sym_DASH] = ACTIONS(5972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4110), - [anon_sym_BQUOTE] = ACTIONS(4110), - [anon_sym_LT_LPAREN] = ACTIONS(4110), - [anon_sym_GT_LPAREN] = ACTIONS(4110), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5974), - }, - [2262] = { - [anon_sym_RBRACE] = ACTIONS(4110), - [anon_sym_EQ] = ACTIONS(5972), - [sym__special_characters] = ACTIONS(5974), - [anon_sym_DQUOTE] = ACTIONS(4110), - [anon_sym_DOLLAR] = ACTIONS(5972), - [sym_raw_string] = ACTIONS(4110), - [anon_sym_POUND] = ACTIONS(4110), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4110), - [aux_sym_SLASH] = ACTIONS(4110), - [anon_sym_COLON] = ACTIONS(5972), - [anon_sym_COLON_QMARK] = ACTIONS(5972), - [anon_sym_COLON_DASH] = ACTIONS(5972), - [anon_sym_PERCENT] = ACTIONS(5972), - [anon_sym_DASH] = ACTIONS(5972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4110), - [anon_sym_BQUOTE] = ACTIONS(4110), - [anon_sym_LT_LPAREN] = ACTIONS(4110), - [anon_sym_GT_LPAREN] = ACTIONS(4110), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5974), - }, - [2263] = { - [sym__concat] = ACTIONS(5976), - [anon_sym_RBRACE] = ACTIONS(4117), - [anon_sym_EQ] = ACTIONS(5978), - [sym__special_characters] = ACTIONS(5980), - [anon_sym_DQUOTE] = ACTIONS(4117), - [anon_sym_DOLLAR] = ACTIONS(5978), - [sym_raw_string] = ACTIONS(4117), - [anon_sym_POUND] = ACTIONS(4117), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4117), - [aux_sym_SLASH] = ACTIONS(4117), - [anon_sym_COLON] = ACTIONS(5978), - [anon_sym_COLON_QMARK] = ACTIONS(5978), - [anon_sym_COLON_DASH] = ACTIONS(5978), - [anon_sym_PERCENT] = ACTIONS(5978), - [anon_sym_DASH] = ACTIONS(5978), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4117), - [anon_sym_BQUOTE] = ACTIONS(4117), - [anon_sym_LT_LPAREN] = ACTIONS(4117), - [anon_sym_GT_LPAREN] = ACTIONS(4117), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5980), - }, - [2264] = { - [anon_sym_RBRACE] = ACTIONS(4117), - [anon_sym_EQ] = ACTIONS(5978), - [sym__special_characters] = ACTIONS(5980), - [anon_sym_DQUOTE] = ACTIONS(4117), - [anon_sym_DOLLAR] = ACTIONS(5978), - [sym_raw_string] = ACTIONS(4117), - [anon_sym_POUND] = ACTIONS(4117), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4117), - [aux_sym_SLASH] = ACTIONS(4117), - [anon_sym_COLON] = ACTIONS(5978), - [anon_sym_COLON_QMARK] = ACTIONS(5978), - [anon_sym_COLON_DASH] = ACTIONS(5978), - [anon_sym_PERCENT] = ACTIONS(5978), - [anon_sym_DASH] = ACTIONS(5978), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4117), - [anon_sym_BQUOTE] = ACTIONS(4117), - [anon_sym_LT_LPAREN] = ACTIONS(4117), - [anon_sym_GT_LPAREN] = ACTIONS(4117), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5980), - }, - [2265] = { - [sym__concat] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - }, - [2266] = { - [aux_sym_concatenation_repeat1] = STATE(2266), - [sym__concat] = ACTIONS(5982), - [anon_sym_RBRACE] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - }, - [2267] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [sym_comment] = ACTIONS(56), - }, - [2268] = { - [sym_concatenation] = STATE(2899), - [sym_string] = STATE(2898), - [sym_simple_expansion] = STATE(2898), - [sym_string_expansion] = STATE(2898), - [sym_expansion] = STATE(2898), - [sym_command_substitution] = STATE(2898), - [sym_process_substitution] = STATE(2898), - [anon_sym_RBRACE] = ACTIONS(5985), - [sym__special_characters] = ACTIONS(5987), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(5989), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5991), - }, - [2269] = { - [sym__concat] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1972), - [sym_comment] = ACTIONS(56), - }, - [2270] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5993), - }, - [2271] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5995), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2272] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(5997), - [sym_comment] = ACTIONS(56), - }, - [2273] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2905), - [anon_sym_RBRACE] = ACTIONS(5999), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6001), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2274] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2908), - [anon_sym_RBRACE] = ACTIONS(6003), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6005), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2275] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2910), - [anon_sym_RBRACE] = ACTIONS(5985), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6007), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2276] = { - [sym__concat] = ACTIONS(2026), - [anon_sym_RBRACE] = ACTIONS(2026), - [sym_comment] = ACTIONS(56), - }, - [2277] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6009), - }, - [2278] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6011), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2279] = { - [sym__concat] = ACTIONS(2034), - [anon_sym_RBRACE] = ACTIONS(2034), - [sym_comment] = ACTIONS(56), - }, - [2280] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6013), - }, - [2281] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(5985), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2282] = { - [sym__concat] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2196), - [sym_comment] = ACTIONS(56), - }, - [2283] = { - [sym__concat] = ACTIONS(2402), - [anon_sym_RBRACE] = ACTIONS(2402), - [sym_comment] = ACTIONS(56), - }, - [2284] = { - [sym__concat] = ACTIONS(3293), - [anon_sym_RBRACE] = ACTIONS(3293), - [anon_sym_EQ] = ACTIONS(4614), - [sym__special_characters] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_DOLLAR] = ACTIONS(4614), - [sym_raw_string] = ACTIONS(3293), - [anon_sym_POUND] = ACTIONS(3293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), - [anon_sym_COLON] = ACTIONS(4614), - [anon_sym_COLON_QMARK] = ACTIONS(4614), - [anon_sym_COLON_DASH] = ACTIONS(4614), - [anon_sym_PERCENT] = ACTIONS(4614), - [anon_sym_DASH] = ACTIONS(4614), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), - [anon_sym_BQUOTE] = ACTIONS(3293), - [anon_sym_LT_LPAREN] = ACTIONS(3293), - [anon_sym_GT_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3295), - }, - [2285] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6015), - [sym_comment] = ACTIONS(56), - }, - [2286] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6017), - [sym_comment] = ACTIONS(56), - }, - [2287] = { - [anon_sym_RBRACE] = ACTIONS(6017), - [sym_comment] = ACTIONS(56), - }, - [2288] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2917), - [anon_sym_RBRACE] = ACTIONS(6019), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2289] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_EQ] = ACTIONS(4622), - [sym__special_characters] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_DOLLAR] = ACTIONS(4622), - [sym_raw_string] = ACTIONS(3357), - [anon_sym_POUND] = ACTIONS(3357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), - [anon_sym_COLON] = ACTIONS(4622), - [anon_sym_COLON_QMARK] = ACTIONS(4622), - [anon_sym_COLON_DASH] = ACTIONS(4622), - [anon_sym_PERCENT] = ACTIONS(4622), - [anon_sym_DASH] = ACTIONS(4622), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), - [anon_sym_BQUOTE] = ACTIONS(3357), - [anon_sym_LT_LPAREN] = ACTIONS(3357), - [anon_sym_GT_LPAREN] = ACTIONS(3357), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3359), - }, - [2290] = { - [sym_concatenation] = STATE(2920), - [sym_string] = STATE(2919), - [sym_simple_expansion] = STATE(2919), - [sym_string_expansion] = STATE(2919), - [sym_expansion] = STATE(2919), - [sym_command_substitution] = STATE(2919), - [sym_process_substitution] = STATE(2919), - [anon_sym_RBRACE] = ACTIONS(6017), - [sym__special_characters] = ACTIONS(6021), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(6023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6025), - }, - [2291] = { - [sym__concat] = ACTIONS(3402), - [anon_sym_RBRACE] = ACTIONS(3402), - [anon_sym_EQ] = ACTIONS(4630), - [sym__special_characters] = ACTIONS(3404), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(4630), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_POUND] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_COLON] = ACTIONS(4630), - [anon_sym_COLON_QMARK] = ACTIONS(4630), - [anon_sym_COLON_DASH] = ACTIONS(4630), - [anon_sym_PERCENT] = ACTIONS(4630), - [anon_sym_DASH] = ACTIONS(4630), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3404), - }, - [2292] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6027), - }, - [2293] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6029), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [sym__special_characters] = ACTIONS(5676), + [anon_sym_DQUOTE] = ACTIONS(5386), + [anon_sym_DOLLAR] = ACTIONS(4947), + [sym_raw_string] = ACTIONS(5676), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5668), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5670), + [anon_sym_BQUOTE] = ACTIONS(5672), + [anon_sym_LT_LPAREN] = ACTIONS(5674), + [anon_sym_GT_LPAREN] = ACTIONS(5674), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5676), }, [2294] = { - [sym__concat] = ACTIONS(3410), - [anon_sym_RBRACE] = ACTIONS(3410), - [anon_sym_EQ] = ACTIONS(4636), - [sym__special_characters] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3410), - [anon_sym_DOLLAR] = ACTIONS(4636), - [sym_raw_string] = ACTIONS(3410), - [anon_sym_POUND] = ACTIONS(3410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), - [anon_sym_COLON] = ACTIONS(4636), - [anon_sym_COLON_QMARK] = ACTIONS(4636), - [anon_sym_COLON_DASH] = ACTIONS(4636), - [anon_sym_PERCENT] = ACTIONS(4636), - [anon_sym_DASH] = ACTIONS(4636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), - [anon_sym_BQUOTE] = ACTIONS(3410), - [anon_sym_LT_LPAREN] = ACTIONS(3410), - [anon_sym_GT_LPAREN] = ACTIONS(3410), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3412), - }, - [2295] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6031), - }, - [2296] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6033), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2297] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6035), - }, - [2298] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6017), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2299] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2927), - [anon_sym_RBRACE] = ACTIONS(6037), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2300] = { - [sym__concat] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_EQ] = ACTIONS(4646), - [sym__special_characters] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3422), - [anon_sym_DOLLAR] = ACTIONS(4646), - [sym_raw_string] = ACTIONS(3422), - [anon_sym_POUND] = ACTIONS(3422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), - [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(3422), - [anon_sym_BQUOTE] = ACTIONS(3422), - [anon_sym_LT_LPAREN] = ACTIONS(3422), - [anon_sym_GT_LPAREN] = ACTIONS(3422), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3424), - }, - [2301] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2929), - [anon_sym_RBRACE] = ACTIONS(6039), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2302] = { - [sym_file_descriptor] = ACTIONS(6041), - [sym__concat] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_SEMI_SEMI] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [anon_sym_EQ_TILDE] = ACTIONS(6043), - [anon_sym_EQ_EQ] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6043), - [anon_sym_GT] = ACTIONS(6043), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_AMP_GT] = ACTIONS(6043), - [anon_sym_AMP_GT_GT] = ACTIONS(6043), - [anon_sym_LT_AMP] = ACTIONS(6043), - [anon_sym_GT_AMP] = ACTIONS(6043), - [anon_sym_LT_LT] = ACTIONS(6043), - [anon_sym_LT_LT_DASH] = ACTIONS(6043), - [anon_sym_LT_LT_LT] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6043), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6043), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6043), - [anon_sym_SEMI] = ACTIONS(6043), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - }, - [2303] = { - [sym_file_descriptor] = ACTIONS(6045), - [sym__concat] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_SEMI_SEMI] = ACTIONS(6047), - [anon_sym_PIPE_AMP] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6047), - [anon_sym_PIPE_PIPE] = ACTIONS(6047), - [anon_sym_EQ_TILDE] = ACTIONS(6047), - [anon_sym_EQ_EQ] = ACTIONS(6047), - [anon_sym_LT] = ACTIONS(6047), - [anon_sym_GT] = ACTIONS(6047), - [anon_sym_GT_GT] = ACTIONS(6047), - [anon_sym_AMP_GT] = ACTIONS(6047), - [anon_sym_AMP_GT_GT] = ACTIONS(6047), - [anon_sym_LT_AMP] = ACTIONS(6047), - [anon_sym_GT_AMP] = ACTIONS(6047), - [anon_sym_LT_LT] = ACTIONS(6047), - [anon_sym_LT_LT_DASH] = ACTIONS(6047), - [anon_sym_LT_LT_LT] = ACTIONS(6047), - [sym__special_characters] = ACTIONS(6047), - [anon_sym_DQUOTE] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6047), - [sym_raw_string] = ACTIONS(6047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), - [anon_sym_BQUOTE] = ACTIONS(6047), - [anon_sym_LT_LPAREN] = ACTIONS(6047), - [anon_sym_GT_LPAREN] = ACTIONS(6047), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6047), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - }, - [2304] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [anon_sym_EQ_TILDE] = ACTIONS(6051), - [anon_sym_EQ_EQ] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6051), - [anon_sym_GT] = ACTIONS(6051), - [anon_sym_GT_GT] = ACTIONS(6051), - [anon_sym_AMP_GT] = ACTIONS(6051), - [anon_sym_AMP_GT_GT] = ACTIONS(6051), - [anon_sym_LT_AMP] = ACTIONS(6051), - [anon_sym_GT_AMP] = ACTIONS(6051), - [anon_sym_LT_LT] = ACTIONS(6051), - [anon_sym_LT_LT_DASH] = ACTIONS(6051), - [anon_sym_LT_LT_LT] = ACTIONS(6051), - [sym__special_characters] = ACTIONS(6051), - [anon_sym_DQUOTE] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6051), - [sym_raw_string] = ACTIONS(6051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), - [anon_sym_BQUOTE] = ACTIONS(6051), - [anon_sym_LT_LPAREN] = ACTIONS(6051), - [anon_sym_GT_LPAREN] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6051), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [2305] = { - [sym_file_descriptor] = ACTIONS(6053), - [sym__concat] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [anon_sym_EQ_TILDE] = ACTIONS(6055), - [anon_sym_EQ_EQ] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6055), - [anon_sym_GT] = ACTIONS(6055), - [anon_sym_GT_GT] = ACTIONS(6055), - [anon_sym_AMP_GT] = ACTIONS(6055), - [anon_sym_AMP_GT_GT] = ACTIONS(6055), - [anon_sym_LT_AMP] = ACTIONS(6055), - [anon_sym_GT_AMP] = ACTIONS(6055), - [anon_sym_LT_LT] = ACTIONS(6055), - [anon_sym_LT_LT_DASH] = ACTIONS(6055), - [anon_sym_LT_LT_LT] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6055), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6055), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6055), - [anon_sym_SEMI] = ACTIONS(6055), - [anon_sym_LF] = ACTIONS(6055), - [anon_sym_AMP] = ACTIONS(6055), - }, - [2306] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6057), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2307] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [anon_sym_EQ_TILDE] = ACTIONS(6061), - [anon_sym_EQ_EQ] = ACTIONS(6061), - [anon_sym_LT] = ACTIONS(6061), - [anon_sym_GT] = ACTIONS(6061), - [anon_sym_GT_GT] = ACTIONS(6061), - [anon_sym_AMP_GT] = ACTIONS(6061), - [anon_sym_AMP_GT_GT] = ACTIONS(6061), - [anon_sym_LT_AMP] = ACTIONS(6061), - [anon_sym_GT_AMP] = ACTIONS(6061), - [anon_sym_LT_LT] = ACTIONS(6061), - [anon_sym_LT_LT_DASH] = ACTIONS(6061), - [anon_sym_LT_LT_LT] = ACTIONS(6061), - [sym__special_characters] = ACTIONS(6061), - [anon_sym_DQUOTE] = ACTIONS(6061), - [anon_sym_DOLLAR] = ACTIONS(6061), - [sym_raw_string] = ACTIONS(6061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), - [anon_sym_BQUOTE] = ACTIONS(6061), - [anon_sym_LT_LPAREN] = ACTIONS(6061), - [anon_sym_GT_LPAREN] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6061), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [2308] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6063), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2309] = { - [sym_file_descriptor] = ACTIONS(6065), - [sym__concat] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6067), - [anon_sym_SEMI_SEMI] = ACTIONS(6067), - [anon_sym_PIPE_AMP] = ACTIONS(6067), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [anon_sym_EQ_TILDE] = ACTIONS(6067), - [anon_sym_EQ_EQ] = ACTIONS(6067), - [anon_sym_LT] = ACTIONS(6067), - [anon_sym_GT] = ACTIONS(6067), - [anon_sym_GT_GT] = ACTIONS(6067), - [anon_sym_AMP_GT] = ACTIONS(6067), - [anon_sym_AMP_GT_GT] = ACTIONS(6067), - [anon_sym_LT_AMP] = ACTIONS(6067), - [anon_sym_GT_AMP] = ACTIONS(6067), - [anon_sym_LT_LT] = ACTIONS(6067), - [anon_sym_LT_LT_DASH] = ACTIONS(6067), - [anon_sym_LT_LT_LT] = ACTIONS(6067), - [sym__special_characters] = ACTIONS(6067), - [anon_sym_DQUOTE] = ACTIONS(6067), - [anon_sym_DOLLAR] = ACTIONS(6067), - [sym_raw_string] = ACTIONS(6067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), - [anon_sym_BQUOTE] = ACTIONS(6067), - [anon_sym_LT_LPAREN] = ACTIONS(6067), - [anon_sym_GT_LPAREN] = ACTIONS(6067), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6067), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LF] = ACTIONS(6067), - [anon_sym_AMP] = ACTIONS(6067), - }, - [2310] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6069), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2311] = { - [sym_file_descriptor] = ACTIONS(6071), - [sym__concat] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [anon_sym_PIPE_AMP] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6073), - [anon_sym_PIPE_PIPE] = ACTIONS(6073), - [anon_sym_EQ_TILDE] = ACTIONS(6073), - [anon_sym_EQ_EQ] = ACTIONS(6073), - [anon_sym_LT] = ACTIONS(6073), - [anon_sym_GT] = ACTIONS(6073), - [anon_sym_GT_GT] = ACTIONS(6073), - [anon_sym_AMP_GT] = ACTIONS(6073), - [anon_sym_AMP_GT_GT] = ACTIONS(6073), - [anon_sym_LT_AMP] = ACTIONS(6073), - [anon_sym_GT_AMP] = ACTIONS(6073), - [anon_sym_LT_LT] = ACTIONS(6073), - [anon_sym_LT_LT_DASH] = ACTIONS(6073), - [anon_sym_LT_LT_LT] = ACTIONS(6073), - [sym__special_characters] = ACTIONS(6073), - [anon_sym_DQUOTE] = ACTIONS(6073), - [anon_sym_DOLLAR] = ACTIONS(6073), - [sym_raw_string] = ACTIONS(6073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), - [anon_sym_BQUOTE] = ACTIONS(6073), - [anon_sym_LT_LPAREN] = ACTIONS(6073), - [anon_sym_GT_LPAREN] = ACTIONS(6073), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6073), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LF] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - }, - [2312] = { - [sym_file_descriptor] = ACTIONS(6075), - [sym__concat] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_SEMI_SEMI] = ACTIONS(6077), - [anon_sym_PIPE_AMP] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6077), - [anon_sym_PIPE_PIPE] = ACTIONS(6077), - [anon_sym_EQ_TILDE] = ACTIONS(6077), - [anon_sym_EQ_EQ] = ACTIONS(6077), - [anon_sym_LT] = ACTIONS(6077), - [anon_sym_GT] = ACTIONS(6077), - [anon_sym_GT_GT] = ACTIONS(6077), - [anon_sym_AMP_GT] = ACTIONS(6077), - [anon_sym_AMP_GT_GT] = ACTIONS(6077), - [anon_sym_LT_AMP] = ACTIONS(6077), - [anon_sym_GT_AMP] = ACTIONS(6077), - [anon_sym_LT_LT] = ACTIONS(6077), - [anon_sym_LT_LT_DASH] = ACTIONS(6077), - [anon_sym_LT_LT_LT] = ACTIONS(6077), - [sym__special_characters] = ACTIONS(6077), - [anon_sym_DQUOTE] = ACTIONS(6077), - [anon_sym_DOLLAR] = ACTIONS(6077), - [sym_raw_string] = ACTIONS(6077), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), - [anon_sym_BQUOTE] = ACTIONS(6077), - [anon_sym_LT_LPAREN] = ACTIONS(6077), - [anon_sym_GT_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6077), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LF] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - }, - [2313] = { - [sym_file_descriptor] = ACTIONS(4181), - [sym_variable_name] = ACTIONS(4181), - [anon_sym_PIPE] = ACTIONS(6079), - [anon_sym_RPAREN] = ACTIONS(4181), - [anon_sym_PIPE_AMP] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(6079), - [anon_sym_GT] = ACTIONS(6079), - [anon_sym_GT_GT] = ACTIONS(4181), - [anon_sym_AMP_GT] = ACTIONS(6079), - [anon_sym_AMP_GT_GT] = ACTIONS(4181), - [anon_sym_LT_AMP] = ACTIONS(4181), - [anon_sym_GT_AMP] = ACTIONS(4181), - [sym__special_characters] = ACTIONS(6079), - [anon_sym_DQUOTE] = ACTIONS(4181), - [anon_sym_DOLLAR] = ACTIONS(6079), - [sym_raw_string] = ACTIONS(4181), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4181), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4181), - [anon_sym_BQUOTE] = ACTIONS(4181), - [anon_sym_LT_LPAREN] = ACTIONS(4181), - [anon_sym_GT_LPAREN] = ACTIONS(4181), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6079), - }, - [2314] = { - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(1890), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_RPAREN] = ACTIONS(1890), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_GT_GT] = ACTIONS(1890), - [anon_sym_AMP_GT] = ACTIONS(3066), - [anon_sym_AMP_GT_GT] = ACTIONS(1890), - [anon_sym_LT_AMP] = ACTIONS(1890), - [anon_sym_GT_AMP] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3066), - }, - [2315] = { - [aux_sym_concatenation_repeat1] = STATE(2315), - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(6081), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_RPAREN] = ACTIONS(1890), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_GT_GT] = ACTIONS(1890), - [anon_sym_AMP_GT] = ACTIONS(3066), - [anon_sym_AMP_GT_GT] = ACTIONS(1890), - [anon_sym_LT_AMP] = ACTIONS(1890), - [anon_sym_GT_AMP] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3066), - }, - [2316] = { - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [sym_variable_name] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_PIPE_AMP] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(1927), - [anon_sym_AMP_GT] = ACTIONS(3071), - [anon_sym_AMP_GT_GT] = ACTIONS(1927), - [anon_sym_LT_AMP] = ACTIONS(1927), - [anon_sym_GT_AMP] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), - [anon_sym_BQUOTE] = ACTIONS(1927), - [anon_sym_LT_LPAREN] = ACTIONS(1927), - [anon_sym_GT_LPAREN] = ACTIONS(1927), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3071), - }, - [2317] = { - [sym_concatenation] = STATE(2936), - [sym_string] = STATE(2935), - [sym_simple_expansion] = STATE(2935), - [sym_string_expansion] = STATE(2935), - [sym_expansion] = STATE(2935), - [sym_command_substitution] = STATE(2935), - [sym_process_substitution] = STATE(2935), - [anon_sym_RBRACE] = ACTIONS(6084), - [sym__special_characters] = ACTIONS(6086), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(6088), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6090), - }, - [2318] = { - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(1972), - [sym_variable_name] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_AMP_GT] = ACTIONS(3081), - [anon_sym_AMP_GT_GT] = ACTIONS(1972), - [anon_sym_LT_AMP] = ACTIONS(1972), - [anon_sym_GT_AMP] = ACTIONS(1972), - [sym__special_characters] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(3081), - [sym_raw_string] = ACTIONS(1972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1972), - [anon_sym_LT_LPAREN] = ACTIONS(1972), - [anon_sym_GT_LPAREN] = ACTIONS(1972), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3081), - }, - [2319] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6092), - }, - [2320] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6094), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2321] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(6096), - [sym_comment] = ACTIONS(56), - }, - [2322] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2942), - [anon_sym_RBRACE] = ACTIONS(6098), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6100), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2323] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2945), - [anon_sym_RBRACE] = ACTIONS(6102), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6104), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2324] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2947), - [anon_sym_RBRACE] = ACTIONS(6084), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6106), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2325] = { - [sym_file_descriptor] = ACTIONS(2026), - [sym__concat] = ACTIONS(2026), - [sym_variable_name] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(2026), - [anon_sym_PIPE_AMP] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_LT] = ACTIONS(3099), - [anon_sym_GT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(2026), - [anon_sym_AMP_GT] = ACTIONS(3099), - [anon_sym_AMP_GT_GT] = ACTIONS(2026), - [anon_sym_LT_AMP] = ACTIONS(2026), - [anon_sym_GT_AMP] = ACTIONS(2026), - [sym__special_characters] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(2026), - [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), - [anon_sym_BQUOTE] = ACTIONS(2026), - [anon_sym_LT_LPAREN] = ACTIONS(2026), - [anon_sym_GT_LPAREN] = ACTIONS(2026), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3099), - }, - [2326] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6108), - }, - [2327] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6110), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2328] = { - [sym_file_descriptor] = ACTIONS(2034), - [sym__concat] = ACTIONS(2034), - [sym_variable_name] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_RPAREN] = ACTIONS(2034), - [anon_sym_PIPE_AMP] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_AMP_GT] = ACTIONS(3105), - [anon_sym_AMP_GT_GT] = ACTIONS(2034), - [anon_sym_LT_AMP] = ACTIONS(2034), - [anon_sym_GT_AMP] = ACTIONS(2034), - [sym__special_characters] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(2034), - [anon_sym_DOLLAR] = ACTIONS(3105), - [sym_raw_string] = ACTIONS(2034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), - [anon_sym_BQUOTE] = ACTIONS(2034), - [anon_sym_LT_LPAREN] = ACTIONS(2034), - [anon_sym_GT_LPAREN] = ACTIONS(2034), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3105), - }, - [2329] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6112), - }, - [2330] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6084), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2331] = { - [sym_file_descriptor] = ACTIONS(2196), - [sym__concat] = ACTIONS(2196), - [sym_variable_name] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_RPAREN] = ACTIONS(2196), - [anon_sym_PIPE_AMP] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_GT_GT] = ACTIONS(2196), - [anon_sym_AMP_GT] = ACTIONS(3109), - [anon_sym_AMP_GT_GT] = ACTIONS(2196), - [anon_sym_LT_AMP] = ACTIONS(2196), - [anon_sym_GT_AMP] = ACTIONS(2196), - [sym__special_characters] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_DOLLAR] = ACTIONS(3109), - [sym_raw_string] = ACTIONS(2196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), - [anon_sym_BQUOTE] = ACTIONS(2196), - [anon_sym_LT_LPAREN] = ACTIONS(2196), - [anon_sym_GT_LPAREN] = ACTIONS(2196), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3109), - }, - [2332] = { - [sym_file_descriptor] = ACTIONS(2402), - [sym__concat] = ACTIONS(2402), - [sym_variable_name] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_RPAREN] = ACTIONS(2402), - [anon_sym_PIPE_AMP] = ACTIONS(2402), - [anon_sym_AMP_AMP] = ACTIONS(2402), - [anon_sym_PIPE_PIPE] = ACTIONS(2402), - [anon_sym_LT] = ACTIONS(3111), - [anon_sym_GT] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(2402), - [anon_sym_AMP_GT] = ACTIONS(3111), - [anon_sym_AMP_GT_GT] = ACTIONS(2402), - [anon_sym_LT_AMP] = ACTIONS(2402), - [anon_sym_GT_AMP] = ACTIONS(2402), - [sym__special_characters] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_DOLLAR] = ACTIONS(3111), - [sym_raw_string] = ACTIONS(2402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), - [anon_sym_BQUOTE] = ACTIONS(2402), - [anon_sym_LT_LPAREN] = ACTIONS(2402), - [anon_sym_GT_LPAREN] = ACTIONS(2402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3111), - }, - [2333] = { - [sym_do_group] = STATE(2951), - [anon_sym_do] = ACTIONS(3456), - [sym_comment] = ACTIONS(56), - }, - [2334] = { - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(2679), - [anon_sym_PIPE_AMP] = ACTIONS(2679), - [anon_sym_AMP_AMP] = ACTIONS(2679), - [anon_sym_PIPE_PIPE] = ACTIONS(2679), - [anon_sym_BQUOTE] = ACTIONS(2679), - [sym_comment] = ACTIONS(56), - }, - [2335] = { - [sym__terminated_statement] = STATE(694), - [sym_for_statement] = STATE(695), - [sym_while_statement] = STATE(695), - [sym_if_statement] = STATE(695), - [sym_case_statement] = STATE(695), - [sym_function_definition] = STATE(695), - [sym_subshell] = STATE(695), - [sym_pipeline] = STATE(695), - [sym_list] = STATE(695), - [sym_command] = STATE(695), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(695), - [sym_variable_assignment] = STATE(696), - [sym_declaration_command] = STATE(695), - [sym_unset_command] = STATE(695), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1317), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(6114), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [2336] = { - [sym_file_descriptor] = ACTIONS(4307), - [anon_sym_PIPE] = ACTIONS(6116), - [anon_sym_RPAREN] = ACTIONS(4307), - [anon_sym_PIPE_AMP] = ACTIONS(4307), - [anon_sym_AMP_AMP] = ACTIONS(4307), - [anon_sym_PIPE_PIPE] = ACTIONS(4307), - [anon_sym_LT] = ACTIONS(6116), - [anon_sym_GT] = ACTIONS(6116), - [anon_sym_GT_GT] = ACTIONS(4307), - [anon_sym_AMP_GT] = ACTIONS(6116), - [anon_sym_AMP_GT_GT] = ACTIONS(4307), - [anon_sym_LT_AMP] = ACTIONS(4307), - [anon_sym_GT_AMP] = ACTIONS(4307), - [anon_sym_LT_LT] = ACTIONS(6116), - [anon_sym_LT_LT_DASH] = ACTIONS(4307), - [anon_sym_LT_LT_LT] = ACTIONS(4307), - [anon_sym_BQUOTE] = ACTIONS(4307), - [sym_comment] = ACTIONS(56), - }, - [2337] = { - [anon_sym_PIPE] = ACTIONS(6118), - [anon_sym_RPAREN] = ACTIONS(6120), - [anon_sym_PIPE_AMP] = ACTIONS(6120), - [anon_sym_AMP_AMP] = ACTIONS(6120), - [anon_sym_PIPE_PIPE] = ACTIONS(6120), - [anon_sym_BQUOTE] = ACTIONS(6120), - [sym_comment] = ACTIONS(56), - }, - [2338] = { - [anon_sym_fi] = ACTIONS(6122), - [sym_comment] = ACTIONS(56), - }, - [2339] = { - [sym_elif_clause] = STATE(704), - [sym_else_clause] = STATE(2954), - [aux_sym_if_statement_repeat1] = STATE(1328), - [anon_sym_fi] = ACTIONS(6122), - [anon_sym_elif] = ACTIONS(2701), - [anon_sym_else] = ACTIONS(2703), - [sym_comment] = ACTIONS(56), - }, - [2340] = { - [anon_sym_PIPE] = ACTIONS(6124), - [anon_sym_RPAREN] = ACTIONS(6126), - [anon_sym_PIPE_AMP] = ACTIONS(6126), - [anon_sym_AMP_AMP] = ACTIONS(6126), - [anon_sym_PIPE_PIPE] = ACTIONS(6126), - [anon_sym_BQUOTE] = ACTIONS(6126), - [sym_comment] = ACTIONS(56), - }, - [2341] = { - [anon_sym_esac] = ACTIONS(6128), - [sym_comment] = ACTIONS(56), - }, - [2342] = { - [sym_case_item] = STATE(1338), - [sym_last_case_item] = STATE(2956), - [sym_concatenation] = STATE(1340), - [sym_string] = STATE(1333), - [sym_simple_expansion] = STATE(1333), - [sym_string_expansion] = STATE(1333), - [sym_expansion] = STATE(1333), - [sym_command_substitution] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_case_statement_repeat1] = STATE(2019), - [sym__special_characters] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2711), - [sym_raw_string] = ACTIONS(2713), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), - [anon_sym_BQUOTE] = ACTIONS(2719), - [anon_sym_LT_LPAREN] = ACTIONS(2721), - [anon_sym_GT_LPAREN] = ACTIONS(2721), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4364), - }, - [2343] = { - [sym_case_item] = STATE(1338), - [sym_last_case_item] = STATE(2956), - [sym_concatenation] = STATE(1340), - [sym_string] = STATE(1333), - [sym_simple_expansion] = STATE(1333), - [sym_string_expansion] = STATE(1333), - [sym_expansion] = STATE(1333), - [sym_command_substitution] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_case_statement_repeat1] = STATE(2958), - [anon_sym_esac] = ACTIONS(6130), - [sym__special_characters] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2711), - [sym_raw_string] = ACTIONS(2713), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), - [anon_sym_BQUOTE] = ACTIONS(2719), - [anon_sym_LT_LPAREN] = ACTIONS(2721), - [anon_sym_GT_LPAREN] = ACTIONS(2721), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2723), - }, - [2344] = { - [anon_sym_PIPE] = ACTIONS(6132), - [anon_sym_RPAREN] = ACTIONS(6134), - [anon_sym_PIPE_AMP] = ACTIONS(6134), - [anon_sym_AMP_AMP] = ACTIONS(6134), - [anon_sym_PIPE_PIPE] = ACTIONS(6134), - [anon_sym_BQUOTE] = ACTIONS(6134), - [sym_comment] = ACTIONS(56), - }, - [2345] = { - [anon_sym_esac] = ACTIONS(6136), - [sym_comment] = ACTIONS(56), - }, - [2346] = { - [sym_case_item] = STATE(1338), - [sym_last_case_item] = STATE(2960), - [sym_concatenation] = STATE(1340), - [sym_string] = STATE(1333), - [sym_simple_expansion] = STATE(1333), - [sym_string_expansion] = STATE(1333), - [sym_expansion] = STATE(1333), - [sym_command_substitution] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_case_statement_repeat1] = STATE(2019), - [sym__special_characters] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2711), - [sym_raw_string] = ACTIONS(2713), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), - [anon_sym_BQUOTE] = ACTIONS(2719), - [anon_sym_LT_LPAREN] = ACTIONS(2721), - [anon_sym_GT_LPAREN] = ACTIONS(2721), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4364), - }, - [2347] = { - [sym_case_item] = STATE(1338), - [sym_last_case_item] = STATE(2960), - [sym_concatenation] = STATE(1340), - [sym_string] = STATE(1333), - [sym_simple_expansion] = STATE(1333), - [sym_string_expansion] = STATE(1333), - [sym_expansion] = STATE(1333), - [sym_command_substitution] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_case_statement_repeat1] = STATE(2962), - [anon_sym_esac] = ACTIONS(6138), - [sym__special_characters] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2711), - [sym_raw_string] = ACTIONS(2713), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), - [anon_sym_BQUOTE] = ACTIONS(2719), - [anon_sym_LT_LPAREN] = ACTIONS(2721), - [anon_sym_GT_LPAREN] = ACTIONS(2721), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2723), - }, - [2348] = { - [sym_file_redirect] = STATE(2963), - [sym_file_descriptor] = ACTIONS(3478), - [anon_sym_PIPE] = ACTIONS(6140), - [anon_sym_RPAREN] = ACTIONS(6142), - [anon_sym_PIPE_AMP] = ACTIONS(6142), - [anon_sym_AMP_AMP] = ACTIONS(6142), - [anon_sym_PIPE_PIPE] = ACTIONS(6142), - [anon_sym_LT] = ACTIONS(3484), - [anon_sym_GT] = ACTIONS(3484), - [anon_sym_GT_GT] = ACTIONS(3486), - [anon_sym_AMP_GT] = ACTIONS(3484), - [anon_sym_AMP_GT_GT] = ACTIONS(3486), - [anon_sym_LT_AMP] = ACTIONS(3486), - [anon_sym_GT_AMP] = ACTIONS(3486), - [sym_comment] = ACTIONS(56), - }, - [2349] = { - [sym_file_descriptor] = ACTIONS(4402), - [anon_sym_PIPE] = ACTIONS(6144), - [anon_sym_RPAREN] = ACTIONS(4402), - [anon_sym_PIPE_AMP] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_PIPE_PIPE] = ACTIONS(4402), - [anon_sym_LT] = ACTIONS(6144), - [anon_sym_GT] = ACTIONS(6144), - [anon_sym_GT_GT] = ACTIONS(4402), - [anon_sym_AMP_GT] = ACTIONS(6144), - [anon_sym_AMP_GT_GT] = ACTIONS(4402), - [anon_sym_LT_AMP] = ACTIONS(4402), - [anon_sym_GT_AMP] = ACTIONS(4402), - [anon_sym_BQUOTE] = ACTIONS(4402), - [sym_comment] = ACTIONS(56), - }, - [2350] = { - [sym_concatenation] = STATE(2966), - [sym_string] = STATE(2965), - [sym_simple_expansion] = STATE(2965), - [sym_string_expansion] = STATE(2965), - [sym_expansion] = STATE(2965), - [sym_command_substitution] = STATE(2965), - [sym_process_substitution] = STATE(2965), - [sym__special_characters] = ACTIONS(6146), - [anon_sym_DQUOTE] = ACTIONS(4985), - [anon_sym_DOLLAR] = ACTIONS(4987), - [sym_raw_string] = ACTIONS(6148), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4991), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4993), - [anon_sym_BQUOTE] = ACTIONS(4995), - [anon_sym_LT_LPAREN] = ACTIONS(4997), - [anon_sym_GT_LPAREN] = ACTIONS(4997), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6150), - }, - [2351] = { - [aux_sym_concatenation_repeat1] = STATE(2968), - [sym__concat] = ACTIONS(6152), - [anon_sym_PIPE] = ACTIONS(760), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_PIPE_AMP] = ACTIONS(756), - [anon_sym_AMP_AMP] = ACTIONS(756), - [anon_sym_PIPE_PIPE] = ACTIONS(756), - [sym_comment] = ACTIONS(56), - }, - [2352] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(2970), - [anon_sym_DQUOTE] = ACTIONS(6154), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [2353] = { - [sym_string] = STATE(2972), - [anon_sym_DQUOTE] = ACTIONS(4985), - [anon_sym_DOLLAR] = ACTIONS(6156), - [sym_raw_string] = ACTIONS(6158), - [anon_sym_POUND] = ACTIONS(6156), - [anon_sym_DASH] = ACTIONS(6156), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6160), - [anon_sym_STAR] = ACTIONS(6156), - [anon_sym_AT] = ACTIONS(6156), - [anon_sym_QMARK] = ACTIONS(6156), - [anon_sym_0] = ACTIONS(6162), - [anon_sym__] = ACTIONS(6162), - }, - [2354] = { - [aux_sym_concatenation_repeat1] = STATE(2968), - [sym__concat] = ACTIONS(6152), - [anon_sym_PIPE] = ACTIONS(774), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_PIPE_AMP] = ACTIONS(772), - [anon_sym_AMP_AMP] = ACTIONS(772), - [anon_sym_PIPE_PIPE] = ACTIONS(772), - [sym_comment] = ACTIONS(56), - }, - [2355] = { - [sym_subscript] = STATE(2978), - [sym_variable_name] = ACTIONS(6164), - [anon_sym_DOLLAR] = ACTIONS(6166), - [anon_sym_POUND] = ACTIONS(6168), - [anon_sym_DASH] = ACTIONS(6166), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(6166), - [anon_sym_AT] = ACTIONS(6166), - [anon_sym_QMARK] = ACTIONS(6166), - [anon_sym_0] = ACTIONS(6172), - [anon_sym__] = ACTIONS(6172), - }, - [2356] = { - [sym_for_statement] = STATE(2979), - [sym_while_statement] = STATE(2979), - [sym_if_statement] = STATE(2979), - [sym_case_statement] = STATE(2979), - [sym_function_definition] = STATE(2979), - [sym_subshell] = STATE(2979), - [sym_pipeline] = STATE(2979), - [sym_list] = STATE(2979), - [sym_command] = STATE(2979), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(2979), - [sym_variable_assignment] = STATE(2980), - [sym_declaration_command] = STATE(2979), - [sym_unset_command] = STATE(2979), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [2357] = { - [sym_for_statement] = STATE(2981), - [sym_while_statement] = STATE(2981), - [sym_if_statement] = STATE(2981), - [sym_case_statement] = STATE(2981), - [sym_function_definition] = STATE(2981), - [sym_subshell] = STATE(2981), - [sym_pipeline] = STATE(2981), - [sym_list] = STATE(2981), - [sym_command] = STATE(2981), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(2981), - [sym_variable_assignment] = STATE(2982), - [sym_declaration_command] = STATE(2981), - [sym_unset_command] = STATE(2981), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [2358] = { - [sym_for_statement] = STATE(2983), - [sym_while_statement] = STATE(2983), - [sym_if_statement] = STATE(2983), - [sym_case_statement] = STATE(2983), - [sym_function_definition] = STATE(2983), - [sym_subshell] = STATE(2983), - [sym_pipeline] = STATE(2983), - [sym_list] = STATE(2983), - [sym_command] = STATE(2983), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(2983), - [sym_variable_assignment] = STATE(2984), - [sym_declaration_command] = STATE(2983), - [sym_unset_command] = STATE(2983), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [2359] = { - [anon_sym_PIPE] = ACTIONS(774), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_PIPE_AMP] = ACTIONS(772), - [anon_sym_AMP_AMP] = ACTIONS(772), - [anon_sym_PIPE_PIPE] = ACTIONS(772), - [anon_sym_BQUOTE] = ACTIONS(772), - [sym_comment] = ACTIONS(56), - }, - [2360] = { - [anon_sym_PIPE] = ACTIONS(6174), - [anon_sym_RPAREN] = ACTIONS(6176), - [anon_sym_PIPE_AMP] = ACTIONS(6176), - [anon_sym_AMP_AMP] = ACTIONS(6176), - [anon_sym_PIPE_PIPE] = ACTIONS(6176), - [anon_sym_BQUOTE] = ACTIONS(6176), - [sym_comment] = ACTIONS(56), - }, - [2361] = { - [sym_variable_name] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(4907), - [anon_sym_RPAREN] = ACTIONS(2563), - [anon_sym_PIPE_AMP] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [sym__special_characters] = ACTIONS(4907), - [anon_sym_DQUOTE] = ACTIONS(2563), - [anon_sym_DOLLAR] = ACTIONS(4907), - [sym_raw_string] = ACTIONS(2563), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2563), - [anon_sym_BQUOTE] = ACTIONS(2563), - [anon_sym_LT_LPAREN] = ACTIONS(2563), - [anon_sym_GT_LPAREN] = ACTIONS(2563), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4907), - [sym_word] = ACTIONS(2565), - }, - [2362] = { - [sym_concatenation] = STATE(661), - [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), - [aux_sym_for_statement_repeat1] = STATE(1273), - [anon_sym_RPAREN] = ACTIONS(6178), - [sym__special_characters] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1287), - [anon_sym_DOLLAR] = ACTIONS(1289), - [sym_raw_string] = ACTIONS(1291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), - [anon_sym_BQUOTE] = ACTIONS(1297), - [anon_sym_LT_LPAREN] = ACTIONS(1299), - [anon_sym_GT_LPAREN] = ACTIONS(1299), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1301), - }, - [2363] = { - [sym__concat] = ACTIONS(3293), - [sym_variable_name] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(4614), - [anon_sym_RPAREN] = ACTIONS(3293), - [anon_sym_PIPE_AMP] = ACTIONS(3293), - [anon_sym_AMP_AMP] = ACTIONS(3293), - [anon_sym_PIPE_PIPE] = ACTIONS(3293), - [sym__special_characters] = ACTIONS(4614), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_DOLLAR] = ACTIONS(4614), - [sym_raw_string] = ACTIONS(3293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), - [anon_sym_BQUOTE] = ACTIONS(3293), - [anon_sym_LT_LPAREN] = ACTIONS(3293), - [anon_sym_GT_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4614), - [sym_word] = ACTIONS(3295), - }, - [2364] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6180), - [sym_comment] = ACTIONS(56), - }, - [2365] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6182), - [sym_comment] = ACTIONS(56), - }, - [2366] = { - [anon_sym_RBRACE] = ACTIONS(6182), - [sym_comment] = ACTIONS(56), - }, - [2367] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2989), - [anon_sym_RBRACE] = ACTIONS(6184), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2368] = { - [sym__concat] = ACTIONS(3357), - [sym_variable_name] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(4622), - [anon_sym_RPAREN] = ACTIONS(3357), - [anon_sym_PIPE_AMP] = ACTIONS(3357), - [anon_sym_AMP_AMP] = ACTIONS(3357), - [anon_sym_PIPE_PIPE] = ACTIONS(3357), - [sym__special_characters] = ACTIONS(4622), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_DOLLAR] = ACTIONS(4622), - [sym_raw_string] = ACTIONS(3357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), - [anon_sym_BQUOTE] = ACTIONS(3357), - [anon_sym_LT_LPAREN] = ACTIONS(3357), - [anon_sym_GT_LPAREN] = ACTIONS(3357), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4622), - [sym_word] = ACTIONS(3359), - }, - [2369] = { - [sym_concatenation] = STATE(2992), - [sym_string] = STATE(2991), - [sym_simple_expansion] = STATE(2991), - [sym_string_expansion] = STATE(2991), - [sym_expansion] = STATE(2991), - [sym_command_substitution] = STATE(2991), - [sym_process_substitution] = STATE(2991), - [anon_sym_RBRACE] = ACTIONS(6182), - [sym__special_characters] = ACTIONS(6186), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(6188), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6190), - }, - [2370] = { - [sym__concat] = ACTIONS(3402), - [sym_variable_name] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(4630), - [anon_sym_RPAREN] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(4630), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(4630), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4630), - [sym_word] = ACTIONS(3404), - }, - [2371] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6192), - }, - [2372] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6194), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2373] = { - [sym__concat] = ACTIONS(3410), - [sym_variable_name] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(4636), - [anon_sym_RPAREN] = ACTIONS(3410), - [anon_sym_PIPE_AMP] = ACTIONS(3410), - [anon_sym_AMP_AMP] = ACTIONS(3410), - [anon_sym_PIPE_PIPE] = ACTIONS(3410), - [sym__special_characters] = ACTIONS(4636), - [anon_sym_DQUOTE] = ACTIONS(3410), - [anon_sym_DOLLAR] = ACTIONS(4636), - [sym_raw_string] = ACTIONS(3410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), - [anon_sym_BQUOTE] = ACTIONS(3410), - [anon_sym_LT_LPAREN] = ACTIONS(3410), - [anon_sym_GT_LPAREN] = ACTIONS(3410), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4636), - [sym_word] = ACTIONS(3412), - }, - [2374] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6196), - }, - [2375] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6198), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2376] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6200), - }, - [2377] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6182), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2378] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(2999), - [anon_sym_RBRACE] = ACTIONS(6202), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2379] = { - [sym__concat] = ACTIONS(3422), - [sym_variable_name] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(4646), - [anon_sym_RPAREN] = ACTIONS(3422), - [anon_sym_PIPE_AMP] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [sym__special_characters] = ACTIONS(4646), - [anon_sym_DQUOTE] = ACTIONS(3422), - [anon_sym_DOLLAR] = ACTIONS(4646), - [sym_raw_string] = ACTIONS(3422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), - [anon_sym_BQUOTE] = ACTIONS(3422), - [anon_sym_LT_LPAREN] = ACTIONS(3422), - [anon_sym_GT_LPAREN] = ACTIONS(3422), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4646), - [sym_word] = ACTIONS(3424), - }, - [2380] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3001), - [anon_sym_RBRACE] = ACTIONS(6204), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2381] = { - [sym__concat] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(4614), - [anon_sym_RPAREN] = ACTIONS(3293), - [anon_sym_PIPE_AMP] = ACTIONS(3293), - [anon_sym_AMP_AMP] = ACTIONS(3293), - [anon_sym_PIPE_PIPE] = ACTIONS(3293), - [sym__special_characters] = ACTIONS(4614), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_DOLLAR] = ACTIONS(4614), - [sym_raw_string] = ACTIONS(3293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), - [anon_sym_BQUOTE] = ACTIONS(3293), - [anon_sym_LT_LPAREN] = ACTIONS(3293), - [anon_sym_GT_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4614), - [sym_word] = ACTIONS(3295), - }, - [2382] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6206), - [sym_comment] = ACTIONS(56), - }, - [2383] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6208), - [sym_comment] = ACTIONS(56), - }, - [2384] = { - [anon_sym_RBRACE] = ACTIONS(6208), - [sym_comment] = ACTIONS(56), - }, - [2385] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3005), - [anon_sym_RBRACE] = ACTIONS(6210), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2386] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(4622), - [anon_sym_RPAREN] = ACTIONS(3357), - [anon_sym_PIPE_AMP] = ACTIONS(3357), - [anon_sym_AMP_AMP] = ACTIONS(3357), - [anon_sym_PIPE_PIPE] = ACTIONS(3357), - [sym__special_characters] = ACTIONS(4622), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_DOLLAR] = ACTIONS(4622), - [sym_raw_string] = ACTIONS(3357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), - [anon_sym_BQUOTE] = ACTIONS(3357), - [anon_sym_LT_LPAREN] = ACTIONS(3357), - [anon_sym_GT_LPAREN] = ACTIONS(3357), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4622), - [sym_word] = ACTIONS(3359), - }, - [2387] = { - [sym_concatenation] = STATE(3008), - [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), - [anon_sym_RBRACE] = ACTIONS(6208), - [sym__special_characters] = ACTIONS(6212), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(6214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6216), - }, - [2388] = { - [sym__concat] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(4630), - [anon_sym_RPAREN] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(4630), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(4630), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4630), - [sym_word] = ACTIONS(3404), - }, - [2389] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6218), - }, - [2390] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6220), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2391] = { - [sym__concat] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(4636), - [anon_sym_RPAREN] = ACTIONS(3410), - [anon_sym_PIPE_AMP] = ACTIONS(3410), - [anon_sym_AMP_AMP] = ACTIONS(3410), - [anon_sym_PIPE_PIPE] = ACTIONS(3410), - [sym__special_characters] = ACTIONS(4636), - [anon_sym_DQUOTE] = ACTIONS(3410), - [anon_sym_DOLLAR] = ACTIONS(4636), - [sym_raw_string] = ACTIONS(3410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), - [anon_sym_BQUOTE] = ACTIONS(3410), - [anon_sym_LT_LPAREN] = ACTIONS(3410), - [anon_sym_GT_LPAREN] = ACTIONS(3410), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4636), - [sym_word] = ACTIONS(3412), - }, - [2392] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6222), - }, - [2393] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6224), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2394] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6226), - }, - [2395] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6208), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2396] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3015), - [anon_sym_RBRACE] = ACTIONS(6228), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2397] = { - [sym__concat] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(4646), - [anon_sym_RPAREN] = ACTIONS(3422), - [anon_sym_PIPE_AMP] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [sym__special_characters] = ACTIONS(4646), - [anon_sym_DQUOTE] = ACTIONS(3422), - [anon_sym_DOLLAR] = ACTIONS(4646), - [sym_raw_string] = ACTIONS(3422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), - [anon_sym_BQUOTE] = ACTIONS(3422), - [anon_sym_LT_LPAREN] = ACTIONS(3422), - [anon_sym_GT_LPAREN] = ACTIONS(3422), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4646), - [sym_word] = ACTIONS(3424), - }, - [2398] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3017), - [anon_sym_RBRACE] = ACTIONS(6230), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2399] = { - [sym_file_descriptor] = ACTIONS(4802), - [sym__concat] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_RPAREN] = ACTIONS(4802), - [anon_sym_PIPE_AMP] = ACTIONS(4802), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [anon_sym_EQ_TILDE] = ACTIONS(5860), - [anon_sym_EQ_EQ] = ACTIONS(5860), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_GT_GT] = ACTIONS(4802), - [anon_sym_AMP_GT] = ACTIONS(5860), - [anon_sym_AMP_GT_GT] = ACTIONS(4802), - [anon_sym_LT_AMP] = ACTIONS(4802), - [anon_sym_GT_AMP] = ACTIONS(4802), - [anon_sym_LT_LT] = ACTIONS(5860), - [anon_sym_LT_LT_DASH] = ACTIONS(4802), - [anon_sym_LT_LT_LT] = ACTIONS(4802), - [sym__special_characters] = ACTIONS(5860), - [anon_sym_DQUOTE] = ACTIONS(4802), - [anon_sym_DOLLAR] = ACTIONS(5860), - [sym_raw_string] = ACTIONS(4802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), - [anon_sym_BQUOTE] = ACTIONS(4802), - [anon_sym_LT_LPAREN] = ACTIONS(4802), - [anon_sym_GT_LPAREN] = ACTIONS(4802), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4804), - }, - [2400] = { - [sym_file_descriptor] = ACTIONS(4808), - [sym__concat] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(4808), - [anon_sym_PIPE_AMP] = ACTIONS(4808), - [anon_sym_AMP_AMP] = ACTIONS(4808), - [anon_sym_PIPE_PIPE] = ACTIONS(4808), - [anon_sym_EQ_TILDE] = ACTIONS(5862), - [anon_sym_EQ_EQ] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5862), - [anon_sym_GT] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(4808), - [anon_sym_AMP_GT] = ACTIONS(5862), - [anon_sym_AMP_GT_GT] = ACTIONS(4808), - [anon_sym_LT_AMP] = ACTIONS(4808), - [anon_sym_GT_AMP] = ACTIONS(4808), - [anon_sym_LT_LT] = ACTIONS(5862), - [anon_sym_LT_LT_DASH] = ACTIONS(4808), - [anon_sym_LT_LT_LT] = ACTIONS(4808), - [sym__special_characters] = ACTIONS(5862), - [anon_sym_DQUOTE] = ACTIONS(4808), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4808), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), - [anon_sym_BQUOTE] = ACTIONS(4808), - [anon_sym_LT_LPAREN] = ACTIONS(4808), - [anon_sym_GT_LPAREN] = ACTIONS(4808), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4810), - }, - [2401] = { - [sym_file_descriptor] = ACTIONS(4871), - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_RPAREN] = ACTIONS(4871), - [anon_sym_PIPE_AMP] = ACTIONS(4871), - [anon_sym_AMP_AMP] = ACTIONS(4871), - [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [anon_sym_EQ_TILDE] = ACTIONS(5864), - [anon_sym_EQ_EQ] = ACTIONS(5864), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_GT_GT] = ACTIONS(4871), - [anon_sym_AMP_GT] = ACTIONS(5864), - [anon_sym_AMP_GT_GT] = ACTIONS(4871), - [anon_sym_LT_AMP] = ACTIONS(4871), - [anon_sym_GT_AMP] = ACTIONS(4871), - [anon_sym_LT_LT] = ACTIONS(5864), - [anon_sym_LT_LT_DASH] = ACTIONS(4871), - [anon_sym_LT_LT_LT] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(5864), - [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5864), - [sym_raw_string] = ACTIONS(4871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), - [anon_sym_BQUOTE] = ACTIONS(4871), - [anon_sym_LT_LPAREN] = ACTIONS(4871), - [anon_sym_GT_LPAREN] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4873), - }, - [2402] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6232), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2403] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6234), - [sym_comment] = ACTIONS(56), - }, - [2404] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6236), - [sym_comment] = ACTIONS(56), - }, - [2405] = { - [anon_sym_RBRACE] = ACTIONS(6236), - [sym_comment] = ACTIONS(56), - }, - [2406] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3022), - [anon_sym_RBRACE] = ACTIONS(6238), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2407] = { - [sym_file_descriptor] = ACTIONS(4883), - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5874), - [anon_sym_RPAREN] = ACTIONS(4883), - [anon_sym_PIPE_AMP] = ACTIONS(4883), - [anon_sym_AMP_AMP] = ACTIONS(4883), - [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [anon_sym_EQ_TILDE] = ACTIONS(5874), - [anon_sym_EQ_EQ] = ACTIONS(5874), - [anon_sym_LT] = ACTIONS(5874), - [anon_sym_GT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(4883), - [anon_sym_AMP_GT] = ACTIONS(5874), - [anon_sym_AMP_GT_GT] = ACTIONS(4883), - [anon_sym_LT_AMP] = ACTIONS(4883), - [anon_sym_GT_AMP] = ACTIONS(4883), - [anon_sym_LT_LT] = ACTIONS(5874), - [anon_sym_LT_LT_DASH] = ACTIONS(4883), - [anon_sym_LT_LT_LT] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(5874), - [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5874), - [sym_raw_string] = ACTIONS(4883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(4883), - [anon_sym_LT_LPAREN] = ACTIONS(4883), - [anon_sym_GT_LPAREN] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4885), - }, - [2408] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3024), - [anon_sym_RBRACE] = ACTIONS(6240), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2409] = { - [sym_file_descriptor] = ACTIONS(4889), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5878), - [anon_sym_RPAREN] = 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(5878), - [anon_sym_EQ_EQ] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(5878), - [anon_sym_GT] = ACTIONS(5878), - [anon_sym_GT_GT] = ACTIONS(4889), - [anon_sym_AMP_GT] = ACTIONS(5878), - [anon_sym_AMP_GT_GT] = ACTIONS(4889), - [anon_sym_LT_AMP] = ACTIONS(4889), - [anon_sym_GT_AMP] = ACTIONS(4889), - [anon_sym_LT_LT] = ACTIONS(5878), - [anon_sym_LT_LT_DASH] = ACTIONS(4889), - [anon_sym_LT_LT_LT] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(5878), - [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5878), - [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(56), - [sym_word] = ACTIONS(4891), - }, - [2410] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3026), - [anon_sym_RBRACE] = ACTIONS(6242), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2411] = { - [sym_file_descriptor] = ACTIONS(4895), - [sym__concat] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(5882), - [anon_sym_RPAREN] = ACTIONS(4895), - [anon_sym_PIPE_AMP] = ACTIONS(4895), - [anon_sym_AMP_AMP] = ACTIONS(4895), - [anon_sym_PIPE_PIPE] = ACTIONS(4895), - [anon_sym_EQ_TILDE] = ACTIONS(5882), - [anon_sym_EQ_EQ] = ACTIONS(5882), - [anon_sym_LT] = ACTIONS(5882), - [anon_sym_GT] = ACTIONS(5882), - [anon_sym_GT_GT] = ACTIONS(4895), - [anon_sym_AMP_GT] = ACTIONS(5882), - [anon_sym_AMP_GT_GT] = ACTIONS(4895), - [anon_sym_LT_AMP] = ACTIONS(4895), - [anon_sym_GT_AMP] = ACTIONS(4895), - [anon_sym_LT_LT] = ACTIONS(5882), - [anon_sym_LT_LT_DASH] = ACTIONS(4895), - [anon_sym_LT_LT_LT] = ACTIONS(4895), - [sym__special_characters] = ACTIONS(5882), - [anon_sym_DQUOTE] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(5882), - [sym_raw_string] = ACTIONS(4895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), - [anon_sym_BQUOTE] = ACTIONS(4895), - [anon_sym_LT_LPAREN] = ACTIONS(4895), - [anon_sym_GT_LPAREN] = ACTIONS(4895), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4897), - }, - [2412] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6244), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2413] = { - [sym_file_descriptor] = ACTIONS(4901), - [sym__concat] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(5886), - [anon_sym_RPAREN] = ACTIONS(4901), - [anon_sym_PIPE_AMP] = ACTIONS(4901), - [anon_sym_AMP_AMP] = ACTIONS(4901), - [anon_sym_PIPE_PIPE] = ACTIONS(4901), - [anon_sym_EQ_TILDE] = ACTIONS(5886), - [anon_sym_EQ_EQ] = ACTIONS(5886), - [anon_sym_LT] = ACTIONS(5886), - [anon_sym_GT] = ACTIONS(5886), - [anon_sym_GT_GT] = ACTIONS(4901), - [anon_sym_AMP_GT] = ACTIONS(5886), - [anon_sym_AMP_GT_GT] = ACTIONS(4901), - [anon_sym_LT_AMP] = ACTIONS(4901), - [anon_sym_GT_AMP] = ACTIONS(4901), - [anon_sym_LT_LT] = ACTIONS(5886), - [anon_sym_LT_LT_DASH] = ACTIONS(4901), - [anon_sym_LT_LT_LT] = ACTIONS(4901), - [sym__special_characters] = ACTIONS(5886), - [anon_sym_DQUOTE] = ACTIONS(4901), - [anon_sym_DOLLAR] = ACTIONS(5886), - [sym_raw_string] = ACTIONS(4901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), - [anon_sym_BQUOTE] = ACTIONS(4901), - [anon_sym_LT_LPAREN] = ACTIONS(4901), - [anon_sym_GT_LPAREN] = ACTIONS(4901), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4903), - }, - [2414] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6246), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2415] = { - [anon_sym_PIPE] = ACTIONS(6140), - [anon_sym_RPAREN] = ACTIONS(6142), - [anon_sym_PIPE_AMP] = ACTIONS(6142), - [anon_sym_AMP_AMP] = ACTIONS(6142), - [anon_sym_PIPE_PIPE] = ACTIONS(6142), - [anon_sym_BQUOTE] = ACTIONS(6142), - [sym_comment] = ACTIONS(56), - }, - [2416] = { - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_RPAREN] = ACTIONS(1890), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_GT_GT] = ACTIONS(1890), - [anon_sym_AMP_GT] = ACTIONS(3066), - [anon_sym_AMP_GT_GT] = ACTIONS(1890), - [anon_sym_LT_AMP] = ACTIONS(1890), - [anon_sym_GT_AMP] = ACTIONS(1890), - [anon_sym_LT_LT] = ACTIONS(3066), - [anon_sym_LT_LT_DASH] = ACTIONS(1890), - [anon_sym_LT_LT_LT] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - }, - [2417] = { - [aux_sym_concatenation_repeat1] = STATE(2417), - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(6248), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_RPAREN] = ACTIONS(1890), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_GT_GT] = ACTIONS(1890), - [anon_sym_AMP_GT] = ACTIONS(3066), - [anon_sym_AMP_GT_GT] = ACTIONS(1890), - [anon_sym_LT_AMP] = ACTIONS(1890), - [anon_sym_GT_AMP] = ACTIONS(1890), - [anon_sym_LT_LT] = ACTIONS(3066), - [anon_sym_LT_LT_DASH] = ACTIONS(1890), - [anon_sym_LT_LT_LT] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - }, - [2418] = { - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_PIPE_AMP] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(1927), - [anon_sym_AMP_GT] = ACTIONS(3071), - [anon_sym_AMP_GT_GT] = ACTIONS(1927), - [anon_sym_LT_AMP] = ACTIONS(1927), - [anon_sym_GT_AMP] = ACTIONS(1927), - [anon_sym_LT_LT] = ACTIONS(3071), - [anon_sym_LT_LT_DASH] = ACTIONS(1927), - [anon_sym_LT_LT_LT] = ACTIONS(1927), - [sym_comment] = ACTIONS(56), - }, - [2419] = { - [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(6251), - [sym__special_characters] = ACTIONS(6253), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(6255), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6257), - }, - [2420] = { - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_AMP_GT] = ACTIONS(3081), - [anon_sym_AMP_GT_GT] = ACTIONS(1972), - [anon_sym_LT_AMP] = ACTIONS(1972), - [anon_sym_GT_AMP] = ACTIONS(1972), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_LT_LT_DASH] = ACTIONS(1972), - [anon_sym_LT_LT_LT] = ACTIONS(1972), - [sym_comment] = ACTIONS(56), - }, - [2421] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6259), - }, - [2422] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6261), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2423] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(6263), - [sym_comment] = ACTIONS(56), - }, - [2424] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3038), - [anon_sym_RBRACE] = ACTIONS(6265), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6267), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2425] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3041), - [anon_sym_RBRACE] = ACTIONS(6269), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6271), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2426] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3043), - [anon_sym_RBRACE] = ACTIONS(6251), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6273), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2427] = { - [sym_file_descriptor] = ACTIONS(2026), - [sym__concat] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(2026), - [anon_sym_PIPE_AMP] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_LT] = ACTIONS(3099), - [anon_sym_GT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(2026), - [anon_sym_AMP_GT] = ACTIONS(3099), - [anon_sym_AMP_GT_GT] = ACTIONS(2026), - [anon_sym_LT_AMP] = ACTIONS(2026), - [anon_sym_GT_AMP] = ACTIONS(2026), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_LT_LT_DASH] = ACTIONS(2026), - [anon_sym_LT_LT_LT] = ACTIONS(2026), - [sym_comment] = ACTIONS(56), - }, - [2428] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6275), - }, - [2429] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6277), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2430] = { - [sym_file_descriptor] = ACTIONS(2034), - [sym__concat] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_RPAREN] = ACTIONS(2034), - [anon_sym_PIPE_AMP] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_AMP_GT] = ACTIONS(3105), - [anon_sym_AMP_GT_GT] = ACTIONS(2034), - [anon_sym_LT_AMP] = ACTIONS(2034), - [anon_sym_GT_AMP] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(3105), - [anon_sym_LT_LT_DASH] = ACTIONS(2034), - [anon_sym_LT_LT_LT] = ACTIONS(2034), - [sym_comment] = ACTIONS(56), - }, - [2431] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6279), - }, - [2432] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6251), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2433] = { - [sym_file_descriptor] = ACTIONS(2196), - [sym__concat] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_RPAREN] = ACTIONS(2196), - [anon_sym_PIPE_AMP] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_GT_GT] = ACTIONS(2196), - [anon_sym_AMP_GT] = ACTIONS(3109), - [anon_sym_AMP_GT_GT] = ACTIONS(2196), - [anon_sym_LT_AMP] = ACTIONS(2196), - [anon_sym_GT_AMP] = ACTIONS(2196), - [anon_sym_LT_LT] = ACTIONS(3109), - [anon_sym_LT_LT_DASH] = ACTIONS(2196), - [anon_sym_LT_LT_LT] = ACTIONS(2196), - [sym_comment] = ACTIONS(56), - }, - [2434] = { - [sym_file_descriptor] = ACTIONS(2402), - [sym__concat] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_RPAREN] = ACTIONS(2402), - [anon_sym_PIPE_AMP] = ACTIONS(2402), - [anon_sym_AMP_AMP] = ACTIONS(2402), - [anon_sym_PIPE_PIPE] = ACTIONS(2402), - [anon_sym_LT] = ACTIONS(3111), - [anon_sym_GT] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(2402), - [anon_sym_AMP_GT] = ACTIONS(3111), - [anon_sym_AMP_GT_GT] = ACTIONS(2402), - [anon_sym_LT_AMP] = ACTIONS(2402), - [anon_sym_GT_AMP] = ACTIONS(2402), - [anon_sym_LT_LT] = ACTIONS(3111), - [anon_sym_LT_LT_DASH] = ACTIONS(2402), - [anon_sym_LT_LT_LT] = ACTIONS(2402), - [sym_comment] = ACTIONS(56), - }, - [2435] = { - [sym_file_descriptor] = ACTIONS(5382), - [anon_sym_PIPE] = ACTIONS(6281), - [anon_sym_RPAREN] = ACTIONS(5382), - [anon_sym_PIPE_AMP] = ACTIONS(5382), - [anon_sym_AMP_AMP] = ACTIONS(5382), - [anon_sym_PIPE_PIPE] = ACTIONS(5382), - [anon_sym_LT] = ACTIONS(6281), - [anon_sym_GT] = ACTIONS(6281), - [anon_sym_GT_GT] = ACTIONS(5382), - [anon_sym_AMP_GT] = ACTIONS(6281), - [anon_sym_AMP_GT_GT] = ACTIONS(5382), - [anon_sym_LT_AMP] = ACTIONS(5382), - [anon_sym_GT_AMP] = ACTIONS(5382), - [anon_sym_LT_LT] = ACTIONS(6281), - [anon_sym_LT_LT_DASH] = ACTIONS(5382), - [anon_sym_LT_LT_LT] = ACTIONS(5382), - [anon_sym_BQUOTE] = ACTIONS(5382), - [sym_comment] = ACTIONS(56), - }, - [2436] = { - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(1890), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_GT_GT] = ACTIONS(1890), - [anon_sym_AMP_GT] = ACTIONS(3066), - [anon_sym_AMP_GT_GT] = ACTIONS(1890), - [anon_sym_LT_AMP] = ACTIONS(1890), - [anon_sym_GT_AMP] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3066), - }, - [2437] = { - [aux_sym_concatenation_repeat1] = STATE(2437), - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(6283), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_GT_GT] = ACTIONS(1890), - [anon_sym_AMP_GT] = ACTIONS(3066), - [anon_sym_AMP_GT_GT] = ACTIONS(1890), - [anon_sym_LT_AMP] = ACTIONS(1890), - [anon_sym_GT_AMP] = ACTIONS(1890), - [sym__special_characters] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(3066), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3066), - }, - [2438] = { - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [sym_variable_name] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(1927), - [anon_sym_AMP_GT] = ACTIONS(3071), - [anon_sym_AMP_GT_GT] = ACTIONS(1927), - [anon_sym_LT_AMP] = ACTIONS(1927), - [anon_sym_GT_AMP] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), - [anon_sym_BQUOTE] = ACTIONS(1927), - [anon_sym_LT_LPAREN] = ACTIONS(1927), - [anon_sym_GT_LPAREN] = ACTIONS(1927), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3071), - }, - [2439] = { - [sym_concatenation] = STATE(3050), - [sym_string] = STATE(3049), - [sym_simple_expansion] = STATE(3049), - [sym_string_expansion] = STATE(3049), - [sym_expansion] = STATE(3049), - [sym_command_substitution] = STATE(3049), - [sym_process_substitution] = STATE(3049), - [anon_sym_RBRACE] = ACTIONS(6286), - [sym__special_characters] = ACTIONS(6288), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(6290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6292), - }, - [2440] = { - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(1972), - [sym_variable_name] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_AMP_GT] = ACTIONS(3081), - [anon_sym_AMP_GT_GT] = ACTIONS(1972), - [anon_sym_LT_AMP] = ACTIONS(1972), - [anon_sym_GT_AMP] = ACTIONS(1972), - [sym__special_characters] = ACTIONS(3081), - [anon_sym_DQUOTE] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(3081), - [sym_raw_string] = ACTIONS(1972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1972), - [anon_sym_LT_LPAREN] = ACTIONS(1972), - [anon_sym_GT_LPAREN] = ACTIONS(1972), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3081), - }, - [2441] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6294), - }, - [2442] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6296), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2443] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(6298), - [sym_comment] = ACTIONS(56), - }, - [2444] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3056), - [anon_sym_RBRACE] = ACTIONS(6300), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6302), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2445] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3059), - [anon_sym_RBRACE] = ACTIONS(6304), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6306), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2446] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3061), - [anon_sym_RBRACE] = ACTIONS(6286), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6308), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2447] = { - [sym_file_descriptor] = ACTIONS(2026), - [sym__concat] = ACTIONS(2026), - [sym_variable_name] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PIPE_AMP] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_LT] = ACTIONS(3099), - [anon_sym_GT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(2026), - [anon_sym_AMP_GT] = ACTIONS(3099), - [anon_sym_AMP_GT_GT] = ACTIONS(2026), - [anon_sym_LT_AMP] = ACTIONS(2026), - [anon_sym_GT_AMP] = ACTIONS(2026), - [sym__special_characters] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(2026), - [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), - [anon_sym_BQUOTE] = ACTIONS(2026), - [anon_sym_LT_LPAREN] = ACTIONS(2026), - [anon_sym_GT_LPAREN] = ACTIONS(2026), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3099), - }, - [2448] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6310), - }, - [2449] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6312), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2450] = { - [sym_file_descriptor] = ACTIONS(2034), - [sym__concat] = ACTIONS(2034), - [sym_variable_name] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_PIPE_AMP] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_AMP_GT] = ACTIONS(3105), - [anon_sym_AMP_GT_GT] = ACTIONS(2034), - [anon_sym_LT_AMP] = ACTIONS(2034), - [anon_sym_GT_AMP] = ACTIONS(2034), - [sym__special_characters] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(2034), - [anon_sym_DOLLAR] = ACTIONS(3105), - [sym_raw_string] = ACTIONS(2034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), - [anon_sym_BQUOTE] = ACTIONS(2034), - [anon_sym_LT_LPAREN] = ACTIONS(2034), - [anon_sym_GT_LPAREN] = ACTIONS(2034), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3105), - }, - [2451] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6314), - }, - [2452] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6286), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2453] = { - [sym_file_descriptor] = ACTIONS(2196), - [sym__concat] = ACTIONS(2196), - [sym_variable_name] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_PIPE_AMP] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_GT_GT] = ACTIONS(2196), - [anon_sym_AMP_GT] = ACTIONS(3109), - [anon_sym_AMP_GT_GT] = ACTIONS(2196), - [anon_sym_LT_AMP] = ACTIONS(2196), - [anon_sym_GT_AMP] = ACTIONS(2196), - [sym__special_characters] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(2196), - [anon_sym_DOLLAR] = ACTIONS(3109), - [sym_raw_string] = ACTIONS(2196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), - [anon_sym_BQUOTE] = ACTIONS(2196), - [anon_sym_LT_LPAREN] = ACTIONS(2196), - [anon_sym_GT_LPAREN] = ACTIONS(2196), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3109), - }, - [2454] = { - [sym_file_descriptor] = ACTIONS(2402), - [sym__concat] = ACTIONS(2402), - [sym_variable_name] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_PIPE_AMP] = ACTIONS(2402), - [anon_sym_AMP_AMP] = ACTIONS(2402), - [anon_sym_PIPE_PIPE] = ACTIONS(2402), - [anon_sym_LT] = ACTIONS(3111), - [anon_sym_GT] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(2402), - [anon_sym_AMP_GT] = ACTIONS(3111), - [anon_sym_AMP_GT_GT] = ACTIONS(2402), - [anon_sym_LT_AMP] = ACTIONS(2402), - [anon_sym_GT_AMP] = ACTIONS(2402), - [sym__special_characters] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_DOLLAR] = ACTIONS(3111), - [sym_raw_string] = ACTIONS(2402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), - [anon_sym_BQUOTE] = ACTIONS(2402), - [anon_sym_LT_LPAREN] = ACTIONS(2402), - [anon_sym_GT_LPAREN] = ACTIONS(2402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3111), - }, - [2455] = { - [sym_file_redirect] = STATE(2963), - [sym_file_descriptor] = ACTIONS(3804), - [anon_sym_PIPE] = ACTIONS(6140), - [anon_sym_PIPE_AMP] = ACTIONS(6142), - [anon_sym_AMP_AMP] = ACTIONS(6142), - [anon_sym_PIPE_PIPE] = ACTIONS(6142), - [anon_sym_LT] = ACTIONS(3806), - [anon_sym_GT] = ACTIONS(3806), - [anon_sym_GT_GT] = ACTIONS(3808), - [anon_sym_AMP_GT] = ACTIONS(3806), - [anon_sym_AMP_GT_GT] = ACTIONS(3808), - [anon_sym_LT_AMP] = ACTIONS(3808), - [anon_sym_GT_AMP] = ACTIONS(3808), - [anon_sym_BQUOTE] = ACTIONS(6142), - [sym_comment] = ACTIONS(56), - }, - [2456] = { - [sym_concatenation] = STATE(2966), - [sym_string] = STATE(3066), - [sym_simple_expansion] = STATE(3066), - [sym_string_expansion] = STATE(3066), - [sym_expansion] = STATE(3066), - [sym_command_substitution] = STATE(3066), - [sym_process_substitution] = STATE(3066), - [sym__special_characters] = ACTIONS(6316), - [anon_sym_DQUOTE] = ACTIONS(5187), - [anon_sym_DOLLAR] = ACTIONS(5189), - [sym_raw_string] = ACTIONS(6318), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5193), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5195), - [anon_sym_BQUOTE] = ACTIONS(5197), - [anon_sym_LT_LPAREN] = ACTIONS(5199), - [anon_sym_GT_LPAREN] = ACTIONS(5199), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6320), - }, - [2457] = { - [aux_sym_concatenation_repeat1] = STATE(3068), - [sym__concat] = ACTIONS(6322), - [anon_sym_PIPE] = ACTIONS(760), - [anon_sym_PIPE_AMP] = ACTIONS(756), - [anon_sym_AMP_AMP] = ACTIONS(756), - [anon_sym_PIPE_PIPE] = ACTIONS(756), - [anon_sym_BQUOTE] = ACTIONS(756), - [sym_comment] = ACTIONS(56), - }, - [2458] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(3070), - [anon_sym_DQUOTE] = ACTIONS(6324), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [2459] = { - [sym_string] = STATE(3072), - [anon_sym_DQUOTE] = ACTIONS(5187), - [anon_sym_DOLLAR] = ACTIONS(6326), - [sym_raw_string] = ACTIONS(6328), - [anon_sym_POUND] = ACTIONS(6326), - [anon_sym_DASH] = ACTIONS(6326), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6330), - [anon_sym_STAR] = ACTIONS(6326), - [anon_sym_AT] = ACTIONS(6326), - [anon_sym_QMARK] = ACTIONS(6326), - [anon_sym_0] = ACTIONS(6332), - [anon_sym__] = ACTIONS(6332), - }, - [2460] = { - [aux_sym_concatenation_repeat1] = STATE(3068), - [sym__concat] = ACTIONS(6322), - [anon_sym_PIPE] = ACTIONS(774), - [anon_sym_PIPE_AMP] = ACTIONS(772), - [anon_sym_AMP_AMP] = ACTIONS(772), - [anon_sym_PIPE_PIPE] = ACTIONS(772), - [anon_sym_BQUOTE] = ACTIONS(772), - [sym_comment] = ACTIONS(56), - }, - [2461] = { - [sym_subscript] = STATE(3078), - [sym_variable_name] = ACTIONS(6334), - [anon_sym_DOLLAR] = ACTIONS(6336), - [anon_sym_POUND] = ACTIONS(6338), - [anon_sym_DASH] = ACTIONS(6336), - [sym_comment] = ACTIONS(182), - [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), - }, - [2462] = { - [sym_for_statement] = STATE(3079), - [sym_while_statement] = STATE(3079), - [sym_if_statement] = STATE(3079), - [sym_case_statement] = STATE(3079), - [sym_function_definition] = STATE(3079), - [sym_subshell] = STATE(3079), - [sym_pipeline] = STATE(3079), - [sym_list] = STATE(3079), - [sym_command] = STATE(3079), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(3079), - [sym_variable_assignment] = STATE(3080), - [sym_declaration_command] = STATE(3079), - [sym_unset_command] = STATE(3079), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [2463] = { - [sym_for_statement] = STATE(3081), - [sym_while_statement] = STATE(3081), - [sym_if_statement] = STATE(3081), - [sym_case_statement] = STATE(3081), - [sym_function_definition] = STATE(3081), - [sym_subshell] = STATE(3081), - [sym_pipeline] = STATE(3081), - [sym_list] = STATE(3081), - [sym_command] = STATE(3081), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(3081), - [sym_variable_assignment] = STATE(3082), - [sym_declaration_command] = STATE(3081), - [sym_unset_command] = STATE(3081), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [2464] = { - [sym_for_statement] = STATE(3083), - [sym_while_statement] = STATE(3083), - [sym_if_statement] = STATE(3083), - [sym_case_statement] = STATE(3083), - [sym_function_definition] = STATE(3083), - [sym_subshell] = STATE(3083), - [sym_pipeline] = STATE(3083), - [sym_list] = STATE(3083), - [sym_command] = STATE(3083), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(3083), - [sym_variable_assignment] = STATE(3084), - [sym_declaration_command] = STATE(3083), - [sym_unset_command] = STATE(3083), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [2465] = { - [sym__concat] = ACTIONS(3293), - [sym_variable_name] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(4614), - [anon_sym_PIPE_AMP] = ACTIONS(3293), - [anon_sym_AMP_AMP] = ACTIONS(3293), - [anon_sym_PIPE_PIPE] = ACTIONS(3293), - [sym__special_characters] = ACTIONS(4614), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_DOLLAR] = ACTIONS(4614), - [sym_raw_string] = ACTIONS(3293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), - [anon_sym_BQUOTE] = ACTIONS(3293), - [anon_sym_LT_LPAREN] = ACTIONS(3293), - [anon_sym_GT_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4614), - [sym_word] = ACTIONS(3295), - }, - [2466] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6344), - [sym_comment] = ACTIONS(56), - }, - [2467] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6346), - [sym_comment] = ACTIONS(56), - }, - [2468] = { - [anon_sym_RBRACE] = ACTIONS(6346), - [sym_comment] = ACTIONS(56), - }, - [2469] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3088), - [anon_sym_RBRACE] = ACTIONS(6348), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2470] = { - [sym__concat] = ACTIONS(3357), - [sym_variable_name] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(4622), - [anon_sym_PIPE_AMP] = ACTIONS(3357), - [anon_sym_AMP_AMP] = ACTIONS(3357), - [anon_sym_PIPE_PIPE] = ACTIONS(3357), - [sym__special_characters] = ACTIONS(4622), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_DOLLAR] = ACTIONS(4622), - [sym_raw_string] = ACTIONS(3357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), - [anon_sym_BQUOTE] = ACTIONS(3357), - [anon_sym_LT_LPAREN] = ACTIONS(3357), - [anon_sym_GT_LPAREN] = ACTIONS(3357), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4622), - [sym_word] = ACTIONS(3359), - }, - [2471] = { - [sym_concatenation] = STATE(3091), - [sym_string] = STATE(3090), - [sym_simple_expansion] = STATE(3090), - [sym_string_expansion] = STATE(3090), - [sym_expansion] = STATE(3090), - [sym_command_substitution] = STATE(3090), - [sym_process_substitution] = STATE(3090), - [anon_sym_RBRACE] = ACTIONS(6346), - [sym__special_characters] = ACTIONS(6350), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(6352), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6354), - }, - [2472] = { - [sym__concat] = ACTIONS(3402), - [sym_variable_name] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(4630), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(4630), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(4630), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4630), - [sym_word] = ACTIONS(3404), - }, - [2473] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6356), - }, - [2474] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6358), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2475] = { - [sym__concat] = ACTIONS(3410), - [sym_variable_name] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(4636), - [anon_sym_PIPE_AMP] = ACTIONS(3410), - [anon_sym_AMP_AMP] = ACTIONS(3410), - [anon_sym_PIPE_PIPE] = ACTIONS(3410), - [sym__special_characters] = ACTIONS(4636), - [anon_sym_DQUOTE] = ACTIONS(3410), - [anon_sym_DOLLAR] = ACTIONS(4636), - [sym_raw_string] = ACTIONS(3410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), - [anon_sym_BQUOTE] = ACTIONS(3410), - [anon_sym_LT_LPAREN] = ACTIONS(3410), - [anon_sym_GT_LPAREN] = ACTIONS(3410), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4636), - [sym_word] = ACTIONS(3412), - }, - [2476] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6360), - }, - [2477] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6362), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2478] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6364), - }, - [2479] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6346), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2480] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3098), - [anon_sym_RBRACE] = ACTIONS(6366), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2481] = { - [sym__concat] = ACTIONS(3422), - [sym_variable_name] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(4646), - [anon_sym_PIPE_AMP] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [sym__special_characters] = ACTIONS(4646), - [anon_sym_DQUOTE] = ACTIONS(3422), - [anon_sym_DOLLAR] = ACTIONS(4646), - [sym_raw_string] = ACTIONS(3422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), - [anon_sym_BQUOTE] = ACTIONS(3422), - [anon_sym_LT_LPAREN] = ACTIONS(3422), - [anon_sym_GT_LPAREN] = ACTIONS(3422), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4646), - [sym_word] = ACTIONS(3424), - }, - [2482] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3100), - [anon_sym_RBRACE] = ACTIONS(6368), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2483] = { - [sym__concat] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(4614), - [anon_sym_PIPE_AMP] = ACTIONS(3293), - [anon_sym_AMP_AMP] = ACTIONS(3293), - [anon_sym_PIPE_PIPE] = ACTIONS(3293), - [sym__special_characters] = ACTIONS(4614), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_DOLLAR] = ACTIONS(4614), - [sym_raw_string] = ACTIONS(3293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), - [anon_sym_BQUOTE] = ACTIONS(3293), - [anon_sym_LT_LPAREN] = ACTIONS(3293), - [anon_sym_GT_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4614), - [sym_word] = ACTIONS(3295), - }, - [2484] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6370), - [sym_comment] = ACTIONS(56), - }, - [2485] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6372), - [sym_comment] = ACTIONS(56), - }, - [2486] = { - [anon_sym_RBRACE] = ACTIONS(6372), - [sym_comment] = ACTIONS(56), - }, - [2487] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3104), - [anon_sym_RBRACE] = ACTIONS(6374), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2488] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(4622), - [anon_sym_PIPE_AMP] = ACTIONS(3357), - [anon_sym_AMP_AMP] = ACTIONS(3357), - [anon_sym_PIPE_PIPE] = ACTIONS(3357), - [sym__special_characters] = ACTIONS(4622), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_DOLLAR] = ACTIONS(4622), - [sym_raw_string] = ACTIONS(3357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), - [anon_sym_BQUOTE] = ACTIONS(3357), - [anon_sym_LT_LPAREN] = ACTIONS(3357), - [anon_sym_GT_LPAREN] = ACTIONS(3357), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4622), - [sym_word] = ACTIONS(3359), - }, - [2489] = { - [sym_concatenation] = STATE(3107), - [sym_string] = STATE(3106), - [sym_simple_expansion] = STATE(3106), - [sym_string_expansion] = STATE(3106), - [sym_expansion] = STATE(3106), - [sym_command_substitution] = STATE(3106), - [sym_process_substitution] = STATE(3106), - [anon_sym_RBRACE] = ACTIONS(6372), - [sym__special_characters] = ACTIONS(6376), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(6378), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6380), - }, - [2490] = { - [sym__concat] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(4630), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(4630), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(4630), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4630), - [sym_word] = ACTIONS(3404), - }, - [2491] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6382), - }, - [2492] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6384), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2493] = { - [sym__concat] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(4636), - [anon_sym_PIPE_AMP] = ACTIONS(3410), - [anon_sym_AMP_AMP] = ACTIONS(3410), - [anon_sym_PIPE_PIPE] = ACTIONS(3410), - [sym__special_characters] = ACTIONS(4636), - [anon_sym_DQUOTE] = ACTIONS(3410), - [anon_sym_DOLLAR] = ACTIONS(4636), - [sym_raw_string] = ACTIONS(3410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), - [anon_sym_BQUOTE] = ACTIONS(3410), - [anon_sym_LT_LPAREN] = ACTIONS(3410), - [anon_sym_GT_LPAREN] = ACTIONS(3410), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4636), - [sym_word] = ACTIONS(3412), - }, - [2494] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6386), - }, - [2495] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6388), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2496] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6390), - }, - [2497] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6372), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2498] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3114), - [anon_sym_RBRACE] = ACTIONS(6392), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2499] = { - [sym__concat] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(4646), - [anon_sym_PIPE_AMP] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [sym__special_characters] = ACTIONS(4646), - [anon_sym_DQUOTE] = ACTIONS(3422), - [anon_sym_DOLLAR] = ACTIONS(4646), - [sym_raw_string] = ACTIONS(3422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), - [anon_sym_BQUOTE] = ACTIONS(3422), - [anon_sym_LT_LPAREN] = ACTIONS(3422), - [anon_sym_GT_LPAREN] = ACTIONS(3422), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4646), - [sym_word] = ACTIONS(3424), - }, - [2500] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3116), - [anon_sym_RBRACE] = ACTIONS(6394), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2501] = { - [sym_file_descriptor] = ACTIONS(4802), - [sym__concat] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_PIPE_AMP] = ACTIONS(4802), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [anon_sym_EQ_TILDE] = ACTIONS(5860), - [anon_sym_EQ_EQ] = ACTIONS(5860), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_GT_GT] = ACTIONS(4802), - [anon_sym_AMP_GT] = ACTIONS(5860), - [anon_sym_AMP_GT_GT] = ACTIONS(4802), - [anon_sym_LT_AMP] = ACTIONS(4802), - [anon_sym_GT_AMP] = ACTIONS(4802), - [anon_sym_LT_LT] = ACTIONS(5860), - [anon_sym_LT_LT_DASH] = ACTIONS(4802), - [anon_sym_LT_LT_LT] = ACTIONS(4802), - [sym__special_characters] = ACTIONS(5860), - [anon_sym_DQUOTE] = ACTIONS(4802), - [anon_sym_DOLLAR] = ACTIONS(5860), - [sym_raw_string] = ACTIONS(4802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), - [anon_sym_BQUOTE] = ACTIONS(4802), - [anon_sym_LT_LPAREN] = ACTIONS(4802), - [anon_sym_GT_LPAREN] = ACTIONS(4802), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4804), - }, - [2502] = { - [sym_file_descriptor] = ACTIONS(4808), - [sym__concat] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_PIPE_AMP] = ACTIONS(4808), - [anon_sym_AMP_AMP] = ACTIONS(4808), - [anon_sym_PIPE_PIPE] = ACTIONS(4808), - [anon_sym_EQ_TILDE] = ACTIONS(5862), - [anon_sym_EQ_EQ] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5862), - [anon_sym_GT] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(4808), - [anon_sym_AMP_GT] = ACTIONS(5862), - [anon_sym_AMP_GT_GT] = ACTIONS(4808), - [anon_sym_LT_AMP] = ACTIONS(4808), - [anon_sym_GT_AMP] = ACTIONS(4808), - [anon_sym_LT_LT] = ACTIONS(5862), - [anon_sym_LT_LT_DASH] = ACTIONS(4808), - [anon_sym_LT_LT_LT] = ACTIONS(4808), - [sym__special_characters] = ACTIONS(5862), - [anon_sym_DQUOTE] = ACTIONS(4808), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4808), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), - [anon_sym_BQUOTE] = ACTIONS(4808), - [anon_sym_LT_LPAREN] = ACTIONS(4808), - [anon_sym_GT_LPAREN] = ACTIONS(4808), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4810), - }, - [2503] = { - [sym_file_descriptor] = ACTIONS(4871), - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_PIPE_AMP] = ACTIONS(4871), - [anon_sym_AMP_AMP] = ACTIONS(4871), - [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [anon_sym_EQ_TILDE] = ACTIONS(5864), - [anon_sym_EQ_EQ] = ACTIONS(5864), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_GT_GT] = ACTIONS(4871), - [anon_sym_AMP_GT] = ACTIONS(5864), - [anon_sym_AMP_GT_GT] = ACTIONS(4871), - [anon_sym_LT_AMP] = ACTIONS(4871), - [anon_sym_GT_AMP] = ACTIONS(4871), - [anon_sym_LT_LT] = ACTIONS(5864), - [anon_sym_LT_LT_DASH] = ACTIONS(4871), - [anon_sym_LT_LT_LT] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(5864), - [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5864), - [sym_raw_string] = ACTIONS(4871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), - [anon_sym_BQUOTE] = ACTIONS(4871), - [anon_sym_LT_LPAREN] = ACTIONS(4871), - [anon_sym_GT_LPAREN] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4873), - }, - [2504] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6396), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2505] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6398), - [sym_comment] = ACTIONS(56), - }, - [2506] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6400), - [sym_comment] = ACTIONS(56), - }, - [2507] = { - [anon_sym_RBRACE] = ACTIONS(6400), - [sym_comment] = ACTIONS(56), - }, - [2508] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3121), - [anon_sym_RBRACE] = ACTIONS(6402), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2509] = { - [sym_file_descriptor] = ACTIONS(4883), - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5874), - [anon_sym_PIPE_AMP] = ACTIONS(4883), - [anon_sym_AMP_AMP] = ACTIONS(4883), - [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [anon_sym_EQ_TILDE] = ACTIONS(5874), - [anon_sym_EQ_EQ] = ACTIONS(5874), - [anon_sym_LT] = ACTIONS(5874), - [anon_sym_GT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(4883), - [anon_sym_AMP_GT] = ACTIONS(5874), - [anon_sym_AMP_GT_GT] = ACTIONS(4883), - [anon_sym_LT_AMP] = ACTIONS(4883), - [anon_sym_GT_AMP] = ACTIONS(4883), - [anon_sym_LT_LT] = ACTIONS(5874), - [anon_sym_LT_LT_DASH] = ACTIONS(4883), - [anon_sym_LT_LT_LT] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(5874), - [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5874), - [sym_raw_string] = ACTIONS(4883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(4883), - [anon_sym_LT_LPAREN] = ACTIONS(4883), - [anon_sym_GT_LPAREN] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4885), - }, - [2510] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3123), - [anon_sym_RBRACE] = ACTIONS(6404), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2511] = { - [sym_file_descriptor] = ACTIONS(4889), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5878), - [anon_sym_PIPE_AMP] = ACTIONS(4889), - [anon_sym_AMP_AMP] = ACTIONS(4889), - [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [anon_sym_EQ_TILDE] = ACTIONS(5878), - [anon_sym_EQ_EQ] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(5878), - [anon_sym_GT] = ACTIONS(5878), - [anon_sym_GT_GT] = ACTIONS(4889), - [anon_sym_AMP_GT] = ACTIONS(5878), - [anon_sym_AMP_GT_GT] = ACTIONS(4889), - [anon_sym_LT_AMP] = ACTIONS(4889), - [anon_sym_GT_AMP] = ACTIONS(4889), - [anon_sym_LT_LT] = ACTIONS(5878), - [anon_sym_LT_LT_DASH] = ACTIONS(4889), - [anon_sym_LT_LT_LT] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(5878), - [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5878), - [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(56), - [sym_word] = ACTIONS(4891), - }, - [2512] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3125), - [anon_sym_RBRACE] = ACTIONS(6406), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2513] = { - [sym_file_descriptor] = ACTIONS(4895), - [sym__concat] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(5882), - [anon_sym_PIPE_AMP] = ACTIONS(4895), - [anon_sym_AMP_AMP] = ACTIONS(4895), - [anon_sym_PIPE_PIPE] = ACTIONS(4895), - [anon_sym_EQ_TILDE] = ACTIONS(5882), - [anon_sym_EQ_EQ] = ACTIONS(5882), - [anon_sym_LT] = ACTIONS(5882), - [anon_sym_GT] = ACTIONS(5882), - [anon_sym_GT_GT] = ACTIONS(4895), - [anon_sym_AMP_GT] = ACTIONS(5882), - [anon_sym_AMP_GT_GT] = ACTIONS(4895), - [anon_sym_LT_AMP] = ACTIONS(4895), - [anon_sym_GT_AMP] = ACTIONS(4895), - [anon_sym_LT_LT] = ACTIONS(5882), - [anon_sym_LT_LT_DASH] = ACTIONS(4895), - [anon_sym_LT_LT_LT] = ACTIONS(4895), - [sym__special_characters] = ACTIONS(5882), - [anon_sym_DQUOTE] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(5882), - [sym_raw_string] = ACTIONS(4895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), - [anon_sym_BQUOTE] = ACTIONS(4895), - [anon_sym_LT_LPAREN] = ACTIONS(4895), - [anon_sym_GT_LPAREN] = ACTIONS(4895), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4897), - }, - [2514] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6408), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2515] = { - [sym_file_descriptor] = ACTIONS(4901), - [sym__concat] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(5886), - [anon_sym_PIPE_AMP] = ACTIONS(4901), - [anon_sym_AMP_AMP] = ACTIONS(4901), - [anon_sym_PIPE_PIPE] = ACTIONS(4901), - [anon_sym_EQ_TILDE] = ACTIONS(5886), - [anon_sym_EQ_EQ] = ACTIONS(5886), - [anon_sym_LT] = ACTIONS(5886), - [anon_sym_GT] = ACTIONS(5886), - [anon_sym_GT_GT] = ACTIONS(4901), - [anon_sym_AMP_GT] = ACTIONS(5886), - [anon_sym_AMP_GT_GT] = ACTIONS(4901), - [anon_sym_LT_AMP] = ACTIONS(4901), - [anon_sym_GT_AMP] = ACTIONS(4901), - [anon_sym_LT_LT] = ACTIONS(5886), - [anon_sym_LT_LT_DASH] = ACTIONS(4901), - [anon_sym_LT_LT_LT] = ACTIONS(4901), - [sym__special_characters] = ACTIONS(5886), - [anon_sym_DQUOTE] = ACTIONS(4901), - [anon_sym_DOLLAR] = ACTIONS(5886), - [sym_raw_string] = ACTIONS(4901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), - [anon_sym_BQUOTE] = ACTIONS(4901), - [anon_sym_LT_LPAREN] = ACTIONS(4901), - [anon_sym_GT_LPAREN] = ACTIONS(4901), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4903), - }, - [2516] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6410), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2517] = { - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_GT_GT] = ACTIONS(1890), - [anon_sym_AMP_GT] = ACTIONS(3066), - [anon_sym_AMP_GT_GT] = ACTIONS(1890), - [anon_sym_LT_AMP] = ACTIONS(1890), - [anon_sym_GT_AMP] = ACTIONS(1890), - [anon_sym_LT_LT] = ACTIONS(3066), - [anon_sym_LT_LT_DASH] = ACTIONS(1890), - [anon_sym_LT_LT_LT] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - }, - [2518] = { - [aux_sym_concatenation_repeat1] = STATE(2518), - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(6412), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_GT_GT] = ACTIONS(1890), - [anon_sym_AMP_GT] = ACTIONS(3066), - [anon_sym_AMP_GT_GT] = ACTIONS(1890), - [anon_sym_LT_AMP] = ACTIONS(1890), - [anon_sym_GT_AMP] = ACTIONS(1890), - [anon_sym_LT_LT] = ACTIONS(3066), - [anon_sym_LT_LT_DASH] = ACTIONS(1890), - [anon_sym_LT_LT_LT] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - }, - [2519] = { - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(1927), - [anon_sym_AMP_GT] = ACTIONS(3071), - [anon_sym_AMP_GT_GT] = ACTIONS(1927), - [anon_sym_LT_AMP] = ACTIONS(1927), - [anon_sym_GT_AMP] = ACTIONS(1927), - [anon_sym_LT_LT] = ACTIONS(3071), - [anon_sym_LT_LT_DASH] = ACTIONS(1927), - [anon_sym_LT_LT_LT] = ACTIONS(1927), - [anon_sym_BQUOTE] = ACTIONS(1927), - [sym_comment] = ACTIONS(56), - }, - [2520] = { - [sym_concatenation] = STATE(3131), - [sym_string] = STATE(3130), - [sym_simple_expansion] = STATE(3130), - [sym_string_expansion] = STATE(3130), - [sym_expansion] = STATE(3130), - [sym_command_substitution] = STATE(3130), - [sym_process_substitution] = STATE(3130), - [anon_sym_RBRACE] = ACTIONS(6415), - [sym__special_characters] = ACTIONS(6417), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(6419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6421), - }, - [2521] = { - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_AMP_GT] = ACTIONS(3081), - [anon_sym_AMP_GT_GT] = ACTIONS(1972), - [anon_sym_LT_AMP] = ACTIONS(1972), - [anon_sym_GT_AMP] = ACTIONS(1972), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_LT_LT_DASH] = ACTIONS(1972), - [anon_sym_LT_LT_LT] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1972), - [sym_comment] = ACTIONS(56), - }, - [2522] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6423), - }, - [2523] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6425), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2524] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(6427), - [sym_comment] = ACTIONS(56), - }, - [2525] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3137), - [anon_sym_RBRACE] = ACTIONS(6429), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6431), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2526] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3140), - [anon_sym_RBRACE] = ACTIONS(6433), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6435), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2527] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3142), - [anon_sym_RBRACE] = ACTIONS(6415), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6437), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2528] = { - [sym_file_descriptor] = ACTIONS(2026), - [sym__concat] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PIPE_AMP] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_LT] = ACTIONS(3099), - [anon_sym_GT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(2026), - [anon_sym_AMP_GT] = ACTIONS(3099), - [anon_sym_AMP_GT_GT] = ACTIONS(2026), - [anon_sym_LT_AMP] = ACTIONS(2026), - [anon_sym_GT_AMP] = ACTIONS(2026), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_LT_LT_DASH] = ACTIONS(2026), - [anon_sym_LT_LT_LT] = ACTIONS(2026), - [anon_sym_BQUOTE] = ACTIONS(2026), - [sym_comment] = ACTIONS(56), - }, - [2529] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6439), - }, - [2530] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6441), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2531] = { - [sym_file_descriptor] = ACTIONS(2034), - [sym__concat] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_PIPE_AMP] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_AMP_GT] = ACTIONS(3105), - [anon_sym_AMP_GT_GT] = ACTIONS(2034), - [anon_sym_LT_AMP] = ACTIONS(2034), - [anon_sym_GT_AMP] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(3105), - [anon_sym_LT_LT_DASH] = ACTIONS(2034), - [anon_sym_LT_LT_LT] = ACTIONS(2034), - [anon_sym_BQUOTE] = ACTIONS(2034), - [sym_comment] = ACTIONS(56), - }, - [2532] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6443), - }, - [2533] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6415), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2534] = { - [sym_file_descriptor] = ACTIONS(2196), - [sym__concat] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_PIPE_AMP] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_GT_GT] = ACTIONS(2196), - [anon_sym_AMP_GT] = ACTIONS(3109), - [anon_sym_AMP_GT_GT] = ACTIONS(2196), - [anon_sym_LT_AMP] = ACTIONS(2196), - [anon_sym_GT_AMP] = ACTIONS(2196), - [anon_sym_LT_LT] = ACTIONS(3109), - [anon_sym_LT_LT_DASH] = ACTIONS(2196), - [anon_sym_LT_LT_LT] = ACTIONS(2196), - [anon_sym_BQUOTE] = ACTIONS(2196), - [sym_comment] = ACTIONS(56), - }, - [2535] = { - [sym_file_descriptor] = ACTIONS(2402), - [sym__concat] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_PIPE_AMP] = ACTIONS(2402), - [anon_sym_AMP_AMP] = ACTIONS(2402), - [anon_sym_PIPE_PIPE] = ACTIONS(2402), - [anon_sym_LT] = ACTIONS(3111), - [anon_sym_GT] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(2402), - [anon_sym_AMP_GT] = ACTIONS(3111), - [anon_sym_AMP_GT_GT] = ACTIONS(2402), - [anon_sym_LT_AMP] = ACTIONS(2402), - [anon_sym_GT_AMP] = ACTIONS(2402), - [anon_sym_LT_LT] = ACTIONS(3111), - [anon_sym_LT_LT_DASH] = ACTIONS(2402), - [anon_sym_LT_LT_LT] = ACTIONS(2402), - [anon_sym_BQUOTE] = ACTIONS(2402), - [sym_comment] = ACTIONS(56), - }, - [2536] = { - [sym_file_descriptor] = ACTIONS(3293), - [sym__concat] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_SEMI_SEMI] = ACTIONS(3295), - [anon_sym_PIPE_AMP] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_GT_GT] = ACTIONS(3295), - [anon_sym_AMP_GT] = ACTIONS(3295), - [anon_sym_AMP_GT_GT] = ACTIONS(3295), - [anon_sym_LT_AMP] = ACTIONS(3295), - [anon_sym_GT_AMP] = ACTIONS(3295), - [anon_sym_LT_LT] = ACTIONS(3295), - [anon_sym_LT_LT_DASH] = ACTIONS(3295), - [anon_sym_LT_LT_LT] = ACTIONS(3295), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - }, - [2537] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6445), - [sym_comment] = ACTIONS(56), - }, - [2538] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6447), - [sym_comment] = ACTIONS(56), - }, - [2539] = { - [anon_sym_RBRACE] = ACTIONS(6447), - [sym_comment] = ACTIONS(56), - }, - [2540] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3149), - [anon_sym_RBRACE] = ACTIONS(6449), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2541] = { - [sym_file_descriptor] = ACTIONS(3357), - [sym__concat] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_PIPE_AMP] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_GT_GT] = ACTIONS(3359), - [anon_sym_AMP_GT] = ACTIONS(3359), - [anon_sym_AMP_GT_GT] = ACTIONS(3359), - [anon_sym_LT_AMP] = ACTIONS(3359), - [anon_sym_GT_AMP] = ACTIONS(3359), - [anon_sym_LT_LT] = ACTIONS(3359), - [anon_sym_LT_LT_DASH] = ACTIONS(3359), - [anon_sym_LT_LT_LT] = ACTIONS(3359), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - }, - [2542] = { - [sym_concatenation] = STATE(3152), - [sym_string] = STATE(3151), - [sym_simple_expansion] = STATE(3151), - [sym_string_expansion] = STATE(3151), - [sym_expansion] = STATE(3151), - [sym_command_substitution] = STATE(3151), - [sym_process_substitution] = STATE(3151), - [anon_sym_RBRACE] = ACTIONS(6447), - [sym__special_characters] = ACTIONS(6451), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(6453), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6455), - }, - [2543] = { - [sym_file_descriptor] = ACTIONS(3402), - [sym__concat] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_SEMI_SEMI] = ACTIONS(3404), - [anon_sym_PIPE_AMP] = ACTIONS(3404), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3404), - [anon_sym_LT] = ACTIONS(3404), - [anon_sym_GT] = ACTIONS(3404), - [anon_sym_GT_GT] = ACTIONS(3404), - [anon_sym_AMP_GT] = ACTIONS(3404), - [anon_sym_AMP_GT_GT] = ACTIONS(3404), - [anon_sym_LT_AMP] = ACTIONS(3404), - [anon_sym_GT_AMP] = ACTIONS(3404), - [anon_sym_LT_LT] = ACTIONS(3404), - [anon_sym_LT_LT_DASH] = ACTIONS(3404), - [anon_sym_LT_LT_LT] = ACTIONS(3404), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - }, - [2544] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6457), - }, - [2545] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6459), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2546] = { - [sym_file_descriptor] = ACTIONS(3410), - [sym__concat] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [anon_sym_LT] = ACTIONS(3412), - [anon_sym_GT] = ACTIONS(3412), - [anon_sym_GT_GT] = ACTIONS(3412), - [anon_sym_AMP_GT] = ACTIONS(3412), - [anon_sym_AMP_GT_GT] = ACTIONS(3412), - [anon_sym_LT_AMP] = ACTIONS(3412), - [anon_sym_GT_AMP] = ACTIONS(3412), - [anon_sym_LT_LT] = ACTIONS(3412), - [anon_sym_LT_LT_DASH] = ACTIONS(3412), - [anon_sym_LT_LT_LT] = ACTIONS(3412), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - }, - [2547] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6461), - }, - [2548] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6463), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2549] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6465), - }, - [2550] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6447), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2551] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3159), - [anon_sym_RBRACE] = ACTIONS(6467), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2552] = { - [sym_file_descriptor] = ACTIONS(3422), - [sym__concat] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_SEMI_SEMI] = ACTIONS(3424), - [anon_sym_PIPE_AMP] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_PIPE_PIPE] = ACTIONS(3424), - [anon_sym_LT] = ACTIONS(3424), - [anon_sym_GT] = ACTIONS(3424), - [anon_sym_GT_GT] = ACTIONS(3424), - [anon_sym_AMP_GT] = ACTIONS(3424), - [anon_sym_AMP_GT_GT] = ACTIONS(3424), - [anon_sym_LT_AMP] = ACTIONS(3424), - [anon_sym_GT_AMP] = ACTIONS(3424), - [anon_sym_LT_LT] = ACTIONS(3424), - [anon_sym_LT_LT_DASH] = ACTIONS(3424), - [anon_sym_LT_LT_LT] = ACTIONS(3424), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - }, - [2553] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3161), - [anon_sym_RBRACE] = ACTIONS(6469), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2554] = { - [sym_concatenation] = STATE(3165), - [sym_string] = STATE(3164), - [sym_simple_expansion] = STATE(3164), - [sym_string_expansion] = STATE(3164), - [sym_expansion] = STATE(3164), - [sym_command_substitution] = STATE(3164), - [sym_process_substitution] = STATE(3164), - [anon_sym_RBRACE] = ACTIONS(6471), - [sym__special_characters] = ACTIONS(6473), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(6475), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6477), - }, - [2555] = { - [sym__heredoc_middle] = ACTIONS(1972), - [sym__heredoc_end] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(3081), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), - [sym_comment] = ACTIONS(56), - }, - [2556] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6479), - }, - [2557] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6481), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2558] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(6483), - [sym_comment] = ACTIONS(56), - }, - [2559] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3171), - [anon_sym_RBRACE] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6487), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2560] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3174), - [anon_sym_RBRACE] = ACTIONS(6489), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6491), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2561] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3176), - [anon_sym_RBRACE] = ACTIONS(6471), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6493), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2562] = { - [sym__heredoc_middle] = ACTIONS(2026), - [sym__heredoc_end] = ACTIONS(2026), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), - [sym_comment] = ACTIONS(56), - }, - [2563] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6495), - }, - [2564] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6497), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2565] = { - [sym__heredoc_middle] = ACTIONS(2034), - [sym__heredoc_end] = ACTIONS(2034), - [anon_sym_DOLLAR] = ACTIONS(3105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), - [sym_comment] = ACTIONS(56), - }, - [2566] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6499), - }, - [2567] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6471), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2568] = { - [sym__concat] = ACTIONS(4802), - [anon_sym_RBRACK] = ACTIONS(4802), - [sym_comment] = ACTIONS(56), - }, - [2569] = { - [sym__concat] = ACTIONS(4808), - [anon_sym_RBRACK] = ACTIONS(4808), - [sym_comment] = ACTIONS(56), - }, - [2570] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_RBRACK] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - }, - [2571] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6501), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2572] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6503), - [sym_comment] = ACTIONS(56), - }, - [2573] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6505), - [sym_comment] = ACTIONS(56), - }, - [2574] = { - [anon_sym_RBRACE] = ACTIONS(6505), - [sym_comment] = ACTIONS(56), - }, - [2575] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3184), - [anon_sym_RBRACE] = ACTIONS(6507), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2576] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_RBRACK] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - }, - [2577] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3186), - [anon_sym_RBRACE] = ACTIONS(6509), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2578] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_RBRACK] = ACTIONS(4889), - [sym_comment] = ACTIONS(56), - }, - [2579] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3188), - [anon_sym_RBRACE] = ACTIONS(6511), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2580] = { - [sym__concat] = ACTIONS(4895), - [anon_sym_RBRACK] = ACTIONS(4895), - [sym_comment] = ACTIONS(56), - }, - [2581] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6513), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2582] = { - [sym__concat] = ACTIONS(4901), - [anon_sym_RBRACK] = ACTIONS(4901), - [sym_comment] = ACTIONS(56), - }, - [2583] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6515), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2584] = { - [sym__concat] = ACTIONS(3293), - [anon_sym_RPAREN] = ACTIONS(3293), - [sym__special_characters] = ACTIONS(4614), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_DOLLAR] = ACTIONS(4614), - [sym_raw_string] = ACTIONS(3293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), - [anon_sym_BQUOTE] = ACTIONS(3293), - [anon_sym_LT_LPAREN] = ACTIONS(3293), - [anon_sym_GT_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4614), - }, - [2585] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6517), - [sym_comment] = ACTIONS(56), - }, - [2586] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6519), - [sym_comment] = ACTIONS(56), - }, - [2587] = { - [anon_sym_RBRACE] = ACTIONS(6519), - [sym_comment] = ACTIONS(56), - }, - [2588] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3194), - [anon_sym_RBRACE] = ACTIONS(6521), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2589] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_RPAREN] = ACTIONS(3357), - [sym__special_characters] = ACTIONS(4622), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_DOLLAR] = ACTIONS(4622), - [sym_raw_string] = ACTIONS(3357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), - [anon_sym_BQUOTE] = ACTIONS(3357), - [anon_sym_LT_LPAREN] = ACTIONS(3357), - [anon_sym_GT_LPAREN] = ACTIONS(3357), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4622), - }, - [2590] = { - [sym_concatenation] = STATE(3197), - [sym_string] = STATE(3196), - [sym_simple_expansion] = STATE(3196), - [sym_string_expansion] = STATE(3196), - [sym_expansion] = STATE(3196), - [sym_command_substitution] = STATE(3196), - [sym_process_substitution] = STATE(3196), - [anon_sym_RBRACE] = ACTIONS(6519), - [sym__special_characters] = ACTIONS(6523), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(6525), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6527), - }, - [2591] = { - [sym__concat] = ACTIONS(3402), - [anon_sym_RPAREN] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(4630), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(4630), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4630), - }, - [2592] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6529), - }, - [2593] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6531), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2594] = { - [sym__concat] = ACTIONS(3410), - [anon_sym_RPAREN] = ACTIONS(3410), - [sym__special_characters] = ACTIONS(4636), - [anon_sym_DQUOTE] = ACTIONS(3410), - [anon_sym_DOLLAR] = ACTIONS(4636), - [sym_raw_string] = ACTIONS(3410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), - [anon_sym_BQUOTE] = ACTIONS(3410), - [anon_sym_LT_LPAREN] = ACTIONS(3410), - [anon_sym_GT_LPAREN] = ACTIONS(3410), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4636), - }, - [2595] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6533), - }, - [2596] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6535), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2597] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6537), - }, - [2598] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6519), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2599] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3204), - [anon_sym_RBRACE] = ACTIONS(6539), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2600] = { - [sym__concat] = ACTIONS(3422), - [anon_sym_RPAREN] = ACTIONS(3422), - [sym__special_characters] = ACTIONS(4646), - [anon_sym_DQUOTE] = ACTIONS(3422), - [anon_sym_DOLLAR] = ACTIONS(4646), - [sym_raw_string] = ACTIONS(3422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), - [anon_sym_BQUOTE] = ACTIONS(3422), - [anon_sym_LT_LPAREN] = ACTIONS(3422), - [anon_sym_GT_LPAREN] = ACTIONS(3422), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4646), - }, - [2601] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3206), - [anon_sym_RBRACE] = ACTIONS(6541), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2602] = { - [sym_file_descriptor] = ACTIONS(4802), - [sym__concat] = ACTIONS(4802), - [sym_variable_name] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [anon_sym_PIPE_AMP] = ACTIONS(4804), - [anon_sym_AMP_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4804), - [anon_sym_LT] = ACTIONS(4804), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_GT_GT] = ACTIONS(4804), - [anon_sym_AMP_GT] = ACTIONS(4804), - [anon_sym_AMP_GT_GT] = ACTIONS(4804), - [anon_sym_LT_AMP] = ACTIONS(4804), - [anon_sym_GT_AMP] = ACTIONS(4804), - [sym__special_characters] = ACTIONS(4804), - [anon_sym_DQUOTE] = ACTIONS(4804), - [anon_sym_DOLLAR] = ACTIONS(4804), - [sym_raw_string] = ACTIONS(4804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), - [anon_sym_BQUOTE] = ACTIONS(4804), - [anon_sym_LT_LPAREN] = ACTIONS(4804), - [anon_sym_GT_LPAREN] = ACTIONS(4804), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4804), - [anon_sym_SEMI] = ACTIONS(4804), - [anon_sym_LF] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4804), - }, - [2603] = { - [sym_file_descriptor] = ACTIONS(4808), - [sym__concat] = ACTIONS(4808), - [sym_variable_name] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_SEMI_SEMI] = ACTIONS(4810), - [anon_sym_PIPE_AMP] = ACTIONS(4810), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [anon_sym_LT] = ACTIONS(4810), - [anon_sym_GT] = ACTIONS(4810), - [anon_sym_GT_GT] = ACTIONS(4810), - [anon_sym_AMP_GT] = ACTIONS(4810), - [anon_sym_AMP_GT_GT] = ACTIONS(4810), - [anon_sym_LT_AMP] = ACTIONS(4810), - [anon_sym_GT_AMP] = ACTIONS(4810), - [sym__special_characters] = ACTIONS(4810), - [anon_sym_DQUOTE] = ACTIONS(4810), - [anon_sym_DOLLAR] = ACTIONS(4810), - [sym_raw_string] = ACTIONS(4810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), - [anon_sym_BQUOTE] = ACTIONS(4810), - [anon_sym_LT_LPAREN] = ACTIONS(4810), - [anon_sym_GT_LPAREN] = ACTIONS(4810), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4810), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LF] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4810), - }, - [2604] = { - [sym_file_descriptor] = ACTIONS(4871), - [sym__concat] = ACTIONS(4871), - [sym_variable_name] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_GT_GT] = ACTIONS(4873), - [anon_sym_AMP_GT] = ACTIONS(4873), - [anon_sym_AMP_GT_GT] = ACTIONS(4873), - [anon_sym_LT_AMP] = ACTIONS(4873), - [anon_sym_GT_AMP] = ACTIONS(4873), - [sym__special_characters] = ACTIONS(4873), - [anon_sym_DQUOTE] = ACTIONS(4873), - [anon_sym_DOLLAR] = ACTIONS(4873), - [sym_raw_string] = ACTIONS(4873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), - [anon_sym_BQUOTE] = ACTIONS(4873), - [anon_sym_LT_LPAREN] = ACTIONS(4873), - [anon_sym_GT_LPAREN] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [2605] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6543), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2606] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6545), - [sym_comment] = ACTIONS(56), - }, - [2607] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6547), - [sym_comment] = ACTIONS(56), - }, - [2608] = { - [anon_sym_RBRACE] = ACTIONS(6547), - [sym_comment] = ACTIONS(56), - }, - [2609] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3211), - [anon_sym_RBRACE] = ACTIONS(6549), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2610] = { - [sym_file_descriptor] = ACTIONS(4883), - [sym__concat] = ACTIONS(4883), - [sym_variable_name] = ACTIONS(4883), - [anon_sym_PIPE] = 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(4885), - [anon_sym_GT] = ACTIONS(4885), - [anon_sym_GT_GT] = ACTIONS(4885), - [anon_sym_AMP_GT] = ACTIONS(4885), - [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(4885), - [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(182), - [sym_word] = ACTIONS(4885), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [2611] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3213), - [anon_sym_RBRACE] = ACTIONS(6551), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2612] = { - [sym_file_descriptor] = ACTIONS(4889), - [sym__concat] = ACTIONS(4889), - [sym_variable_name] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [anon_sym_LT] = ACTIONS(4891), - [anon_sym_GT] = ACTIONS(4891), - [anon_sym_GT_GT] = ACTIONS(4891), - [anon_sym_AMP_GT] = ACTIONS(4891), - [anon_sym_AMP_GT_GT] = ACTIONS(4891), - [anon_sym_LT_AMP] = ACTIONS(4891), - [anon_sym_GT_AMP] = ACTIONS(4891), - [sym__special_characters] = ACTIONS(4891), - [anon_sym_DQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR] = ACTIONS(4891), - [sym_raw_string] = ACTIONS(4891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), - [anon_sym_BQUOTE] = ACTIONS(4891), - [anon_sym_LT_LPAREN] = ACTIONS(4891), - [anon_sym_GT_LPAREN] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4891), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [2613] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3215), - [anon_sym_RBRACE] = ACTIONS(6553), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2614] = { - [sym_file_descriptor] = ACTIONS(4895), - [sym__concat] = ACTIONS(4895), - [sym_variable_name] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_SEMI_SEMI] = ACTIONS(4897), - [anon_sym_PIPE_AMP] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [anon_sym_LT] = ACTIONS(4897), - [anon_sym_GT] = ACTIONS(4897), - [anon_sym_GT_GT] = ACTIONS(4897), - [anon_sym_AMP_GT] = ACTIONS(4897), - [anon_sym_AMP_GT_GT] = ACTIONS(4897), - [anon_sym_LT_AMP] = ACTIONS(4897), - [anon_sym_GT_AMP] = ACTIONS(4897), - [sym__special_characters] = ACTIONS(4897), - [anon_sym_DQUOTE] = ACTIONS(4897), - [anon_sym_DOLLAR] = ACTIONS(4897), - [sym_raw_string] = ACTIONS(4897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), - [anon_sym_BQUOTE] = ACTIONS(4897), - [anon_sym_LT_LPAREN] = ACTIONS(4897), - [anon_sym_GT_LPAREN] = ACTIONS(4897), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4897), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LF] = ACTIONS(4897), - [anon_sym_AMP] = ACTIONS(4897), - }, - [2615] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6555), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2616] = { - [sym_file_descriptor] = ACTIONS(4901), - [sym__concat] = ACTIONS(4901), - [sym_variable_name] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(4903), - [anon_sym_SEMI_SEMI] = ACTIONS(4903), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [anon_sym_LT] = ACTIONS(4903), - [anon_sym_GT] = ACTIONS(4903), - [anon_sym_GT_GT] = ACTIONS(4903), - [anon_sym_AMP_GT] = ACTIONS(4903), - [anon_sym_AMP_GT_GT] = ACTIONS(4903), - [anon_sym_LT_AMP] = ACTIONS(4903), - [anon_sym_GT_AMP] = ACTIONS(4903), - [sym__special_characters] = ACTIONS(4903), - [anon_sym_DQUOTE] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4903), - [sym_raw_string] = ACTIONS(4903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), - [anon_sym_BQUOTE] = ACTIONS(4903), - [anon_sym_LT_LPAREN] = ACTIONS(4903), - [anon_sym_GT_LPAREN] = ACTIONS(4903), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4903), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LF] = ACTIONS(4903), - [anon_sym_AMP] = ACTIONS(4903), - }, - [2617] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6557), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2618] = { - [sym__concat] = ACTIONS(3293), - [anon_sym_SEMI_SEMI] = ACTIONS(3295), - [sym__special_characters] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_DOLLAR] = ACTIONS(3295), - [sym_raw_string] = ACTIONS(3295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), - [anon_sym_BQUOTE] = ACTIONS(3295), - [anon_sym_LT_LPAREN] = ACTIONS(3295), - [anon_sym_GT_LPAREN] = ACTIONS(3295), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - }, - [2619] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6559), - [sym_comment] = ACTIONS(56), - }, - [2620] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6561), - [sym_comment] = ACTIONS(56), - }, - [2621] = { - [anon_sym_RBRACE] = ACTIONS(6561), - [sym_comment] = ACTIONS(56), - }, - [2622] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3221), - [anon_sym_RBRACE] = ACTIONS(6563), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2623] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [sym__special_characters] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_DOLLAR] = ACTIONS(3359), - [sym_raw_string] = ACTIONS(3359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), - [anon_sym_BQUOTE] = ACTIONS(3359), - [anon_sym_LT_LPAREN] = ACTIONS(3359), - [anon_sym_GT_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - }, - [2624] = { - [sym_concatenation] = STATE(3224), - [sym_string] = STATE(3223), - [sym_simple_expansion] = STATE(3223), - [sym_string_expansion] = STATE(3223), - [sym_expansion] = STATE(3223), - [sym_command_substitution] = STATE(3223), - [sym_process_substitution] = STATE(3223), - [anon_sym_RBRACE] = ACTIONS(6561), - [sym__special_characters] = ACTIONS(6565), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(6567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6569), - }, - [2625] = { - [sym__concat] = ACTIONS(3402), - [anon_sym_SEMI_SEMI] = ACTIONS(3404), - [sym__special_characters] = ACTIONS(3404), - [anon_sym_DQUOTE] = ACTIONS(3404), - [anon_sym_DOLLAR] = ACTIONS(3404), - [sym_raw_string] = ACTIONS(3404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), - [anon_sym_BQUOTE] = ACTIONS(3404), - [anon_sym_LT_LPAREN] = ACTIONS(3404), - [anon_sym_GT_LPAREN] = ACTIONS(3404), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3404), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - }, - [2626] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6571), - }, - [2627] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6573), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2628] = { - [sym__concat] = ACTIONS(3410), - [anon_sym_SEMI_SEMI] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(3412), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3412), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - }, - [2629] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6575), - }, - [2630] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6577), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2631] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6579), - }, - [2632] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6561), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2633] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3231), - [anon_sym_RBRACE] = ACTIONS(6581), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2634] = { - [sym__concat] = ACTIONS(3422), - [anon_sym_SEMI_SEMI] = ACTIONS(3424), - [sym__special_characters] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [anon_sym_DOLLAR] = ACTIONS(3424), - [sym_raw_string] = ACTIONS(3424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), - [anon_sym_BQUOTE] = ACTIONS(3424), - [anon_sym_LT_LPAREN] = ACTIONS(3424), - [anon_sym_GT_LPAREN] = ACTIONS(3424), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - }, - [2635] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3233), - [anon_sym_RBRACE] = ACTIONS(6583), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2636] = { - [sym__terminated_statement] = STATE(702), - [sym_for_statement] = STATE(703), - [sym_while_statement] = STATE(703), - [sym_if_statement] = STATE(703), - [sym_case_statement] = STATE(703), - [sym_function_definition] = STATE(703), - [sym_subshell] = STATE(703), - [sym_pipeline] = STATE(703), - [sym_list] = STATE(703), - [sym_command] = STATE(703), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(703), - [sym_variable_assignment] = STATE(706), - [sym_declaration_command] = STATE(703), - [sym_unset_command] = STATE(703), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1326), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(6585), - [anon_sym_elif] = ACTIONS(6585), - [anon_sym_else] = ACTIONS(6585), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [2637] = { - [anon_sym_esac] = ACTIONS(6587), - [anon_sym_PIPE] = ACTIONS(6587), - [anon_sym_RPAREN] = ACTIONS(6587), - [anon_sym_SEMI_SEMI] = ACTIONS(6587), - [anon_sym_PIPE_AMP] = ACTIONS(6587), - [anon_sym_AMP_AMP] = ACTIONS(6587), - [anon_sym_PIPE_PIPE] = ACTIONS(6587), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6587), - [anon_sym_LF] = ACTIONS(6587), - [anon_sym_AMP] = ACTIONS(6587), - }, - [2638] = { - [sym__concat] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_RPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - }, - [2639] = { - [aux_sym_concatenation_repeat1] = STATE(1998), - [sym__concat] = ACTIONS(4330), - [anon_sym_PIPE] = ACTIONS(6589), - [anon_sym_RPAREN] = ACTIONS(6589), - [sym_comment] = ACTIONS(56), - }, - [2640] = { - [aux_sym_concatenation_repeat1] = STATE(1998), - [sym__concat] = ACTIONS(4330), - [anon_sym_PIPE] = ACTIONS(6591), - [anon_sym_RPAREN] = ACTIONS(6591), - [sym_comment] = ACTIONS(56), - }, - [2641] = { - [anon_sym_PIPE] = ACTIONS(6591), - [anon_sym_RPAREN] = ACTIONS(6591), - [sym_comment] = ACTIONS(56), - }, - [2642] = { - [sym__assignment] = STATE(3235), - [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(6593), - [anon_sym_PLUS_EQ] = ACTIONS(6593), - [sym_comment] = ACTIONS(56), - }, - [2643] = { - [sym__terminated_statement] = STATE(3236), - [sym_for_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_function_definition] = STATE(40), - [sym_subshell] = STATE(40), - [sym_pipeline] = STATE(40), - [sym_list] = STATE(40), - [sym_command] = STATE(40), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(40), - [sym_variable_assignment] = STATE(41), - [sym_declaration_command] = STATE(40), - [sym_unset_command] = STATE(40), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [2644] = { - [anon_sym_esac] = ACTIONS(6595), - [sym__special_characters] = ACTIONS(6597), - [anon_sym_DQUOTE] = ACTIONS(6599), - [anon_sym_DOLLAR] = ACTIONS(6597), - [sym_raw_string] = ACTIONS(6599), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6599), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6599), - [anon_sym_BQUOTE] = ACTIONS(6599), - [anon_sym_LT_LPAREN] = ACTIONS(6599), - [anon_sym_GT_LPAREN] = ACTIONS(6599), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6601), - }, - [2645] = { - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6603), - }, - [2646] = { - [sym_concatenation] = STATE(84), - [sym_string] = STATE(79), - [sym_simple_expansion] = STATE(79), - [sym_string_expansion] = STATE(79), - [sym_expansion] = STATE(79), - [sym_command_substitution] = STATE(79), - [sym_process_substitution] = STATE(79), - [aux_sym_command_repeat2] = STATE(3238), - [anon_sym_EQ_TILDE] = ACTIONS(122), - [anon_sym_EQ_EQ] = ACTIONS(122), - [sym__special_characters] = ACTIONS(124), - [anon_sym_DQUOTE] = ACTIONS(126), - [anon_sym_DOLLAR] = ACTIONS(128), - [sym_raw_string] = ACTIONS(130), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), - [anon_sym_BQUOTE] = ACTIONS(136), - [anon_sym_LT_LPAREN] = ACTIONS(138), - [anon_sym_GT_LPAREN] = ACTIONS(138), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(140), - }, - [2647] = { - [sym_concatenation] = STATE(95), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_string_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat2] = STATE(3239), - [anon_sym_EQ_TILDE] = ACTIONS(142), - [anon_sym_EQ_EQ] = ACTIONS(142), - [sym__special_characters] = ACTIONS(144), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(148), - [sym_raw_string] = ACTIONS(150), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(156), - [anon_sym_LT_LPAREN] = ACTIONS(158), - [anon_sym_GT_LPAREN] = ACTIONS(158), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(160), - }, - [2648] = { - [sym_variable_assignment] = STATE(3250), - [sym_subscript] = STATE(3251), - [sym_concatenation] = STATE(3250), - [sym_string] = STATE(3244), - [sym_simple_expansion] = STATE(3244), - [sym_string_expansion] = STATE(3244), - [sym_expansion] = STATE(3244), - [sym_command_substitution] = STATE(3244), - [sym_process_substitution] = STATE(3244), - [aux_sym_declaration_command_repeat1] = STATE(3252), - [sym_variable_name] = ACTIONS(6605), - [anon_sym_esac] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(164), - [anon_sym_SEMI_SEMI] = ACTIONS(164), - [anon_sym_PIPE_AMP] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(164), - [anon_sym_PIPE_PIPE] = ACTIONS(164), - [sym__special_characters] = ACTIONS(6607), - [anon_sym_DQUOTE] = ACTIONS(6609), - [anon_sym_DOLLAR] = ACTIONS(6611), - [sym_raw_string] = ACTIONS(6613), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6615), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6617), - [anon_sym_BQUOTE] = ACTIONS(6619), - [anon_sym_LT_LPAREN] = ACTIONS(6621), - [anon_sym_GT_LPAREN] = ACTIONS(6621), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6623), - [sym_word] = ACTIONS(6613), - [anon_sym_SEMI] = ACTIONS(164), - [anon_sym_LF] = ACTIONS(164), - [anon_sym_AMP] = ACTIONS(164), - }, - [2649] = { - [sym_concatenation] = STATE(3262), - [sym_string] = STATE(3256), - [sym_simple_expansion] = STATE(3256), - [sym_string_expansion] = STATE(3256), - [sym_expansion] = STATE(3256), - [sym_command_substitution] = STATE(3256), - [sym_process_substitution] = STATE(3256), - [aux_sym_unset_command_repeat1] = STATE(3263), - [anon_sym_esac] = ACTIONS(186), - [anon_sym_PIPE] = ACTIONS(186), - [anon_sym_SEMI_SEMI] = ACTIONS(186), - [anon_sym_PIPE_AMP] = ACTIONS(186), - [anon_sym_AMP_AMP] = ACTIONS(186), - [anon_sym_PIPE_PIPE] = ACTIONS(186), - [sym__special_characters] = ACTIONS(6625), - [anon_sym_DQUOTE] = ACTIONS(6627), - [anon_sym_DOLLAR] = ACTIONS(6629), - [sym_raw_string] = ACTIONS(6631), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6633), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6635), - [anon_sym_BQUOTE] = ACTIONS(6637), - [anon_sym_LT_LPAREN] = ACTIONS(6639), - [anon_sym_GT_LPAREN] = ACTIONS(6639), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6641), - [sym_word] = ACTIONS(6631), - [anon_sym_SEMI] = ACTIONS(186), - [anon_sym_LF] = ACTIONS(186), - [anon_sym_AMP] = ACTIONS(186), - }, - [2650] = { - [aux_sym_concatenation_repeat1] = STATE(3265), - [sym_file_descriptor] = ACTIONS(224), - [sym__concat] = ACTIONS(6643), - [anon_sym_esac] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_SEMI_SEMI] = ACTIONS(228), - [anon_sym_PIPE_AMP] = ACTIONS(228), - [anon_sym_AMP_AMP] = ACTIONS(228), - [anon_sym_PIPE_PIPE] = ACTIONS(228), - [anon_sym_EQ_TILDE] = ACTIONS(228), - [anon_sym_EQ_EQ] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(228), - [anon_sym_GT] = ACTIONS(228), - [anon_sym_GT_GT] = ACTIONS(228), - [anon_sym_AMP_GT] = ACTIONS(228), - [anon_sym_AMP_GT_GT] = ACTIONS(228), - [anon_sym_LT_AMP] = ACTIONS(228), - [anon_sym_GT_AMP] = ACTIONS(228), - [anon_sym_LT_LT] = ACTIONS(228), - [anon_sym_LT_LT_DASH] = ACTIONS(228), - [anon_sym_LT_LT_LT] = ACTIONS(228), - [sym__special_characters] = ACTIONS(228), - [anon_sym_DQUOTE] = ACTIONS(228), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym_raw_string] = ACTIONS(228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(228), - [anon_sym_BQUOTE] = ACTIONS(228), - [anon_sym_LT_LPAREN] = ACTIONS(228), - [anon_sym_GT_LPAREN] = ACTIONS(228), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(228), - [anon_sym_LF] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(228), - }, - [2651] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(3267), - [anon_sym_DQUOTE] = ACTIONS(6645), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [2652] = { - [sym_string] = STATE(3269), - [anon_sym_DQUOTE] = ACTIONS(5557), - [anon_sym_DOLLAR] = ACTIONS(6647), - [sym_raw_string] = ACTIONS(6649), - [anon_sym_POUND] = ACTIONS(6647), - [anon_sym_DASH] = ACTIONS(6647), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6651), - [anon_sym_STAR] = ACTIONS(6647), - [anon_sym_AT] = ACTIONS(6647), - [anon_sym_QMARK] = ACTIONS(6647), - [anon_sym_0] = ACTIONS(6653), - [anon_sym__] = ACTIONS(6653), - }, - [2653] = { - [aux_sym_concatenation_repeat1] = STATE(3265), - [sym_file_descriptor] = ACTIONS(250), - [sym__concat] = ACTIONS(6643), - [anon_sym_esac] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SEMI_SEMI] = ACTIONS(252), - [anon_sym_PIPE_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(252), - [anon_sym_AMP_GT] = ACTIONS(252), - [anon_sym_AMP_GT_GT] = ACTIONS(252), - [anon_sym_LT_AMP] = ACTIONS(252), - [anon_sym_GT_AMP] = ACTIONS(252), - [anon_sym_LT_LT] = ACTIONS(252), - [anon_sym_LT_LT_DASH] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [sym__special_characters] = ACTIONS(252), - [anon_sym_DQUOTE] = ACTIONS(252), - [anon_sym_DOLLAR] = ACTIONS(252), - [sym_raw_string] = ACTIONS(252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(252), - [anon_sym_LT_LPAREN] = ACTIONS(252), - [anon_sym_GT_LPAREN] = ACTIONS(252), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(252), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_LF] = ACTIONS(252), - [anon_sym_AMP] = ACTIONS(252), - }, - [2654] = { - [sym_subscript] = STATE(3275), - [sym_variable_name] = ACTIONS(6655), - [anon_sym_DOLLAR] = ACTIONS(6657), - [anon_sym_POUND] = ACTIONS(6659), - [anon_sym_DASH] = ACTIONS(6657), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6661), - [anon_sym_STAR] = ACTIONS(6657), - [anon_sym_AT] = ACTIONS(6657), - [anon_sym_QMARK] = ACTIONS(6657), - [anon_sym_0] = ACTIONS(6663), - [anon_sym__] = ACTIONS(6663), - }, - [2655] = { - [sym_for_statement] = STATE(3276), - [sym_while_statement] = STATE(3276), - [sym_if_statement] = STATE(3276), - [sym_case_statement] = STATE(3276), - [sym_function_definition] = STATE(3276), - [sym_subshell] = STATE(3276), - [sym_pipeline] = STATE(3276), - [sym_list] = STATE(3276), - [sym_command] = STATE(3276), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(3276), - [sym_variable_assignment] = STATE(3277), - [sym_declaration_command] = STATE(3276), - [sym_unset_command] = STATE(3276), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [2656] = { - [sym_for_statement] = STATE(3278), - [sym_while_statement] = STATE(3278), - [sym_if_statement] = STATE(3278), - [sym_case_statement] = STATE(3278), - [sym_function_definition] = STATE(3278), - [sym_subshell] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_list] = STATE(3278), - [sym_command] = STATE(3278), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(3278), - [sym_variable_assignment] = STATE(3279), - [sym_declaration_command] = STATE(3278), - [sym_unset_command] = STATE(3278), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [2657] = { - [sym_for_statement] = STATE(3280), - [sym_while_statement] = STATE(3280), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym_function_definition] = STATE(3280), - [sym_subshell] = STATE(3280), - [sym_pipeline] = STATE(3280), - [sym_list] = STATE(3280), - [sym_command] = STATE(3280), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(3280), - [sym_variable_assignment] = STATE(3281), - [sym_declaration_command] = STATE(3280), - [sym_unset_command] = STATE(3280), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [2658] = { - [aux_sym_concatenation_repeat1] = STATE(3265), - [sym_file_descriptor] = ACTIONS(250), - [sym__concat] = ACTIONS(6643), - [anon_sym_esac] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SEMI_SEMI] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(6665), - [anon_sym_PIPE_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(252), - [anon_sym_AMP_GT] = ACTIONS(252), - [anon_sym_AMP_GT_GT] = ACTIONS(252), - [anon_sym_LT_AMP] = ACTIONS(252), - [anon_sym_GT_AMP] = ACTIONS(252), - [anon_sym_LT_LT] = ACTIONS(252), - [anon_sym_LT_LT_DASH] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [sym__special_characters] = ACTIONS(252), - [anon_sym_DQUOTE] = ACTIONS(252), - [anon_sym_DOLLAR] = ACTIONS(252), - [sym_raw_string] = ACTIONS(252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(252), - [anon_sym_LT_LPAREN] = ACTIONS(252), - [anon_sym_GT_LPAREN] = ACTIONS(252), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(252), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_LF] = ACTIONS(252), - [anon_sym_AMP] = ACTIONS(252), - }, - [2659] = { - [sym_file_descriptor] = ACTIONS(340), - [sym_variable_name] = ACTIONS(340), - [anon_sym_for] = ACTIONS(342), - [anon_sym_while] = ACTIONS(342), - [anon_sym_if] = ACTIONS(342), - [anon_sym_case] = ACTIONS(342), - [anon_sym_esac] = ACTIONS(342), - [anon_sym_SEMI_SEMI] = ACTIONS(340), - [anon_sym_function] = ACTIONS(342), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_LBRACK] = ACTIONS(342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(340), - [anon_sym_declare] = ACTIONS(342), - [anon_sym_typeset] = ACTIONS(342), - [anon_sym_export] = ACTIONS(342), - [anon_sym_readonly] = ACTIONS(342), - [anon_sym_local] = ACTIONS(342), - [anon_sym_unset] = ACTIONS(342), - [anon_sym_unsetenv] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(340), - [anon_sym_AMP_GT] = ACTIONS(342), - [anon_sym_AMP_GT_GT] = ACTIONS(340), - [anon_sym_LT_AMP] = ACTIONS(340), - [anon_sym_GT_AMP] = ACTIONS(340), - [sym__special_characters] = ACTIONS(344), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(342), - [sym_raw_string] = ACTIONS(340), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(340), - [anon_sym_BQUOTE] = ACTIONS(340), - [anon_sym_LT_LPAREN] = ACTIONS(340), - [anon_sym_GT_LPAREN] = ACTIONS(340), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(344), - }, - [2660] = { - [anon_sym_esac] = ACTIONS(6667), - [anon_sym_PIPE] = ACTIONS(6669), - [anon_sym_SEMI_SEMI] = ACTIONS(6671), - [anon_sym_PIPE_AMP] = ACTIONS(6669), - [anon_sym_AMP_AMP] = ACTIONS(6673), - [anon_sym_PIPE_PIPE] = ACTIONS(6673), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6675), - [anon_sym_LF] = ACTIONS(6675), - [anon_sym_AMP] = ACTIONS(6675), - }, - [2661] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [sym_concatenation] = STATE(3293), - [sym_string] = STATE(3292), - [sym_simple_expansion] = STATE(3292), - [sym_string_expansion] = STATE(3292), - [sym_expansion] = STATE(3292), - [sym_command_substitution] = STATE(3292), - [sym_process_substitution] = STATE(3292), - [aux_sym_while_statement_repeat1] = STATE(3294), - [aux_sym_command_repeat2] = STATE(3295), - [sym_file_descriptor] = ACTIONS(6677), - [anon_sym_esac] = ACTIONS(354), - [anon_sym_PIPE] = ACTIONS(354), - [anon_sym_SEMI_SEMI] = ACTIONS(354), - [anon_sym_PIPE_AMP] = ACTIONS(354), - [anon_sym_AMP_AMP] = ACTIONS(354), - [anon_sym_PIPE_PIPE] = ACTIONS(354), - [anon_sym_EQ_TILDE] = ACTIONS(6679), - [anon_sym_EQ_EQ] = ACTIONS(6679), - [anon_sym_LT] = ACTIONS(6681), - [anon_sym_GT] = ACTIONS(6681), - [anon_sym_GT_GT] = ACTIONS(6681), - [anon_sym_AMP_GT] = ACTIONS(6681), - [anon_sym_AMP_GT_GT] = ACTIONS(6681), - [anon_sym_LT_AMP] = ACTIONS(6681), - [anon_sym_GT_AMP] = ACTIONS(6681), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6683), - [sym__special_characters] = ACTIONS(6685), - [anon_sym_DQUOTE] = ACTIONS(6687), - [anon_sym_DOLLAR] = ACTIONS(6689), - [sym_raw_string] = ACTIONS(6691), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6695), - [anon_sym_BQUOTE] = ACTIONS(6697), - [anon_sym_LT_LPAREN] = ACTIONS(6699), - [anon_sym_GT_LPAREN] = ACTIONS(6699), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6691), - [anon_sym_SEMI] = ACTIONS(354), - [anon_sym_LF] = ACTIONS(354), - [anon_sym_AMP] = ACTIONS(354), - }, - [2662] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_esac] = ACTIONS(6667), - [anon_sym_PIPE] = ACTIONS(6669), - [anon_sym_SEMI_SEMI] = ACTIONS(6671), - [anon_sym_PIPE_AMP] = ACTIONS(6669), - [anon_sym_AMP_AMP] = ACTIONS(6673), - [anon_sym_PIPE_PIPE] = ACTIONS(6673), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(6675), - [anon_sym_LF] = ACTIONS(6675), - [anon_sym_AMP] = ACTIONS(6675), - }, - [2663] = { - [sym__assignment] = STATE(3235), - [anon_sym_EQ] = ACTIONS(6593), - [anon_sym_PLUS_EQ] = ACTIONS(6593), - [sym_comment] = ACTIONS(56), - }, - [2664] = { - [sym_file_descriptor] = ACTIONS(250), - [anon_sym_esac] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_SEMI_SEMI] = ACTIONS(252), - [anon_sym_PIPE_AMP] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_EQ_TILDE] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(252), - [anon_sym_AMP_GT] = ACTIONS(252), - [anon_sym_AMP_GT_GT] = ACTIONS(252), - [anon_sym_LT_AMP] = ACTIONS(252), - [anon_sym_GT_AMP] = ACTIONS(252), - [anon_sym_LT_LT] = ACTIONS(252), - [anon_sym_LT_LT_DASH] = ACTIONS(252), - [anon_sym_LT_LT_LT] = ACTIONS(252), - [sym__special_characters] = ACTIONS(252), - [anon_sym_DQUOTE] = ACTIONS(252), - [anon_sym_DOLLAR] = ACTIONS(252), - [sym_raw_string] = ACTIONS(252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(252), - [anon_sym_LT_LPAREN] = ACTIONS(252), - [anon_sym_GT_LPAREN] = ACTIONS(252), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(252), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_LF] = ACTIONS(252), - [anon_sym_AMP] = ACTIONS(252), - }, - [2665] = { - [sym__terminated_statement] = STATE(2659), - [sym_for_statement] = STATE(3297), - [sym_while_statement] = STATE(3297), - [sym_if_statement] = STATE(3297), - [sym_case_statement] = STATE(3297), - [sym_function_definition] = STATE(3297), - [sym_subshell] = STATE(3297), - [sym_pipeline] = STATE(3297), - [sym_list] = STATE(3297), - [sym_command] = STATE(3297), - [sym_command_name] = STATE(2661), - [sym_bracket_command] = STATE(3297), - [sym_variable_assignment] = STATE(3298), - [sym_declaration_command] = STATE(3297), - [sym_unset_command] = STATE(3297), - [sym_subscript] = STATE(2663), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2664), - [sym_string] = STATE(2653), - [sym_simple_expansion] = STATE(2653), - [sym_string_expansion] = STATE(2653), - [sym_expansion] = STATE(2653), - [sym_command_substitution] = STATE(2653), - [sym_process_substitution] = STATE(2653), - [aux_sym_program_repeat1] = STATE(3299), - [aux_sym_command_repeat1] = STATE(2666), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5537), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5539), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(6595), - [anon_sym_SEMI_SEMI] = ACTIONS(6701), - [anon_sym_function] = ACTIONS(5545), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5547), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), - [anon_sym_declare] = ACTIONS(5551), - [anon_sym_typeset] = ACTIONS(5551), - [anon_sym_export] = ACTIONS(5551), - [anon_sym_readonly] = ACTIONS(5551), - [anon_sym_local] = ACTIONS(5551), - [anon_sym_unset] = ACTIONS(5553), - [anon_sym_unsetenv] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(5555), - [anon_sym_DQUOTE] = ACTIONS(5557), - [anon_sym_DOLLAR] = ACTIONS(5559), - [sym_raw_string] = ACTIONS(5561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), - [anon_sym_BQUOTE] = ACTIONS(5567), - [anon_sym_LT_LPAREN] = ACTIONS(5569), - [anon_sym_GT_LPAREN] = ACTIONS(5569), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5571), - }, - [2666] = { - [sym_command_name] = STATE(3300), - [sym_variable_assignment] = STATE(30), - [sym_subscript] = STATE(214), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2664), - [sym_string] = STATE(2653), - [sym_simple_expansion] = STATE(2653), - [sym_string_expansion] = STATE(2653), - [sym_expansion] = STATE(2653), - [sym_command_substitution] = STATE(2653), - [sym_process_substitution] = STATE(2653), - [aux_sym_command_repeat1] = STATE(215), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(388), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(6703), - [anon_sym_DQUOTE] = ACTIONS(5557), - [anon_sym_DOLLAR] = ACTIONS(5559), - [sym_raw_string] = ACTIONS(5561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), - [anon_sym_BQUOTE] = ACTIONS(5567), - [anon_sym_LT_LPAREN] = ACTIONS(5569), - [anon_sym_GT_LPAREN] = ACTIONS(5569), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6705), - }, - [2667] = { - [sym__terminated_statement] = STATE(2659), - [sym_for_statement] = STATE(3297), - [sym_while_statement] = STATE(3297), - [sym_if_statement] = STATE(3297), - [sym_case_statement] = STATE(3297), - [sym_function_definition] = STATE(3297), - [sym_subshell] = STATE(3297), - [sym_pipeline] = STATE(3297), - [sym_list] = STATE(3297), - [sym_command] = STATE(3297), - [sym_command_name] = STATE(2661), - [sym_bracket_command] = STATE(3297), - [sym_variable_assignment] = STATE(3298), - [sym_declaration_command] = STATE(3297), - [sym_unset_command] = STATE(3297), - [sym_subscript] = STATE(2663), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2664), - [sym_string] = STATE(2653), - [sym_simple_expansion] = STATE(2653), - [sym_string_expansion] = STATE(2653), - [sym_expansion] = STATE(2653), - [sym_command_substitution] = STATE(2653), - [sym_process_substitution] = STATE(2653), - [aux_sym_program_repeat1] = STATE(3301), - [aux_sym_command_repeat1] = STATE(2666), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5537), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5539), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(6595), - [anon_sym_SEMI_SEMI] = ACTIONS(6701), - [anon_sym_function] = ACTIONS(5545), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5547), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), - [anon_sym_declare] = ACTIONS(5551), - [anon_sym_typeset] = ACTIONS(5551), - [anon_sym_export] = ACTIONS(5551), - [anon_sym_readonly] = ACTIONS(5551), - [anon_sym_local] = ACTIONS(5551), - [anon_sym_unset] = ACTIONS(5553), - [anon_sym_unsetenv] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(5555), - [anon_sym_DQUOTE] = ACTIONS(5557), - [anon_sym_DOLLAR] = ACTIONS(5559), - [sym_raw_string] = ACTIONS(5561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), - [anon_sym_BQUOTE] = ACTIONS(5567), - [anon_sym_LT_LPAREN] = ACTIONS(5569), - [anon_sym_GT_LPAREN] = ACTIONS(5569), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5571), - }, - [2668] = { - [aux_sym_case_item_repeat1] = STATE(2668), - [anon_sym_PIPE] = ACTIONS(6707), - [anon_sym_RPAREN] = ACTIONS(6591), - [sym_comment] = ACTIONS(56), - }, - [2669] = { - [aux_sym_concatenation_repeat1] = STATE(2669), - [sym__concat] = ACTIONS(6710), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_RPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - }, - [2670] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1927), - [anon_sym_RPAREN] = ACTIONS(1927), - [sym_comment] = ACTIONS(56), - }, - [2671] = { - [anon_sym_esac] = ACTIONS(6713), - [sym__special_characters] = ACTIONS(6715), - [anon_sym_DQUOTE] = ACTIONS(6717), - [anon_sym_DOLLAR] = ACTIONS(6715), - [sym_raw_string] = ACTIONS(6717), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6717), - [anon_sym_BQUOTE] = ACTIONS(6717), - [anon_sym_LT_LPAREN] = ACTIONS(6717), - [anon_sym_GT_LPAREN] = ACTIONS(6717), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6719), - }, - [2672] = { - [anon_sym_esac] = ACTIONS(6721), - [anon_sym_PIPE] = ACTIONS(6669), - [anon_sym_SEMI_SEMI] = ACTIONS(6723), - [anon_sym_PIPE_AMP] = ACTIONS(6669), - [anon_sym_AMP_AMP] = ACTIONS(6673), - [anon_sym_PIPE_PIPE] = ACTIONS(6673), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6675), - [anon_sym_LF] = ACTIONS(6675), - [anon_sym_AMP] = ACTIONS(6675), - }, - [2673] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_esac] = ACTIONS(6721), - [anon_sym_PIPE] = ACTIONS(6669), - [anon_sym_SEMI_SEMI] = ACTIONS(6723), - [anon_sym_PIPE_AMP] = ACTIONS(6669), - [anon_sym_AMP_AMP] = ACTIONS(6673), - [anon_sym_PIPE_PIPE] = ACTIONS(6673), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(6675), - [anon_sym_LF] = ACTIONS(6675), - [anon_sym_AMP] = ACTIONS(6675), - }, - [2674] = { - [sym__terminated_statement] = STATE(2659), - [sym_for_statement] = STATE(3304), - [sym_while_statement] = STATE(3304), - [sym_if_statement] = STATE(3304), - [sym_case_statement] = STATE(3304), - [sym_function_definition] = STATE(3304), - [sym_subshell] = STATE(3304), - [sym_pipeline] = STATE(3304), - [sym_list] = STATE(3304), - [sym_command] = STATE(3304), - [sym_command_name] = STATE(2661), - [sym_bracket_command] = STATE(3304), - [sym_variable_assignment] = STATE(3305), - [sym_declaration_command] = STATE(3304), - [sym_unset_command] = STATE(3304), - [sym_subscript] = STATE(2663), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2664), - [sym_string] = STATE(2653), - [sym_simple_expansion] = STATE(2653), - [sym_string_expansion] = STATE(2653), - [sym_expansion] = STATE(2653), - [sym_command_substitution] = STATE(2653), - [sym_process_substitution] = STATE(2653), - [aux_sym_program_repeat1] = STATE(3299), - [aux_sym_command_repeat1] = STATE(2666), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5537), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5539), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(6713), - [anon_sym_SEMI_SEMI] = ACTIONS(6725), - [anon_sym_function] = ACTIONS(5545), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5547), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), - [anon_sym_declare] = ACTIONS(5551), - [anon_sym_typeset] = ACTIONS(5551), - [anon_sym_export] = ACTIONS(5551), - [anon_sym_readonly] = ACTIONS(5551), - [anon_sym_local] = ACTIONS(5551), - [anon_sym_unset] = ACTIONS(5553), - [anon_sym_unsetenv] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(5555), - [anon_sym_DQUOTE] = ACTIONS(5557), - [anon_sym_DOLLAR] = ACTIONS(5559), - [sym_raw_string] = ACTIONS(5561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), - [anon_sym_BQUOTE] = ACTIONS(5567), - [anon_sym_LT_LPAREN] = ACTIONS(5569), - [anon_sym_GT_LPAREN] = ACTIONS(5569), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5571), - }, - [2675] = { - [sym__terminated_statement] = STATE(2659), - [sym_for_statement] = STATE(3304), - [sym_while_statement] = STATE(3304), - [sym_if_statement] = STATE(3304), - [sym_case_statement] = STATE(3304), - [sym_function_definition] = STATE(3304), - [sym_subshell] = STATE(3304), - [sym_pipeline] = STATE(3304), - [sym_list] = STATE(3304), - [sym_command] = STATE(3304), - [sym_command_name] = STATE(2661), - [sym_bracket_command] = STATE(3304), - [sym_variable_assignment] = STATE(3305), - [sym_declaration_command] = STATE(3304), - [sym_unset_command] = STATE(3304), - [sym_subscript] = STATE(2663), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2664), - [sym_string] = STATE(2653), - [sym_simple_expansion] = STATE(2653), - [sym_string_expansion] = STATE(2653), - [sym_expansion] = STATE(2653), - [sym_command_substitution] = STATE(2653), - [sym_process_substitution] = STATE(2653), - [aux_sym_program_repeat1] = STATE(3306), - [aux_sym_command_repeat1] = STATE(2666), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5537), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5539), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(6713), - [anon_sym_SEMI_SEMI] = ACTIONS(6725), - [anon_sym_function] = ACTIONS(5545), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5547), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), - [anon_sym_declare] = ACTIONS(5551), - [anon_sym_typeset] = ACTIONS(5551), - [anon_sym_export] = ACTIONS(5551), - [anon_sym_readonly] = ACTIONS(5551), - [anon_sym_local] = ACTIONS(5551), - [anon_sym_unset] = ACTIONS(5553), - [anon_sym_unsetenv] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(5555), - [anon_sym_DQUOTE] = ACTIONS(5557), - [anon_sym_DOLLAR] = ACTIONS(5559), - [sym_raw_string] = ACTIONS(5561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), - [anon_sym_BQUOTE] = ACTIONS(5567), - [anon_sym_LT_LPAREN] = ACTIONS(5569), - [anon_sym_GT_LPAREN] = ACTIONS(5569), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5571), - }, - [2676] = { - [sym_concatenation] = STATE(3310), - [sym_string] = STATE(3309), - [sym_simple_expansion] = STATE(3309), - [sym_string_expansion] = STATE(3309), - [sym_expansion] = STATE(3309), - [sym_command_substitution] = STATE(3309), - [sym_process_substitution] = STATE(3309), - [anon_sym_RBRACE] = ACTIONS(6727), - [sym__special_characters] = ACTIONS(6729), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(6731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6733), - }, - [2677] = { - [sym__concat] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_RPAREN] = ACTIONS(1972), - [sym_comment] = ACTIONS(56), - }, - [2678] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6735), - }, - [2679] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6737), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2680] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(6739), - [sym_comment] = ACTIONS(56), - }, - [2681] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3316), - [anon_sym_RBRACE] = ACTIONS(6741), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6743), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2682] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3319), - [anon_sym_RBRACE] = ACTIONS(6745), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6747), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2683] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3321), - [anon_sym_RBRACE] = ACTIONS(6727), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6749), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2684] = { - [sym__concat] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2026), - [anon_sym_RPAREN] = ACTIONS(2026), - [sym_comment] = ACTIONS(56), - }, - [2685] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6751), - }, - [2686] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6753), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2687] = { - [sym__concat] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2034), - [anon_sym_RPAREN] = ACTIONS(2034), - [sym_comment] = ACTIONS(56), - }, - [2688] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6755), - }, - [2689] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6727), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2690] = { - [sym__concat] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2196), - [anon_sym_RPAREN] = ACTIONS(2196), - [sym_comment] = ACTIONS(56), - }, - [2691] = { - [sym__concat] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(2402), - [anon_sym_RPAREN] = ACTIONS(2402), - [sym_comment] = ACTIONS(56), - }, - [2692] = { - [anon_sym_esac] = ACTIONS(6757), - [anon_sym_PIPE] = ACTIONS(6757), - [anon_sym_RPAREN] = ACTIONS(6757), - [anon_sym_SEMI_SEMI] = ACTIONS(6757), - [anon_sym_PIPE_AMP] = ACTIONS(6757), - [anon_sym_AMP_AMP] = ACTIONS(6757), - [anon_sym_PIPE_PIPE] = ACTIONS(6757), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6757), - [anon_sym_LF] = ACTIONS(6757), - [anon_sym_AMP] = ACTIONS(6757), - }, - [2693] = { - [aux_sym_case_item_repeat1] = STATE(3326), - [aux_sym_concatenation_repeat1] = STATE(1998), - [sym__concat] = ACTIONS(4330), - [anon_sym_PIPE] = ACTIONS(4332), - [anon_sym_RPAREN] = ACTIONS(6759), - [sym_comment] = ACTIONS(56), - }, - [2694] = { - [aux_sym_case_item_repeat1] = STATE(3328), - [aux_sym_concatenation_repeat1] = STATE(1998), - [sym__concat] = ACTIONS(4330), - [anon_sym_PIPE] = ACTIONS(4332), - [anon_sym_RPAREN] = ACTIONS(6761), - [sym_comment] = ACTIONS(56), - }, - [2695] = { - [aux_sym_case_item_repeat1] = STATE(3328), - [anon_sym_PIPE] = ACTIONS(4332), - [anon_sym_RPAREN] = ACTIONS(6761), - [sym_comment] = ACTIONS(56), - }, - [2696] = { - [anon_sym_esac] = ACTIONS(6763), - [sym_comment] = ACTIONS(56), - }, - [2697] = { - [anon_sym_esac] = ACTIONS(6765), - [anon_sym_PIPE] = ACTIONS(6765), - [anon_sym_RPAREN] = ACTIONS(6765), - [anon_sym_SEMI_SEMI] = ACTIONS(6765), - [anon_sym_PIPE_AMP] = ACTIONS(6765), - [anon_sym_AMP_AMP] = ACTIONS(6765), - [anon_sym_PIPE_PIPE] = ACTIONS(6765), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6765), - [anon_sym_LF] = ACTIONS(6765), - [anon_sym_AMP] = ACTIONS(6765), - }, - [2698] = { - [anon_sym_esac] = ACTIONS(6767), - [sym_comment] = ACTIONS(56), - }, - [2699] = { - [sym__concat] = ACTIONS(6041), - [anon_sym_in] = ACTIONS(6043), - [anon_sym_SEMI_SEMI] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6043), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - }, - [2700] = { - [sym__concat] = ACTIONS(6045), - [anon_sym_in] = ACTIONS(6047), - [anon_sym_SEMI_SEMI] = ACTIONS(6047), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - }, - [2701] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_in] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [2702] = { - [sym__concat] = ACTIONS(6053), - [anon_sym_in] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6055), - [anon_sym_LF] = ACTIONS(6055), - [anon_sym_AMP] = ACTIONS(6055), - }, - [2703] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6769), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2704] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_in] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [2705] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6771), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2706] = { - [sym__concat] = ACTIONS(6065), - [anon_sym_in] = ACTIONS(6067), - [anon_sym_SEMI_SEMI] = ACTIONS(6067), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LF] = ACTIONS(6067), - [anon_sym_AMP] = ACTIONS(6067), - }, - [2707] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6773), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2708] = { - [sym__concat] = ACTIONS(6071), - [anon_sym_in] = ACTIONS(6073), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LF] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - }, - [2709] = { - [sym__concat] = ACTIONS(6075), - [anon_sym_in] = ACTIONS(6077), - [anon_sym_SEMI_SEMI] = ACTIONS(6077), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LF] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - }, - [2710] = { - [sym__concat] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [2711] = { - [aux_sym_concatenation_repeat1] = STATE(2711), - [sym__concat] = ACTIONS(6775), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [2712] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1929), - [anon_sym_PIPE_AMP] = ACTIONS(1929), - [anon_sym_AMP_AMP] = ACTIONS(1929), - [anon_sym_PIPE_PIPE] = ACTIONS(1929), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - }, - [2713] = { - [sym_concatenation] = STATE(3337), - [sym_string] = STATE(3336), - [sym_simple_expansion] = STATE(3336), - [sym_string_expansion] = STATE(3336), - [sym_expansion] = STATE(3336), - [sym_command_substitution] = STATE(3336), - [sym_process_substitution] = STATE(3336), - [anon_sym_RBRACE] = ACTIONS(6778), - [sym__special_characters] = ACTIONS(6780), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(6782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6784), - }, - [2714] = { - [sym__concat] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(1974), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_LF] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - }, - [2715] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6786), - }, - [2716] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6788), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2717] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(6790), - [sym_comment] = ACTIONS(56), - }, - [2718] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3343), - [anon_sym_RBRACE] = ACTIONS(6792), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6794), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2719] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3346), - [anon_sym_RBRACE] = ACTIONS(6796), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6798), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2720] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3348), - [anon_sym_RBRACE] = ACTIONS(6778), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6800), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2721] = { - [sym__concat] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_SEMI_SEMI] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(2028), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - }, - [2722] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6802), - }, - [2723] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6804), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2724] = { - [sym__concat] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_SEMI_SEMI] = ACTIONS(2036), - [anon_sym_PIPE_AMP] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_LF] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - }, - [2725] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6806), - }, - [2726] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6778), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2727] = { - [sym__concat] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_SEMI_SEMI] = ACTIONS(2198), - [anon_sym_PIPE_AMP] = ACTIONS(2198), - [anon_sym_AMP_AMP] = ACTIONS(2198), - [anon_sym_PIPE_PIPE] = ACTIONS(2198), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - }, - [2728] = { - [sym__concat] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_SEMI_SEMI] = ACTIONS(2404), - [anon_sym_PIPE_AMP] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LF] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - }, - [2729] = { - [sym_file_descriptor] = ACTIONS(3293), - [sym__concat] = ACTIONS(3293), - [sym_variable_name] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_RPAREN] = ACTIONS(3295), - [anon_sym_SEMI_SEMI] = ACTIONS(3295), - [anon_sym_PIPE_AMP] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_GT_GT] = ACTIONS(3295), - [anon_sym_AMP_GT] = ACTIONS(3295), - [anon_sym_AMP_GT_GT] = ACTIONS(3295), - [anon_sym_LT_AMP] = ACTIONS(3295), - [anon_sym_GT_AMP] = ACTIONS(3295), - [sym__special_characters] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_DOLLAR] = ACTIONS(3295), - [sym_raw_string] = ACTIONS(3295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), - [anon_sym_BQUOTE] = ACTIONS(3295), - [anon_sym_LT_LPAREN] = ACTIONS(3295), - [anon_sym_GT_LPAREN] = ACTIONS(3295), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - }, - [2730] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6808), - [sym_comment] = ACTIONS(56), - }, - [2731] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6810), - [sym_comment] = ACTIONS(56), - }, - [2732] = { - [anon_sym_RBRACE] = ACTIONS(6810), - [sym_comment] = ACTIONS(56), - }, - [2733] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3355), - [anon_sym_RBRACE] = ACTIONS(6812), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2734] = { - [sym_file_descriptor] = ACTIONS(3357), - [sym__concat] = ACTIONS(3357), - [sym_variable_name] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_RPAREN] = ACTIONS(3359), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_PIPE_AMP] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_GT_GT] = ACTIONS(3359), - [anon_sym_AMP_GT] = ACTIONS(3359), - [anon_sym_AMP_GT_GT] = ACTIONS(3359), - [anon_sym_LT_AMP] = ACTIONS(3359), - [anon_sym_GT_AMP] = ACTIONS(3359), - [sym__special_characters] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_DOLLAR] = ACTIONS(3359), - [sym_raw_string] = ACTIONS(3359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), - [anon_sym_BQUOTE] = ACTIONS(3359), - [anon_sym_LT_LPAREN] = ACTIONS(3359), - [anon_sym_GT_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - }, - [2735] = { - [sym_concatenation] = STATE(3358), - [sym_string] = STATE(3357), - [sym_simple_expansion] = STATE(3357), - [sym_string_expansion] = STATE(3357), - [sym_expansion] = STATE(3357), - [sym_command_substitution] = STATE(3357), - [sym_process_substitution] = STATE(3357), - [anon_sym_RBRACE] = ACTIONS(6810), - [sym__special_characters] = ACTIONS(6814), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(6816), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6818), - }, - [2736] = { - [sym_file_descriptor] = ACTIONS(3402), - [sym__concat] = ACTIONS(3402), - [sym_variable_name] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_RPAREN] = ACTIONS(3404), - [anon_sym_SEMI_SEMI] = ACTIONS(3404), - [anon_sym_PIPE_AMP] = ACTIONS(3404), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3404), - [anon_sym_LT] = ACTIONS(3404), - [anon_sym_GT] = ACTIONS(3404), - [anon_sym_GT_GT] = ACTIONS(3404), - [anon_sym_AMP_GT] = ACTIONS(3404), - [anon_sym_AMP_GT_GT] = ACTIONS(3404), - [anon_sym_LT_AMP] = ACTIONS(3404), - [anon_sym_GT_AMP] = ACTIONS(3404), - [sym__special_characters] = ACTIONS(3404), - [anon_sym_DQUOTE] = ACTIONS(3404), - [anon_sym_DOLLAR] = ACTIONS(3404), - [sym_raw_string] = ACTIONS(3404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), - [anon_sym_BQUOTE] = ACTIONS(3404), - [anon_sym_LT_LPAREN] = ACTIONS(3404), - [anon_sym_GT_LPAREN] = ACTIONS(3404), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3404), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - }, - [2737] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6820), - }, - [2738] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6822), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2739] = { - [sym_file_descriptor] = ACTIONS(3410), - [sym__concat] = ACTIONS(3410), - [sym_variable_name] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_RPAREN] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [anon_sym_LT] = ACTIONS(3412), - [anon_sym_GT] = ACTIONS(3412), - [anon_sym_GT_GT] = ACTIONS(3412), - [anon_sym_AMP_GT] = ACTIONS(3412), - [anon_sym_AMP_GT_GT] = ACTIONS(3412), - [anon_sym_LT_AMP] = ACTIONS(3412), - [anon_sym_GT_AMP] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(3412), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3412), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - }, - [2740] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6824), - }, - [2741] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2742] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6828), - }, - [2743] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6810), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2744] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3365), - [anon_sym_RBRACE] = ACTIONS(6830), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2745] = { - [sym_file_descriptor] = ACTIONS(3422), - [sym__concat] = ACTIONS(3422), - [sym_variable_name] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_RPAREN] = ACTIONS(3424), - [anon_sym_SEMI_SEMI] = ACTIONS(3424), - [anon_sym_PIPE_AMP] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_PIPE_PIPE] = ACTIONS(3424), - [anon_sym_LT] = ACTIONS(3424), - [anon_sym_GT] = ACTIONS(3424), - [anon_sym_GT_GT] = ACTIONS(3424), - [anon_sym_AMP_GT] = ACTIONS(3424), - [anon_sym_AMP_GT_GT] = ACTIONS(3424), - [anon_sym_LT_AMP] = ACTIONS(3424), - [anon_sym_GT_AMP] = ACTIONS(3424), - [sym__special_characters] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [anon_sym_DOLLAR] = ACTIONS(3424), - [sym_raw_string] = ACTIONS(3424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), - [anon_sym_BQUOTE] = ACTIONS(3424), - [anon_sym_LT_LPAREN] = ACTIONS(3424), - [anon_sym_GT_LPAREN] = ACTIONS(3424), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - }, - [2746] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3367), - [anon_sym_RBRACE] = ACTIONS(6832), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2747] = { - [aux_sym_concatenation_repeat1] = STATE(2750), - [sym__concat] = ACTIONS(5737), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_RPAREN] = ACTIONS(4044), - [anon_sym_SEMI_SEMI] = ACTIONS(4044), - [anon_sym_PIPE_AMP] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_PIPE_PIPE] = ACTIONS(4044), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4044), - }, - [2748] = { - [aux_sym_concatenation_repeat1] = STATE(2750), - [sym__concat] = ACTIONS(5737), - [anon_sym_PIPE] = ACTIONS(4046), - [anon_sym_RPAREN] = ACTIONS(4046), - [anon_sym_SEMI_SEMI] = ACTIONS(4046), - [anon_sym_PIPE_AMP] = ACTIONS(4046), - [anon_sym_AMP_AMP] = ACTIONS(4046), - [anon_sym_PIPE_PIPE] = ACTIONS(4046), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4046), - [anon_sym_AMP] = ACTIONS(4046), - }, - [2749] = { - [sym_string] = STATE(3368), - [sym_simple_expansion] = STATE(3368), - [sym_string_expansion] = STATE(3368), - [sym_expansion] = STATE(3368), - [sym_command_substitution] = STATE(3368), - [sym_process_substitution] = STATE(3368), - [sym__special_characters] = ACTIONS(6834), - [anon_sym_DQUOTE] = ACTIONS(4472), - [anon_sym_DOLLAR] = ACTIONS(4474), - [sym_raw_string] = ACTIONS(6836), - [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(56), - [sym_word] = ACTIONS(6834), - }, - [2750] = { - [aux_sym_concatenation_repeat1] = STATE(3369), - [sym__concat] = ACTIONS(5737), - [anon_sym_PIPE] = ACTIONS(792), - [anon_sym_RPAREN] = ACTIONS(792), - [anon_sym_SEMI_SEMI] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LF] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(792), - }, - [2751] = { - [sym__concat] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_RPAREN] = ACTIONS(796), - [anon_sym_SEMI_SEMI] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_LF] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - }, - [2752] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(6838), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [2753] = { - [sym__concat] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_SEMI_SEMI] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(828), - }, - [2754] = { - [sym__concat] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(832), - [anon_sym_AMP] = ACTIONS(832), - }, - [2755] = { - [sym__concat] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_SEMI_SEMI] = ACTIONS(836), - [anon_sym_PIPE_AMP] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(836), - }, - [2756] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(6840), - [sym_comment] = ACTIONS(56), - }, - [2757] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3374), - [anon_sym_RBRACE] = ACTIONS(6842), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6844), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2758] = { - [sym_subscript] = STATE(3378), - [sym_variable_name] = ACTIONS(6846), - [anon_sym_DOLLAR] = ACTIONS(6848), - [anon_sym_DASH] = ACTIONS(6848), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6850), - [anon_sym_STAR] = ACTIONS(6848), - [anon_sym_AT] = ACTIONS(6848), - [anon_sym_QMARK] = ACTIONS(6848), - [anon_sym_0] = ACTIONS(6852), - [anon_sym__] = ACTIONS(6852), - }, - [2759] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3381), - [anon_sym_RBRACE] = ACTIONS(6854), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2760] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3384), - [anon_sym_RBRACE] = ACTIONS(6858), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(6860), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2761] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(6862), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [2762] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(6862), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [2763] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(6862), - [sym_comment] = ACTIONS(56), - }, - [2764] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(6862), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [2765] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(6864), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [2766] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(6864), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [2767] = { - [sym__concat] = ACTIONS(4802), - [sym_variable_name] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_RPAREN] = ACTIONS(4804), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [anon_sym_PIPE_AMP] = ACTIONS(4804), - [anon_sym_AMP_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4804), - [sym__special_characters] = ACTIONS(4804), - [anon_sym_DQUOTE] = ACTIONS(4804), - [anon_sym_DOLLAR] = ACTIONS(4804), - [sym_raw_string] = ACTIONS(4804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), - [anon_sym_BQUOTE] = ACTIONS(4804), - [anon_sym_LT_LPAREN] = ACTIONS(4804), - [anon_sym_GT_LPAREN] = ACTIONS(4804), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4804), - [sym_word] = ACTIONS(4804), - [anon_sym_SEMI] = ACTIONS(4804), - [anon_sym_LF] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4804), - }, - [2768] = { - [sym__concat] = ACTIONS(4808), - [sym_variable_name] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_RPAREN] = ACTIONS(4810), - [anon_sym_SEMI_SEMI] = ACTIONS(4810), - [anon_sym_PIPE_AMP] = ACTIONS(4810), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [sym__special_characters] = ACTIONS(4810), - [anon_sym_DQUOTE] = ACTIONS(4810), - [anon_sym_DOLLAR] = ACTIONS(4810), - [sym_raw_string] = ACTIONS(4810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), - [anon_sym_BQUOTE] = ACTIONS(4810), - [anon_sym_LT_LPAREN] = ACTIONS(4810), - [anon_sym_GT_LPAREN] = ACTIONS(4810), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4810), - [sym_word] = ACTIONS(4810), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LF] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4810), - }, - [2769] = { - [sym__concat] = ACTIONS(4871), - [sym_variable_name] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_RPAREN] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [sym__special_characters] = ACTIONS(4873), - [anon_sym_DQUOTE] = ACTIONS(4873), - [anon_sym_DOLLAR] = ACTIONS(4873), - [sym_raw_string] = ACTIONS(4873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), - [anon_sym_BQUOTE] = ACTIONS(4873), - [anon_sym_LT_LPAREN] = ACTIONS(4873), - [anon_sym_GT_LPAREN] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4873), - [sym_word] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [2770] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6866), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2771] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6868), - [sym_comment] = ACTIONS(56), - }, - [2772] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6870), - [sym_comment] = ACTIONS(56), - }, - [2773] = { - [anon_sym_RBRACE] = ACTIONS(6870), - [sym_comment] = ACTIONS(56), - }, - [2774] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3391), - [anon_sym_RBRACE] = ACTIONS(6872), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2775] = { - [sym__concat] = ACTIONS(4883), - [sym_variable_name] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(4885), - [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(4885), - [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(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4885), - [sym_word] = ACTIONS(4885), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [2776] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3393), - [anon_sym_RBRACE] = ACTIONS(6874), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2777] = { - [sym__concat] = ACTIONS(4889), - [sym_variable_name] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_RPAREN] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [sym__special_characters] = ACTIONS(4891), - [anon_sym_DQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR] = ACTIONS(4891), - [sym_raw_string] = ACTIONS(4891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), - [anon_sym_BQUOTE] = ACTIONS(4891), - [anon_sym_LT_LPAREN] = ACTIONS(4891), - [anon_sym_GT_LPAREN] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4891), - [sym_word] = ACTIONS(4891), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [2778] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3395), - [anon_sym_RBRACE] = ACTIONS(6876), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2779] = { - [sym__concat] = ACTIONS(4895), - [sym_variable_name] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_RPAREN] = ACTIONS(4897), - [anon_sym_SEMI_SEMI] = ACTIONS(4897), - [anon_sym_PIPE_AMP] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [sym__special_characters] = ACTIONS(4897), - [anon_sym_DQUOTE] = ACTIONS(4897), - [anon_sym_DOLLAR] = ACTIONS(4897), - [sym_raw_string] = ACTIONS(4897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), - [anon_sym_BQUOTE] = ACTIONS(4897), - [anon_sym_LT_LPAREN] = ACTIONS(4897), - [anon_sym_GT_LPAREN] = ACTIONS(4897), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4897), - [sym_word] = ACTIONS(4897), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LF] = ACTIONS(4897), - [anon_sym_AMP] = ACTIONS(4897), - }, - [2780] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6878), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2781] = { - [sym__concat] = ACTIONS(4901), - [sym_variable_name] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(4903), - [anon_sym_RPAREN] = ACTIONS(4903), - [anon_sym_SEMI_SEMI] = ACTIONS(4903), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [sym__special_characters] = ACTIONS(4903), - [anon_sym_DQUOTE] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4903), - [sym_raw_string] = ACTIONS(4903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), - [anon_sym_BQUOTE] = ACTIONS(4903), - [anon_sym_LT_LPAREN] = ACTIONS(4903), - [anon_sym_GT_LPAREN] = ACTIONS(4903), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4903), - [sym_word] = ACTIONS(4903), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LF] = ACTIONS(4903), - [anon_sym_AMP] = ACTIONS(4903), - }, - [2782] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6880), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2783] = { - [sym__concat] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_RPAREN] = ACTIONS(4804), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [anon_sym_PIPE_AMP] = ACTIONS(4804), - [anon_sym_AMP_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4804), - [sym__special_characters] = ACTIONS(4804), - [anon_sym_DQUOTE] = ACTIONS(4804), - [anon_sym_DOLLAR] = ACTIONS(4804), - [sym_raw_string] = ACTIONS(4804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), - [anon_sym_BQUOTE] = ACTIONS(4804), - [anon_sym_LT_LPAREN] = ACTIONS(4804), - [anon_sym_GT_LPAREN] = ACTIONS(4804), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4804), - [sym_word] = ACTIONS(4804), - [anon_sym_SEMI] = ACTIONS(4804), - [anon_sym_LF] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4804), - }, - [2784] = { - [sym__concat] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_RPAREN] = ACTIONS(4810), - [anon_sym_SEMI_SEMI] = ACTIONS(4810), - [anon_sym_PIPE_AMP] = ACTIONS(4810), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [sym__special_characters] = ACTIONS(4810), - [anon_sym_DQUOTE] = ACTIONS(4810), - [anon_sym_DOLLAR] = ACTIONS(4810), - [sym_raw_string] = ACTIONS(4810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), - [anon_sym_BQUOTE] = ACTIONS(4810), - [anon_sym_LT_LPAREN] = ACTIONS(4810), - [anon_sym_GT_LPAREN] = ACTIONS(4810), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4810), - [sym_word] = ACTIONS(4810), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LF] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4810), - }, - [2785] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_RPAREN] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [sym__special_characters] = ACTIONS(4873), - [anon_sym_DQUOTE] = ACTIONS(4873), - [anon_sym_DOLLAR] = ACTIONS(4873), - [sym_raw_string] = ACTIONS(4873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), - [anon_sym_BQUOTE] = ACTIONS(4873), - [anon_sym_LT_LPAREN] = ACTIONS(4873), - [anon_sym_GT_LPAREN] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4873), - [sym_word] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [2786] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6882), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2787] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6884), - [sym_comment] = ACTIONS(56), - }, - [2788] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6886), - [sym_comment] = ACTIONS(56), - }, - [2789] = { - [anon_sym_RBRACE] = ACTIONS(6886), - [sym_comment] = ACTIONS(56), - }, - [2790] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3402), - [anon_sym_RBRACE] = ACTIONS(6888), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2791] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(4885), - [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(4885), - [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(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4885), - [sym_word] = ACTIONS(4885), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [2792] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3404), - [anon_sym_RBRACE] = ACTIONS(6890), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2793] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_RPAREN] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [sym__special_characters] = ACTIONS(4891), - [anon_sym_DQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR] = ACTIONS(4891), - [sym_raw_string] = ACTIONS(4891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), - [anon_sym_BQUOTE] = ACTIONS(4891), - [anon_sym_LT_LPAREN] = ACTIONS(4891), - [anon_sym_GT_LPAREN] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4891), - [sym_word] = ACTIONS(4891), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [2794] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3406), - [anon_sym_RBRACE] = ACTIONS(6892), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2795] = { - [sym__concat] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_RPAREN] = ACTIONS(4897), - [anon_sym_SEMI_SEMI] = ACTIONS(4897), - [anon_sym_PIPE_AMP] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [sym__special_characters] = ACTIONS(4897), - [anon_sym_DQUOTE] = ACTIONS(4897), - [anon_sym_DOLLAR] = ACTIONS(4897), - [sym_raw_string] = ACTIONS(4897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), - [anon_sym_BQUOTE] = ACTIONS(4897), - [anon_sym_LT_LPAREN] = ACTIONS(4897), - [anon_sym_GT_LPAREN] = ACTIONS(4897), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4897), - [sym_word] = ACTIONS(4897), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LF] = ACTIONS(4897), - [anon_sym_AMP] = ACTIONS(4897), - }, - [2796] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6894), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2797] = { - [sym__concat] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(4903), - [anon_sym_RPAREN] = ACTIONS(4903), - [anon_sym_SEMI_SEMI] = ACTIONS(4903), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [sym__special_characters] = ACTIONS(4903), - [anon_sym_DQUOTE] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4903), - [sym_raw_string] = ACTIONS(4903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), - [anon_sym_BQUOTE] = ACTIONS(4903), - [anon_sym_LT_LPAREN] = ACTIONS(4903), - [anon_sym_GT_LPAREN] = ACTIONS(4903), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4903), - [sym_word] = ACTIONS(4903), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LF] = ACTIONS(4903), - [anon_sym_AMP] = ACTIONS(4903), - }, - [2798] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6896), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2799] = { - [sym_file_descriptor] = ACTIONS(6041), - [sym__concat] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_RPAREN] = ACTIONS(6043), - [anon_sym_SEMI_SEMI] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [anon_sym_EQ_TILDE] = ACTIONS(6043), - [anon_sym_EQ_EQ] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6043), - [anon_sym_GT] = ACTIONS(6043), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_AMP_GT] = ACTIONS(6043), - [anon_sym_AMP_GT_GT] = ACTIONS(6043), - [anon_sym_LT_AMP] = ACTIONS(6043), - [anon_sym_GT_AMP] = ACTIONS(6043), - [anon_sym_LT_LT] = ACTIONS(6043), - [anon_sym_LT_LT_DASH] = ACTIONS(6043), - [anon_sym_LT_LT_LT] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6043), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6043), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6043), - [anon_sym_SEMI] = ACTIONS(6043), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - }, - [2800] = { - [sym_file_descriptor] = ACTIONS(6045), - [sym__concat] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_RPAREN] = ACTIONS(6047), - [anon_sym_SEMI_SEMI] = ACTIONS(6047), - [anon_sym_PIPE_AMP] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6047), - [anon_sym_PIPE_PIPE] = ACTIONS(6047), - [anon_sym_EQ_TILDE] = ACTIONS(6047), - [anon_sym_EQ_EQ] = ACTIONS(6047), - [anon_sym_LT] = ACTIONS(6047), - [anon_sym_GT] = ACTIONS(6047), - [anon_sym_GT_GT] = ACTIONS(6047), - [anon_sym_AMP_GT] = ACTIONS(6047), - [anon_sym_AMP_GT_GT] = ACTIONS(6047), - [anon_sym_LT_AMP] = ACTIONS(6047), - [anon_sym_GT_AMP] = ACTIONS(6047), - [anon_sym_LT_LT] = ACTIONS(6047), - [anon_sym_LT_LT_DASH] = ACTIONS(6047), - [anon_sym_LT_LT_LT] = ACTIONS(6047), - [sym__special_characters] = ACTIONS(6047), - [anon_sym_DQUOTE] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6047), - [sym_raw_string] = ACTIONS(6047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), - [anon_sym_BQUOTE] = ACTIONS(6047), - [anon_sym_LT_LPAREN] = ACTIONS(6047), - [anon_sym_GT_LPAREN] = ACTIONS(6047), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6047), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - }, - [2801] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [anon_sym_EQ_TILDE] = ACTIONS(6051), - [anon_sym_EQ_EQ] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6051), - [anon_sym_GT] = ACTIONS(6051), - [anon_sym_GT_GT] = ACTIONS(6051), - [anon_sym_AMP_GT] = ACTIONS(6051), - [anon_sym_AMP_GT_GT] = ACTIONS(6051), - [anon_sym_LT_AMP] = ACTIONS(6051), - [anon_sym_GT_AMP] = ACTIONS(6051), - [anon_sym_LT_LT] = ACTIONS(6051), - [anon_sym_LT_LT_DASH] = ACTIONS(6051), - [anon_sym_LT_LT_LT] = ACTIONS(6051), - [sym__special_characters] = ACTIONS(6051), - [anon_sym_DQUOTE] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6051), - [sym_raw_string] = ACTIONS(6051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), - [anon_sym_BQUOTE] = ACTIONS(6051), - [anon_sym_LT_LPAREN] = ACTIONS(6051), - [anon_sym_GT_LPAREN] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6051), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [2802] = { - [sym_file_descriptor] = ACTIONS(6053), - [sym__concat] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6055), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [anon_sym_EQ_TILDE] = ACTIONS(6055), - [anon_sym_EQ_EQ] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6055), - [anon_sym_GT] = ACTIONS(6055), - [anon_sym_GT_GT] = ACTIONS(6055), - [anon_sym_AMP_GT] = ACTIONS(6055), - [anon_sym_AMP_GT_GT] = ACTIONS(6055), - [anon_sym_LT_AMP] = ACTIONS(6055), - [anon_sym_GT_AMP] = ACTIONS(6055), - [anon_sym_LT_LT] = ACTIONS(6055), - [anon_sym_LT_LT_DASH] = ACTIONS(6055), - [anon_sym_LT_LT_LT] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6055), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6055), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6055), - [anon_sym_SEMI] = ACTIONS(6055), - [anon_sym_LF] = ACTIONS(6055), - [anon_sym_AMP] = ACTIONS(6055), - }, - [2803] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6898), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2804] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_RPAREN] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [anon_sym_EQ_TILDE] = ACTIONS(6061), - [anon_sym_EQ_EQ] = ACTIONS(6061), - [anon_sym_LT] = ACTIONS(6061), - [anon_sym_GT] = ACTIONS(6061), - [anon_sym_GT_GT] = ACTIONS(6061), - [anon_sym_AMP_GT] = ACTIONS(6061), - [anon_sym_AMP_GT_GT] = ACTIONS(6061), - [anon_sym_LT_AMP] = ACTIONS(6061), - [anon_sym_GT_AMP] = ACTIONS(6061), - [anon_sym_LT_LT] = ACTIONS(6061), - [anon_sym_LT_LT_DASH] = ACTIONS(6061), - [anon_sym_LT_LT_LT] = ACTIONS(6061), - [sym__special_characters] = ACTIONS(6061), - [anon_sym_DQUOTE] = ACTIONS(6061), - [anon_sym_DOLLAR] = ACTIONS(6061), - [sym_raw_string] = ACTIONS(6061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), - [anon_sym_BQUOTE] = ACTIONS(6061), - [anon_sym_LT_LPAREN] = ACTIONS(6061), - [anon_sym_GT_LPAREN] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6061), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [2805] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6900), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2806] = { - [sym_file_descriptor] = ACTIONS(6065), - [sym__concat] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6067), - [anon_sym_RPAREN] = ACTIONS(6067), - [anon_sym_SEMI_SEMI] = ACTIONS(6067), - [anon_sym_PIPE_AMP] = ACTIONS(6067), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [anon_sym_EQ_TILDE] = ACTIONS(6067), - [anon_sym_EQ_EQ] = ACTIONS(6067), - [anon_sym_LT] = ACTIONS(6067), - [anon_sym_GT] = ACTIONS(6067), - [anon_sym_GT_GT] = ACTIONS(6067), - [anon_sym_AMP_GT] = ACTIONS(6067), - [anon_sym_AMP_GT_GT] = ACTIONS(6067), - [anon_sym_LT_AMP] = ACTIONS(6067), - [anon_sym_GT_AMP] = ACTIONS(6067), - [anon_sym_LT_LT] = ACTIONS(6067), - [anon_sym_LT_LT_DASH] = ACTIONS(6067), - [anon_sym_LT_LT_LT] = ACTIONS(6067), - [sym__special_characters] = ACTIONS(6067), - [anon_sym_DQUOTE] = ACTIONS(6067), - [anon_sym_DOLLAR] = ACTIONS(6067), - [sym_raw_string] = ACTIONS(6067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), - [anon_sym_BQUOTE] = ACTIONS(6067), - [anon_sym_LT_LPAREN] = ACTIONS(6067), - [anon_sym_GT_LPAREN] = ACTIONS(6067), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6067), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LF] = ACTIONS(6067), - [anon_sym_AMP] = ACTIONS(6067), - }, - [2807] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6902), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2808] = { - [sym_file_descriptor] = ACTIONS(6071), - [sym__concat] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_RPAREN] = ACTIONS(6073), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [anon_sym_PIPE_AMP] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6073), - [anon_sym_PIPE_PIPE] = ACTIONS(6073), - [anon_sym_EQ_TILDE] = ACTIONS(6073), - [anon_sym_EQ_EQ] = ACTIONS(6073), - [anon_sym_LT] = ACTIONS(6073), - [anon_sym_GT] = ACTIONS(6073), - [anon_sym_GT_GT] = ACTIONS(6073), - [anon_sym_AMP_GT] = ACTIONS(6073), - [anon_sym_AMP_GT_GT] = ACTIONS(6073), - [anon_sym_LT_AMP] = ACTIONS(6073), - [anon_sym_GT_AMP] = ACTIONS(6073), - [anon_sym_LT_LT] = ACTIONS(6073), - [anon_sym_LT_LT_DASH] = ACTIONS(6073), - [anon_sym_LT_LT_LT] = ACTIONS(6073), - [sym__special_characters] = ACTIONS(6073), - [anon_sym_DQUOTE] = ACTIONS(6073), - [anon_sym_DOLLAR] = ACTIONS(6073), - [sym_raw_string] = ACTIONS(6073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), - [anon_sym_BQUOTE] = ACTIONS(6073), - [anon_sym_LT_LPAREN] = ACTIONS(6073), - [anon_sym_GT_LPAREN] = ACTIONS(6073), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6073), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LF] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - }, - [2809] = { - [sym_file_descriptor] = ACTIONS(6075), - [sym__concat] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_RPAREN] = ACTIONS(6077), - [anon_sym_SEMI_SEMI] = ACTIONS(6077), - [anon_sym_PIPE_AMP] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6077), - [anon_sym_PIPE_PIPE] = ACTIONS(6077), - [anon_sym_EQ_TILDE] = ACTIONS(6077), - [anon_sym_EQ_EQ] = ACTIONS(6077), - [anon_sym_LT] = ACTIONS(6077), - [anon_sym_GT] = ACTIONS(6077), - [anon_sym_GT_GT] = ACTIONS(6077), - [anon_sym_AMP_GT] = ACTIONS(6077), - [anon_sym_AMP_GT_GT] = ACTIONS(6077), - [anon_sym_LT_AMP] = ACTIONS(6077), - [anon_sym_GT_AMP] = ACTIONS(6077), - [anon_sym_LT_LT] = ACTIONS(6077), - [anon_sym_LT_LT_DASH] = ACTIONS(6077), - [anon_sym_LT_LT_LT] = ACTIONS(6077), - [sym__special_characters] = ACTIONS(6077), - [anon_sym_DQUOTE] = ACTIONS(6077), - [anon_sym_DOLLAR] = ACTIONS(6077), - [sym_raw_string] = ACTIONS(6077), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), - [anon_sym_BQUOTE] = ACTIONS(6077), - [anon_sym_LT_LPAREN] = ACTIONS(6077), - [anon_sym_GT_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6077), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LF] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - }, - [2810] = { - [sym_file_descriptor] = ACTIONS(3293), - [sym__concat] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_RPAREN] = ACTIONS(3295), - [anon_sym_SEMI_SEMI] = ACTIONS(3295), - [anon_sym_PIPE_AMP] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_GT_GT] = ACTIONS(3295), - [anon_sym_AMP_GT] = ACTIONS(3295), - [anon_sym_AMP_GT_GT] = ACTIONS(3295), - [anon_sym_LT_AMP] = ACTIONS(3295), - [anon_sym_GT_AMP] = ACTIONS(3295), - [anon_sym_LT_LT] = ACTIONS(3295), - [anon_sym_LT_LT_DASH] = ACTIONS(3295), - [anon_sym_LT_LT_LT] = ACTIONS(3295), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - }, - [2811] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6904), - [sym_comment] = ACTIONS(56), - }, - [2812] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6906), - [sym_comment] = ACTIONS(56), - }, - [2813] = { - [anon_sym_RBRACE] = ACTIONS(6906), - [sym_comment] = ACTIONS(56), - }, - [2814] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3415), - [anon_sym_RBRACE] = ACTIONS(6908), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2815] = { - [sym_file_descriptor] = ACTIONS(3357), - [sym__concat] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_RPAREN] = ACTIONS(3359), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_PIPE_AMP] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_GT_GT] = ACTIONS(3359), - [anon_sym_AMP_GT] = ACTIONS(3359), - [anon_sym_AMP_GT_GT] = ACTIONS(3359), - [anon_sym_LT_AMP] = ACTIONS(3359), - [anon_sym_GT_AMP] = ACTIONS(3359), - [anon_sym_LT_LT] = ACTIONS(3359), - [anon_sym_LT_LT_DASH] = ACTIONS(3359), - [anon_sym_LT_LT_LT] = ACTIONS(3359), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - }, - [2816] = { - [sym_concatenation] = STATE(3418), - [sym_string] = STATE(3417), - [sym_simple_expansion] = STATE(3417), - [sym_string_expansion] = STATE(3417), - [sym_expansion] = STATE(3417), - [sym_command_substitution] = STATE(3417), - [sym_process_substitution] = STATE(3417), - [anon_sym_RBRACE] = ACTIONS(6906), - [sym__special_characters] = ACTIONS(6910), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(6912), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6914), - }, - [2817] = { - [sym_file_descriptor] = ACTIONS(3402), - [sym__concat] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_RPAREN] = ACTIONS(3404), - [anon_sym_SEMI_SEMI] = ACTIONS(3404), - [anon_sym_PIPE_AMP] = ACTIONS(3404), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3404), - [anon_sym_LT] = ACTIONS(3404), - [anon_sym_GT] = ACTIONS(3404), - [anon_sym_GT_GT] = ACTIONS(3404), - [anon_sym_AMP_GT] = ACTIONS(3404), - [anon_sym_AMP_GT_GT] = ACTIONS(3404), - [anon_sym_LT_AMP] = ACTIONS(3404), - [anon_sym_GT_AMP] = ACTIONS(3404), - [anon_sym_LT_LT] = ACTIONS(3404), - [anon_sym_LT_LT_DASH] = ACTIONS(3404), - [anon_sym_LT_LT_LT] = ACTIONS(3404), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - }, - [2818] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6916), - }, - [2819] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6918), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2820] = { - [sym_file_descriptor] = ACTIONS(3410), - [sym__concat] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_RPAREN] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [anon_sym_LT] = ACTIONS(3412), - [anon_sym_GT] = ACTIONS(3412), - [anon_sym_GT_GT] = ACTIONS(3412), - [anon_sym_AMP_GT] = ACTIONS(3412), - [anon_sym_AMP_GT_GT] = ACTIONS(3412), - [anon_sym_LT_AMP] = ACTIONS(3412), - [anon_sym_GT_AMP] = ACTIONS(3412), - [anon_sym_LT_LT] = ACTIONS(3412), - [anon_sym_LT_LT_DASH] = ACTIONS(3412), - [anon_sym_LT_LT_LT] = ACTIONS(3412), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - }, - [2821] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6920), - }, - [2822] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6922), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2823] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6924), - }, - [2824] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6906), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2825] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3425), - [anon_sym_RBRACE] = ACTIONS(6926), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2826] = { - [sym_file_descriptor] = ACTIONS(3422), - [sym__concat] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_RPAREN] = ACTIONS(3424), - [anon_sym_SEMI_SEMI] = ACTIONS(3424), - [anon_sym_PIPE_AMP] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_PIPE_PIPE] = ACTIONS(3424), - [anon_sym_LT] = ACTIONS(3424), - [anon_sym_GT] = ACTIONS(3424), - [anon_sym_GT_GT] = ACTIONS(3424), - [anon_sym_AMP_GT] = ACTIONS(3424), - [anon_sym_AMP_GT_GT] = ACTIONS(3424), - [anon_sym_LT_AMP] = ACTIONS(3424), - [anon_sym_GT_AMP] = ACTIONS(3424), - [anon_sym_LT_LT] = ACTIONS(3424), - [anon_sym_LT_LT_DASH] = ACTIONS(3424), - [anon_sym_LT_LT_LT] = ACTIONS(3424), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - }, - [2827] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3427), - [anon_sym_RBRACE] = ACTIONS(6928), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2828] = { - [sym__concat] = ACTIONS(6041), - [anon_sym_EQ_TILDE] = ACTIONS(6930), - [anon_sym_EQ_EQ] = ACTIONS(6930), - [anon_sym_RBRACK] = ACTIONS(6041), - [sym__special_characters] = ACTIONS(6043), - [anon_sym_DQUOTE] = ACTIONS(6041), - [anon_sym_DOLLAR] = ACTIONS(6930), - [sym_raw_string] = ACTIONS(6041), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), - [anon_sym_BQUOTE] = ACTIONS(6041), - [anon_sym_LT_LPAREN] = ACTIONS(6041), - [anon_sym_GT_LPAREN] = ACTIONS(6041), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6043), - }, - [2829] = { - [sym__concat] = ACTIONS(6045), - [anon_sym_EQ_TILDE] = ACTIONS(6932), - [anon_sym_EQ_EQ] = ACTIONS(6932), - [anon_sym_RBRACK] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6047), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6932), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6047), - }, - [2830] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_EQ_TILDE] = ACTIONS(6934), - [anon_sym_EQ_EQ] = ACTIONS(6934), - [anon_sym_RBRACK] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6051), - [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), - [anon_sym_BQUOTE] = ACTIONS(6049), - [anon_sym_LT_LPAREN] = ACTIONS(6049), - [anon_sym_GT_LPAREN] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6051), - }, - [2831] = { - [sym__concat] = ACTIONS(6053), - [anon_sym_EQ_TILDE] = ACTIONS(6936), - [anon_sym_EQ_EQ] = ACTIONS(6936), - [anon_sym_RBRACK] = ACTIONS(6053), - [sym__special_characters] = ACTIONS(6055), - [anon_sym_DQUOTE] = ACTIONS(6053), - [anon_sym_DOLLAR] = ACTIONS(6936), - [sym_raw_string] = ACTIONS(6053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), - [anon_sym_BQUOTE] = ACTIONS(6053), - [anon_sym_LT_LPAREN] = ACTIONS(6053), - [anon_sym_GT_LPAREN] = ACTIONS(6053), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6055), - }, - [2832] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6938), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2833] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_EQ_TILDE] = ACTIONS(6940), - [anon_sym_EQ_EQ] = ACTIONS(6940), - [anon_sym_RBRACK] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6061), - [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6940), - [sym_raw_string] = ACTIONS(6059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), - [anon_sym_BQUOTE] = ACTIONS(6059), - [anon_sym_LT_LPAREN] = ACTIONS(6059), - [anon_sym_GT_LPAREN] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6061), - }, - [2834] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6942), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2835] = { - [sym__concat] = ACTIONS(6065), - [anon_sym_EQ_TILDE] = ACTIONS(6944), - [anon_sym_EQ_EQ] = ACTIONS(6944), - [anon_sym_RBRACK] = ACTIONS(6065), - [sym__special_characters] = ACTIONS(6067), - [anon_sym_DQUOTE] = ACTIONS(6065), - [anon_sym_DOLLAR] = ACTIONS(6944), - [sym_raw_string] = ACTIONS(6065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), - [anon_sym_BQUOTE] = ACTIONS(6065), - [anon_sym_LT_LPAREN] = ACTIONS(6065), - [anon_sym_GT_LPAREN] = ACTIONS(6065), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6067), - }, - [2836] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6946), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2837] = { - [sym__concat] = ACTIONS(6071), - [anon_sym_EQ_TILDE] = ACTIONS(6948), - [anon_sym_EQ_EQ] = ACTIONS(6948), - [anon_sym_RBRACK] = ACTIONS(6071), - [sym__special_characters] = ACTIONS(6073), - [anon_sym_DQUOTE] = ACTIONS(6071), - [anon_sym_DOLLAR] = ACTIONS(6948), - [sym_raw_string] = ACTIONS(6071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), - [anon_sym_BQUOTE] = ACTIONS(6071), - [anon_sym_LT_LPAREN] = ACTIONS(6071), - [anon_sym_GT_LPAREN] = ACTIONS(6071), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6073), - }, - [2838] = { - [sym__concat] = ACTIONS(6075), - [anon_sym_EQ_TILDE] = ACTIONS(6950), - [anon_sym_EQ_EQ] = ACTIONS(6950), - [anon_sym_RBRACK] = ACTIONS(6075), - [sym__special_characters] = ACTIONS(6077), - [anon_sym_DQUOTE] = ACTIONS(6075), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), - [anon_sym_BQUOTE] = ACTIONS(6075), - [anon_sym_LT_LPAREN] = ACTIONS(6075), - [anon_sym_GT_LPAREN] = ACTIONS(6075), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6077), - }, - [2839] = { - [sym__concat] = ACTIONS(6041), - [anon_sym_EQ_TILDE] = ACTIONS(6930), - [anon_sym_EQ_EQ] = ACTIONS(6930), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6041), - [sym__special_characters] = ACTIONS(6043), - [anon_sym_DQUOTE] = ACTIONS(6041), - [anon_sym_DOLLAR] = ACTIONS(6930), - [sym_raw_string] = ACTIONS(6041), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), - [anon_sym_BQUOTE] = ACTIONS(6041), - [anon_sym_LT_LPAREN] = ACTIONS(6041), - [anon_sym_GT_LPAREN] = ACTIONS(6041), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6043), - }, - [2840] = { - [sym__concat] = ACTIONS(6045), - [anon_sym_EQ_TILDE] = ACTIONS(6932), - [anon_sym_EQ_EQ] = ACTIONS(6932), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6047), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6932), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6047), - }, - [2841] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_EQ_TILDE] = ACTIONS(6934), - [anon_sym_EQ_EQ] = ACTIONS(6934), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6051), - [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), - [anon_sym_BQUOTE] = ACTIONS(6049), - [anon_sym_LT_LPAREN] = ACTIONS(6049), - [anon_sym_GT_LPAREN] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6051), - }, - [2842] = { - [sym__concat] = ACTIONS(6053), - [anon_sym_EQ_TILDE] = ACTIONS(6936), - [anon_sym_EQ_EQ] = ACTIONS(6936), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6053), - [sym__special_characters] = ACTIONS(6055), - [anon_sym_DQUOTE] = ACTIONS(6053), - [anon_sym_DOLLAR] = ACTIONS(6936), - [sym_raw_string] = ACTIONS(6053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), - [anon_sym_BQUOTE] = ACTIONS(6053), - [anon_sym_LT_LPAREN] = ACTIONS(6053), - [anon_sym_GT_LPAREN] = ACTIONS(6053), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6055), - }, - [2843] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6952), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2844] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_EQ_TILDE] = ACTIONS(6940), - [anon_sym_EQ_EQ] = ACTIONS(6940), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6061), - [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6940), - [sym_raw_string] = ACTIONS(6059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), - [anon_sym_BQUOTE] = ACTIONS(6059), - [anon_sym_LT_LPAREN] = ACTIONS(6059), - [anon_sym_GT_LPAREN] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6061), - }, - [2845] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6954), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2846] = { - [sym__concat] = ACTIONS(6065), - [anon_sym_EQ_TILDE] = ACTIONS(6944), - [anon_sym_EQ_EQ] = ACTIONS(6944), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6065), - [sym__special_characters] = ACTIONS(6067), - [anon_sym_DQUOTE] = ACTIONS(6065), - [anon_sym_DOLLAR] = ACTIONS(6944), - [sym_raw_string] = ACTIONS(6065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), - [anon_sym_BQUOTE] = ACTIONS(6065), - [anon_sym_LT_LPAREN] = ACTIONS(6065), - [anon_sym_GT_LPAREN] = ACTIONS(6065), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6067), - }, - [2847] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6956), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2848] = { - [sym__concat] = ACTIONS(6071), - [anon_sym_EQ_TILDE] = ACTIONS(6948), - [anon_sym_EQ_EQ] = ACTIONS(6948), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6071), - [sym__special_characters] = ACTIONS(6073), - [anon_sym_DQUOTE] = ACTIONS(6071), - [anon_sym_DOLLAR] = ACTIONS(6948), - [sym_raw_string] = ACTIONS(6071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), - [anon_sym_BQUOTE] = ACTIONS(6071), - [anon_sym_LT_LPAREN] = ACTIONS(6071), - [anon_sym_GT_LPAREN] = ACTIONS(6071), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6073), - }, - [2849] = { - [sym__concat] = ACTIONS(6075), - [anon_sym_EQ_TILDE] = ACTIONS(6950), - [anon_sym_EQ_EQ] = ACTIONS(6950), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6075), - [sym__special_characters] = ACTIONS(6077), - [anon_sym_DQUOTE] = ACTIONS(6075), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), - [anon_sym_BQUOTE] = ACTIONS(6075), - [anon_sym_LT_LPAREN] = ACTIONS(6075), - [anon_sym_GT_LPAREN] = ACTIONS(6075), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6077), - }, - [2850] = { - [sym__concat] = ACTIONS(6041), - [sym_variable_name] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_SEMI_SEMI] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6043), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6043), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6043), - [sym_word] = ACTIONS(6043), - [anon_sym_SEMI] = ACTIONS(6043), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - }, - [2851] = { - [sym__concat] = ACTIONS(6045), - [sym_variable_name] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_SEMI_SEMI] = ACTIONS(6047), - [anon_sym_PIPE_AMP] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6047), - [anon_sym_PIPE_PIPE] = ACTIONS(6047), - [sym__special_characters] = ACTIONS(6047), - [anon_sym_DQUOTE] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6047), - [sym_raw_string] = ACTIONS(6047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), - [anon_sym_BQUOTE] = ACTIONS(6047), - [anon_sym_LT_LPAREN] = ACTIONS(6047), - [anon_sym_GT_LPAREN] = ACTIONS(6047), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6047), - [sym_word] = ACTIONS(6047), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - }, - [2852] = { - [sym__concat] = ACTIONS(6049), - [sym_variable_name] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [sym__special_characters] = ACTIONS(6051), - [anon_sym_DQUOTE] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6051), - [sym_raw_string] = ACTIONS(6051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), - [anon_sym_BQUOTE] = ACTIONS(6051), - [anon_sym_LT_LPAREN] = ACTIONS(6051), - [anon_sym_GT_LPAREN] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6051), - [sym_word] = ACTIONS(6051), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [2853] = { - [sym__concat] = ACTIONS(6053), - [sym_variable_name] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6055), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6055), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6055), - [sym_word] = ACTIONS(6055), - [anon_sym_SEMI] = ACTIONS(6055), - [anon_sym_LF] = ACTIONS(6055), - [anon_sym_AMP] = ACTIONS(6055), - }, - [2854] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6958), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2855] = { - [sym__concat] = ACTIONS(6059), - [sym_variable_name] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [sym__special_characters] = ACTIONS(6061), - [anon_sym_DQUOTE] = ACTIONS(6061), - [anon_sym_DOLLAR] = ACTIONS(6061), - [sym_raw_string] = ACTIONS(6061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), - [anon_sym_BQUOTE] = ACTIONS(6061), - [anon_sym_LT_LPAREN] = ACTIONS(6061), - [anon_sym_GT_LPAREN] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6061), - [sym_word] = ACTIONS(6061), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [2856] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6960), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2857] = { - [sym__concat] = ACTIONS(6065), - [sym_variable_name] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6067), - [anon_sym_SEMI_SEMI] = ACTIONS(6067), - [anon_sym_PIPE_AMP] = ACTIONS(6067), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [sym__special_characters] = ACTIONS(6067), - [anon_sym_DQUOTE] = ACTIONS(6067), - [anon_sym_DOLLAR] = ACTIONS(6067), - [sym_raw_string] = ACTIONS(6067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), - [anon_sym_BQUOTE] = ACTIONS(6067), - [anon_sym_LT_LPAREN] = ACTIONS(6067), - [anon_sym_GT_LPAREN] = ACTIONS(6067), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6067), - [sym_word] = ACTIONS(6067), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LF] = ACTIONS(6067), - [anon_sym_AMP] = ACTIONS(6067), - }, - [2858] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6962), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2859] = { - [sym__concat] = ACTIONS(6071), - [sym_variable_name] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [anon_sym_PIPE_AMP] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6073), - [anon_sym_PIPE_PIPE] = ACTIONS(6073), - [sym__special_characters] = ACTIONS(6073), - [anon_sym_DQUOTE] = ACTIONS(6073), - [anon_sym_DOLLAR] = ACTIONS(6073), - [sym_raw_string] = ACTIONS(6073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), - [anon_sym_BQUOTE] = ACTIONS(6073), - [anon_sym_LT_LPAREN] = ACTIONS(6073), - [anon_sym_GT_LPAREN] = ACTIONS(6073), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6073), - [sym_word] = ACTIONS(6073), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LF] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - }, - [2860] = { - [sym__concat] = ACTIONS(6075), - [sym_variable_name] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_SEMI_SEMI] = ACTIONS(6077), - [anon_sym_PIPE_AMP] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6077), - [anon_sym_PIPE_PIPE] = ACTIONS(6077), - [sym__special_characters] = ACTIONS(6077), - [anon_sym_DQUOTE] = ACTIONS(6077), - [anon_sym_DOLLAR] = ACTIONS(6077), - [sym_raw_string] = ACTIONS(6077), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), - [anon_sym_BQUOTE] = ACTIONS(6077), - [anon_sym_LT_LPAREN] = ACTIONS(6077), - [anon_sym_GT_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6077), - [sym_word] = ACTIONS(6077), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LF] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - }, - [2861] = { - [sym__concat] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_SEMI_SEMI] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6043), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6043), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6043), - [sym_word] = ACTIONS(6043), - [anon_sym_SEMI] = ACTIONS(6043), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - }, - [2862] = { - [sym__concat] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_SEMI_SEMI] = ACTIONS(6047), - [anon_sym_PIPE_AMP] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6047), - [anon_sym_PIPE_PIPE] = ACTIONS(6047), - [sym__special_characters] = ACTIONS(6047), - [anon_sym_DQUOTE] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6047), - [sym_raw_string] = ACTIONS(6047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), - [anon_sym_BQUOTE] = ACTIONS(6047), - [anon_sym_LT_LPAREN] = ACTIONS(6047), - [anon_sym_GT_LPAREN] = ACTIONS(6047), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6047), - [sym_word] = ACTIONS(6047), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - }, - [2863] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [sym__special_characters] = ACTIONS(6051), - [anon_sym_DQUOTE] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6051), - [sym_raw_string] = ACTIONS(6051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), - [anon_sym_BQUOTE] = ACTIONS(6051), - [anon_sym_LT_LPAREN] = ACTIONS(6051), - [anon_sym_GT_LPAREN] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6051), - [sym_word] = ACTIONS(6051), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [2864] = { - [sym__concat] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6055), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6055), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6055), - [sym_word] = ACTIONS(6055), - [anon_sym_SEMI] = ACTIONS(6055), - [anon_sym_LF] = ACTIONS(6055), - [anon_sym_AMP] = ACTIONS(6055), - }, - [2865] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6964), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2866] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [sym__special_characters] = ACTIONS(6061), - [anon_sym_DQUOTE] = ACTIONS(6061), - [anon_sym_DOLLAR] = ACTIONS(6061), - [sym_raw_string] = ACTIONS(6061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), - [anon_sym_BQUOTE] = ACTIONS(6061), - [anon_sym_LT_LPAREN] = ACTIONS(6061), - [anon_sym_GT_LPAREN] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6061), - [sym_word] = ACTIONS(6061), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [2867] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6966), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2868] = { - [sym__concat] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6067), - [anon_sym_SEMI_SEMI] = ACTIONS(6067), - [anon_sym_PIPE_AMP] = ACTIONS(6067), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [sym__special_characters] = ACTIONS(6067), - [anon_sym_DQUOTE] = ACTIONS(6067), - [anon_sym_DOLLAR] = ACTIONS(6067), - [sym_raw_string] = ACTIONS(6067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), - [anon_sym_BQUOTE] = ACTIONS(6067), - [anon_sym_LT_LPAREN] = ACTIONS(6067), - [anon_sym_GT_LPAREN] = ACTIONS(6067), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6067), - [sym_word] = ACTIONS(6067), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LF] = ACTIONS(6067), - [anon_sym_AMP] = ACTIONS(6067), - }, - [2869] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6968), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2870] = { - [sym__concat] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [anon_sym_PIPE_AMP] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6073), - [anon_sym_PIPE_PIPE] = ACTIONS(6073), - [sym__special_characters] = ACTIONS(6073), - [anon_sym_DQUOTE] = ACTIONS(6073), - [anon_sym_DOLLAR] = ACTIONS(6073), - [sym_raw_string] = ACTIONS(6073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), - [anon_sym_BQUOTE] = ACTIONS(6073), - [anon_sym_LT_LPAREN] = ACTIONS(6073), - [anon_sym_GT_LPAREN] = ACTIONS(6073), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6073), - [sym_word] = ACTIONS(6073), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LF] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - }, - [2871] = { - [sym__concat] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_SEMI_SEMI] = ACTIONS(6077), - [anon_sym_PIPE_AMP] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6077), - [anon_sym_PIPE_PIPE] = ACTIONS(6077), - [sym__special_characters] = ACTIONS(6077), - [anon_sym_DQUOTE] = ACTIONS(6077), - [anon_sym_DOLLAR] = ACTIONS(6077), - [sym_raw_string] = ACTIONS(6077), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), - [anon_sym_BQUOTE] = ACTIONS(6077), - [anon_sym_LT_LPAREN] = ACTIONS(6077), - [anon_sym_GT_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6077), - [sym_word] = ACTIONS(6077), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LF] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - }, - [2872] = { - [sym_file_descriptor] = ACTIONS(6041), - [sym__concat] = ACTIONS(6041), - [sym_variable_name] = ACTIONS(6041), - [anon_sym_LT] = ACTIONS(6930), - [anon_sym_GT] = ACTIONS(6930), - [anon_sym_GT_GT] = ACTIONS(6041), - [anon_sym_AMP_GT] = ACTIONS(6930), - [anon_sym_AMP_GT_GT] = ACTIONS(6041), - [anon_sym_LT_AMP] = ACTIONS(6041), - [anon_sym_GT_AMP] = ACTIONS(6041), - [sym__special_characters] = ACTIONS(6930), - [anon_sym_DQUOTE] = ACTIONS(6041), - [anon_sym_DOLLAR] = ACTIONS(6930), - [sym_raw_string] = ACTIONS(6041), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), - [anon_sym_BQUOTE] = ACTIONS(6041), - [anon_sym_LT_LPAREN] = ACTIONS(6041), - [anon_sym_GT_LPAREN] = ACTIONS(6041), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6930), - }, - [2873] = { - [sym_file_descriptor] = ACTIONS(6045), - [sym__concat] = ACTIONS(6045), - [sym_variable_name] = ACTIONS(6045), - [anon_sym_LT] = ACTIONS(6932), - [anon_sym_GT] = ACTIONS(6932), - [anon_sym_GT_GT] = ACTIONS(6045), - [anon_sym_AMP_GT] = ACTIONS(6932), - [anon_sym_AMP_GT_GT] = ACTIONS(6045), - [anon_sym_LT_AMP] = ACTIONS(6045), - [anon_sym_GT_AMP] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6932), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6932), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6932), - }, - [2874] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [sym_variable_name] = ACTIONS(6049), - [anon_sym_LT] = ACTIONS(6934), - [anon_sym_GT] = ACTIONS(6934), - [anon_sym_GT_GT] = ACTIONS(6049), - [anon_sym_AMP_GT] = ACTIONS(6934), - [anon_sym_AMP_GT_GT] = ACTIONS(6049), - [anon_sym_LT_AMP] = ACTIONS(6049), - [anon_sym_GT_AMP] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6934), - [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), - [anon_sym_BQUOTE] = ACTIONS(6049), - [anon_sym_LT_LPAREN] = ACTIONS(6049), - [anon_sym_GT_LPAREN] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6934), - }, - [2875] = { - [sym_file_descriptor] = ACTIONS(6053), - [sym__concat] = ACTIONS(6053), - [sym_variable_name] = ACTIONS(6053), - [anon_sym_LT] = ACTIONS(6936), - [anon_sym_GT] = ACTIONS(6936), - [anon_sym_GT_GT] = ACTIONS(6053), - [anon_sym_AMP_GT] = ACTIONS(6936), - [anon_sym_AMP_GT_GT] = ACTIONS(6053), - [anon_sym_LT_AMP] = ACTIONS(6053), - [anon_sym_GT_AMP] = ACTIONS(6053), - [sym__special_characters] = ACTIONS(6936), - [anon_sym_DQUOTE] = ACTIONS(6053), - [anon_sym_DOLLAR] = ACTIONS(6936), - [sym_raw_string] = ACTIONS(6053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), - [anon_sym_BQUOTE] = ACTIONS(6053), - [anon_sym_LT_LPAREN] = ACTIONS(6053), - [anon_sym_GT_LPAREN] = ACTIONS(6053), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6936), - }, - [2876] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6970), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2877] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [sym_variable_name] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6940), - [anon_sym_GT] = ACTIONS(6940), - [anon_sym_GT_GT] = ACTIONS(6059), - [anon_sym_AMP_GT] = ACTIONS(6940), - [anon_sym_AMP_GT_GT] = ACTIONS(6059), - [anon_sym_LT_AMP] = ACTIONS(6059), - [anon_sym_GT_AMP] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6940), - [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6940), - [sym_raw_string] = ACTIONS(6059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), - [anon_sym_BQUOTE] = ACTIONS(6059), - [anon_sym_LT_LPAREN] = ACTIONS(6059), - [anon_sym_GT_LPAREN] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6940), - }, - [2878] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6972), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2879] = { - [sym_file_descriptor] = ACTIONS(6065), - [sym__concat] = ACTIONS(6065), - [sym_variable_name] = ACTIONS(6065), - [anon_sym_LT] = ACTIONS(6944), - [anon_sym_GT] = ACTIONS(6944), - [anon_sym_GT_GT] = ACTIONS(6065), - [anon_sym_AMP_GT] = ACTIONS(6944), - [anon_sym_AMP_GT_GT] = ACTIONS(6065), - [anon_sym_LT_AMP] = ACTIONS(6065), - [anon_sym_GT_AMP] = ACTIONS(6065), - [sym__special_characters] = ACTIONS(6944), - [anon_sym_DQUOTE] = ACTIONS(6065), - [anon_sym_DOLLAR] = ACTIONS(6944), - [sym_raw_string] = ACTIONS(6065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), - [anon_sym_BQUOTE] = ACTIONS(6065), - [anon_sym_LT_LPAREN] = ACTIONS(6065), - [anon_sym_GT_LPAREN] = ACTIONS(6065), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6944), - }, - [2880] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6974), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2881] = { - [sym_file_descriptor] = ACTIONS(6071), - [sym__concat] = ACTIONS(6071), - [sym_variable_name] = ACTIONS(6071), - [anon_sym_LT] = ACTIONS(6948), - [anon_sym_GT] = ACTIONS(6948), - [anon_sym_GT_GT] = ACTIONS(6071), - [anon_sym_AMP_GT] = ACTIONS(6948), - [anon_sym_AMP_GT_GT] = ACTIONS(6071), - [anon_sym_LT_AMP] = ACTIONS(6071), - [anon_sym_GT_AMP] = ACTIONS(6071), - [sym__special_characters] = ACTIONS(6948), - [anon_sym_DQUOTE] = ACTIONS(6071), - [anon_sym_DOLLAR] = ACTIONS(6948), - [sym_raw_string] = ACTIONS(6071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), - [anon_sym_BQUOTE] = ACTIONS(6071), - [anon_sym_LT_LPAREN] = ACTIONS(6071), - [anon_sym_GT_LPAREN] = ACTIONS(6071), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6948), - }, - [2882] = { - [sym_file_descriptor] = ACTIONS(6075), - [sym__concat] = ACTIONS(6075), - [sym_variable_name] = ACTIONS(6075), - [anon_sym_LT] = ACTIONS(6950), - [anon_sym_GT] = ACTIONS(6950), - [anon_sym_GT_GT] = ACTIONS(6075), - [anon_sym_AMP_GT] = ACTIONS(6950), - [anon_sym_AMP_GT_GT] = ACTIONS(6075), - [anon_sym_LT_AMP] = ACTIONS(6075), - [anon_sym_GT_AMP] = ACTIONS(6075), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6075), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), - [anon_sym_BQUOTE] = ACTIONS(6075), - [anon_sym_LT_LPAREN] = ACTIONS(6075), - [anon_sym_GT_LPAREN] = ACTIONS(6075), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6950), - }, - [2883] = { - [sym__concat] = ACTIONS(6041), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6043), - [sym__string_content] = ACTIONS(6930), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - }, - [2884] = { - [sym__concat] = ACTIONS(6045), - [anon_sym_DQUOTE] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6047), - [sym__string_content] = ACTIONS(6932), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), - [anon_sym_BQUOTE] = ACTIONS(6047), - [sym_comment] = ACTIONS(182), - }, - [2885] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_DQUOTE] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6051), - [sym__string_content] = ACTIONS(6934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), - [anon_sym_BQUOTE] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - }, - [2886] = { - [sym__concat] = ACTIONS(6053), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6055), - [sym__string_content] = ACTIONS(6936), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - }, - [2887] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6976), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2888] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_DQUOTE] = ACTIONS(6061), - [anon_sym_DOLLAR] = ACTIONS(6061), - [sym__string_content] = ACTIONS(6940), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), - [anon_sym_BQUOTE] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - }, - [2889] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6978), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2890] = { - [sym__concat] = ACTIONS(6065), - [anon_sym_DQUOTE] = ACTIONS(6067), - [anon_sym_DOLLAR] = ACTIONS(6067), - [sym__string_content] = ACTIONS(6944), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), - [anon_sym_BQUOTE] = ACTIONS(6067), - [sym_comment] = ACTIONS(182), - }, - [2891] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6980), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2892] = { - [sym__concat] = ACTIONS(6071), - [anon_sym_DQUOTE] = ACTIONS(6073), - [anon_sym_DOLLAR] = ACTIONS(6073), - [sym__string_content] = ACTIONS(6948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), - [anon_sym_BQUOTE] = ACTIONS(6073), - [sym_comment] = ACTIONS(182), - }, - [2893] = { - [sym__concat] = ACTIONS(6075), - [anon_sym_DQUOTE] = ACTIONS(6077), - [anon_sym_DOLLAR] = ACTIONS(6077), - [sym__string_content] = ACTIONS(6950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), - [anon_sym_BQUOTE] = ACTIONS(6077), - [sym_comment] = ACTIONS(182), - }, - [2894] = { - [anon_sym_RBRACE] = ACTIONS(5397), - [anon_sym_EQ] = ACTIONS(6982), - [sym__special_characters] = ACTIONS(6984), - [anon_sym_DQUOTE] = ACTIONS(5397), - [anon_sym_DOLLAR] = ACTIONS(6982), - [sym_raw_string] = ACTIONS(5397), - [anon_sym_POUND] = ACTIONS(5397), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5397), - [aux_sym_SLASH] = ACTIONS(5397), - [anon_sym_COLON] = ACTIONS(6982), - [anon_sym_COLON_QMARK] = ACTIONS(6982), - [anon_sym_COLON_DASH] = ACTIONS(6982), - [anon_sym_PERCENT] = ACTIONS(6982), - [anon_sym_DASH] = ACTIONS(6982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5397), - [anon_sym_BQUOTE] = ACTIONS(5397), - [anon_sym_LT_LPAREN] = ACTIONS(5397), - [anon_sym_GT_LPAREN] = ACTIONS(5397), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6984), - }, - [2895] = { - [anon_sym_RBRACE] = ACTIONS(5399), - [anon_sym_EQ] = ACTIONS(6986), - [sym__special_characters] = ACTIONS(6988), - [anon_sym_DQUOTE] = ACTIONS(5399), - [anon_sym_DOLLAR] = ACTIONS(6986), - [sym_raw_string] = ACTIONS(5399), - [anon_sym_POUND] = ACTIONS(5399), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5399), - [aux_sym_SLASH] = ACTIONS(5399), - [anon_sym_COLON] = ACTIONS(6986), - [anon_sym_COLON_QMARK] = ACTIONS(6986), - [anon_sym_COLON_DASH] = ACTIONS(6986), - [anon_sym_PERCENT] = ACTIONS(6986), - [anon_sym_DASH] = ACTIONS(6986), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5399), - [anon_sym_BQUOTE] = ACTIONS(5399), - [anon_sym_LT_LPAREN] = ACTIONS(5399), - [anon_sym_GT_LPAREN] = ACTIONS(5399), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6988), - }, - [2896] = { - [sym__concat] = ACTIONS(3293), - [anon_sym_RBRACE] = ACTIONS(3293), - [sym_comment] = ACTIONS(56), - }, - [2897] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6990), - [sym_comment] = ACTIONS(56), - }, - [2898] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(6992), - [sym_comment] = ACTIONS(56), - }, - [2899] = { - [anon_sym_RBRACE] = ACTIONS(6992), - [sym_comment] = ACTIONS(56), - }, - [2900] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3449), - [anon_sym_RBRACE] = ACTIONS(6994), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2901] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [sym_comment] = ACTIONS(56), - }, - [2902] = { - [sym_concatenation] = STATE(3452), - [sym_string] = STATE(3451), - [sym_simple_expansion] = STATE(3451), - [sym_string_expansion] = STATE(3451), - [sym_expansion] = STATE(3451), - [sym_command_substitution] = STATE(3451), - [sym_process_substitution] = STATE(3451), - [anon_sym_RBRACE] = ACTIONS(6992), - [sym__special_characters] = ACTIONS(6996), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(6998), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7000), - }, - [2903] = { - [sym__concat] = ACTIONS(3402), - [anon_sym_RBRACE] = ACTIONS(3402), - [sym_comment] = ACTIONS(56), - }, - [2904] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7002), - }, - [2905] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7004), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2906] = { - [sym__concat] = ACTIONS(3410), - [anon_sym_RBRACE] = ACTIONS(3410), - [sym_comment] = ACTIONS(56), - }, - [2907] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7006), - }, - [2908] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7008), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2909] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7010), - }, - [2910] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(6992), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2911] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3459), - [anon_sym_RBRACE] = ACTIONS(7012), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2912] = { - [sym__concat] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [sym_comment] = ACTIONS(56), - }, - [2913] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3461), - [anon_sym_RBRACE] = ACTIONS(7014), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2914] = { - [sym__concat] = ACTIONS(4802), - [anon_sym_RBRACE] = ACTIONS(4802), - [anon_sym_EQ] = ACTIONS(5860), - [sym__special_characters] = ACTIONS(4804), - [anon_sym_DQUOTE] = ACTIONS(4802), - [anon_sym_DOLLAR] = ACTIONS(5860), - [sym_raw_string] = ACTIONS(4802), - [anon_sym_POUND] = ACTIONS(4802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_COLON_QMARK] = ACTIONS(5860), - [anon_sym_COLON_DASH] = ACTIONS(5860), - [anon_sym_PERCENT] = ACTIONS(5860), - [anon_sym_DASH] = ACTIONS(5860), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), - [anon_sym_BQUOTE] = ACTIONS(4802), - [anon_sym_LT_LPAREN] = ACTIONS(4802), - [anon_sym_GT_LPAREN] = ACTIONS(4802), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4804), - }, - [2915] = { - [sym__concat] = ACTIONS(4808), - [anon_sym_RBRACE] = ACTIONS(4808), - [anon_sym_EQ] = ACTIONS(5862), - [sym__special_characters] = ACTIONS(4810), - [anon_sym_DQUOTE] = ACTIONS(4808), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4808), - [anon_sym_POUND] = ACTIONS(4808), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), - [anon_sym_COLON] = ACTIONS(5862), - [anon_sym_COLON_QMARK] = ACTIONS(5862), - [anon_sym_COLON_DASH] = ACTIONS(5862), - [anon_sym_PERCENT] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), - [anon_sym_BQUOTE] = ACTIONS(4808), - [anon_sym_LT_LPAREN] = ACTIONS(4808), - [anon_sym_GT_LPAREN] = ACTIONS(4808), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4810), - }, - [2916] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_RBRACE] = ACTIONS(4871), - [anon_sym_EQ] = ACTIONS(5864), - [sym__special_characters] = ACTIONS(4873), - [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5864), - [sym_raw_string] = ACTIONS(4871), - [anon_sym_POUND] = ACTIONS(4871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_COLON_QMARK] = ACTIONS(5864), - [anon_sym_COLON_DASH] = ACTIONS(5864), - [anon_sym_PERCENT] = ACTIONS(5864), - [anon_sym_DASH] = ACTIONS(5864), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), - [anon_sym_BQUOTE] = ACTIONS(4871), - [anon_sym_LT_LPAREN] = ACTIONS(4871), - [anon_sym_GT_LPAREN] = ACTIONS(4871), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4873), - }, - [2917] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7016), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2918] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7018), - [sym_comment] = ACTIONS(56), - }, - [2919] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7020), - [sym_comment] = ACTIONS(56), - }, - [2920] = { - [anon_sym_RBRACE] = ACTIONS(7020), - [sym_comment] = ACTIONS(56), - }, - [2921] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3466), - [anon_sym_RBRACE] = ACTIONS(7022), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2922] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_RBRACE] = ACTIONS(4883), - [anon_sym_EQ] = ACTIONS(5874), - [sym__special_characters] = ACTIONS(4885), - [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5874), - [sym_raw_string] = ACTIONS(4883), - [anon_sym_POUND] = ACTIONS(4883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), - [anon_sym_COLON] = ACTIONS(5874), - [anon_sym_COLON_QMARK] = ACTIONS(5874), - [anon_sym_COLON_DASH] = ACTIONS(5874), - [anon_sym_PERCENT] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(4883), - [anon_sym_LT_LPAREN] = ACTIONS(4883), - [anon_sym_GT_LPAREN] = ACTIONS(4883), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4885), - }, - [2923] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3468), - [anon_sym_RBRACE] = ACTIONS(7024), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2924] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_RBRACE] = ACTIONS(4889), - [anon_sym_EQ] = ACTIONS(5878), - [sym__special_characters] = ACTIONS(4891), - [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5878), - [sym_raw_string] = ACTIONS(4889), - [anon_sym_POUND] = ACTIONS(4889), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), - [anon_sym_COLON] = ACTIONS(5878), - [anon_sym_COLON_QMARK] = ACTIONS(5878), - [anon_sym_COLON_DASH] = ACTIONS(5878), - [anon_sym_PERCENT] = ACTIONS(5878), - [anon_sym_DASH] = ACTIONS(5878), - [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(182), - [sym_word] = ACTIONS(4891), - }, - [2925] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3470), - [anon_sym_RBRACE] = ACTIONS(7026), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2926] = { - [sym__concat] = ACTIONS(4895), - [anon_sym_RBRACE] = ACTIONS(4895), - [anon_sym_EQ] = ACTIONS(5882), - [sym__special_characters] = ACTIONS(4897), - [anon_sym_DQUOTE] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(5882), - [sym_raw_string] = ACTIONS(4895), - [anon_sym_POUND] = ACTIONS(4895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), - [anon_sym_COLON] = ACTIONS(5882), - [anon_sym_COLON_QMARK] = ACTIONS(5882), - [anon_sym_COLON_DASH] = ACTIONS(5882), - [anon_sym_PERCENT] = ACTIONS(5882), - [anon_sym_DASH] = ACTIONS(5882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), - [anon_sym_BQUOTE] = ACTIONS(4895), - [anon_sym_LT_LPAREN] = ACTIONS(4895), - [anon_sym_GT_LPAREN] = ACTIONS(4895), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4897), - }, - [2927] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7028), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2928] = { - [sym__concat] = ACTIONS(4901), - [anon_sym_RBRACE] = ACTIONS(4901), - [anon_sym_EQ] = ACTIONS(5886), - [sym__special_characters] = ACTIONS(4903), - [anon_sym_DQUOTE] = ACTIONS(4901), - [anon_sym_DOLLAR] = ACTIONS(5886), - [sym_raw_string] = ACTIONS(4901), - [anon_sym_POUND] = ACTIONS(4901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), - [anon_sym_COLON] = ACTIONS(5886), - [anon_sym_COLON_QMARK] = ACTIONS(5886), - [anon_sym_COLON_DASH] = ACTIONS(5886), - [anon_sym_PERCENT] = ACTIONS(5886), - [anon_sym_DASH] = ACTIONS(5886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), - [anon_sym_BQUOTE] = ACTIONS(4901), - [anon_sym_LT_LPAREN] = ACTIONS(4901), - [anon_sym_GT_LPAREN] = ACTIONS(4901), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4903), - }, - [2929] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7030), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2930] = { - [sym_file_descriptor] = ACTIONS(7032), - [sym__concat] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7034), - [anon_sym_SEMI_SEMI] = ACTIONS(7034), - [anon_sym_PIPE_AMP] = ACTIONS(7034), - [anon_sym_AMP_AMP] = ACTIONS(7034), - [anon_sym_PIPE_PIPE] = ACTIONS(7034), - [anon_sym_EQ_TILDE] = ACTIONS(7034), - [anon_sym_EQ_EQ] = ACTIONS(7034), - [anon_sym_LT] = ACTIONS(7034), - [anon_sym_GT] = ACTIONS(7034), - [anon_sym_GT_GT] = ACTIONS(7034), - [anon_sym_AMP_GT] = ACTIONS(7034), - [anon_sym_AMP_GT_GT] = ACTIONS(7034), - [anon_sym_LT_AMP] = ACTIONS(7034), - [anon_sym_GT_AMP] = ACTIONS(7034), - [anon_sym_LT_LT] = ACTIONS(7034), - [anon_sym_LT_LT_DASH] = ACTIONS(7034), - [anon_sym_LT_LT_LT] = ACTIONS(7034), - [sym__special_characters] = ACTIONS(7034), - [anon_sym_DQUOTE] = ACTIONS(7034), - [anon_sym_DOLLAR] = ACTIONS(7034), - [sym_raw_string] = ACTIONS(7034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), - [anon_sym_BQUOTE] = ACTIONS(7034), - [anon_sym_LT_LPAREN] = ACTIONS(7034), - [anon_sym_GT_LPAREN] = ACTIONS(7034), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7034), - [anon_sym_SEMI] = ACTIONS(7034), - [anon_sym_LF] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - }, - [2931] = { - [sym_file_descriptor] = ACTIONS(7036), - [sym__concat] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7038), - [anon_sym_SEMI_SEMI] = ACTIONS(7038), - [anon_sym_PIPE_AMP] = ACTIONS(7038), - [anon_sym_AMP_AMP] = ACTIONS(7038), - [anon_sym_PIPE_PIPE] = ACTIONS(7038), - [anon_sym_EQ_TILDE] = ACTIONS(7038), - [anon_sym_EQ_EQ] = ACTIONS(7038), - [anon_sym_LT] = ACTIONS(7038), - [anon_sym_GT] = ACTIONS(7038), - [anon_sym_GT_GT] = ACTIONS(7038), - [anon_sym_AMP_GT] = ACTIONS(7038), - [anon_sym_AMP_GT_GT] = ACTIONS(7038), - [anon_sym_LT_AMP] = ACTIONS(7038), - [anon_sym_GT_AMP] = ACTIONS(7038), - [anon_sym_LT_LT] = ACTIONS(7038), - [anon_sym_LT_LT_DASH] = ACTIONS(7038), - [anon_sym_LT_LT_LT] = ACTIONS(7038), - [sym__special_characters] = ACTIONS(7038), - [anon_sym_DQUOTE] = ACTIONS(7038), - [anon_sym_DOLLAR] = ACTIONS(7038), - [sym_raw_string] = ACTIONS(7038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), - [anon_sym_BQUOTE] = ACTIONS(7038), - [anon_sym_LT_LPAREN] = ACTIONS(7038), - [anon_sym_GT_LPAREN] = ACTIONS(7038), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7038), - [anon_sym_SEMI] = ACTIONS(7038), - [anon_sym_LF] = ACTIONS(7038), - [anon_sym_AMP] = ACTIONS(7038), - }, - [2932] = { - [sym_file_descriptor] = ACTIONS(7040), - [sym__concat] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_SEMI_SEMI] = ACTIONS(7042), - [anon_sym_PIPE_AMP] = ACTIONS(7042), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7042), - [anon_sym_EQ_TILDE] = ACTIONS(7042), - [anon_sym_EQ_EQ] = ACTIONS(7042), - [anon_sym_LT] = ACTIONS(7042), - [anon_sym_GT] = ACTIONS(7042), - [anon_sym_GT_GT] = ACTIONS(7042), - [anon_sym_AMP_GT] = ACTIONS(7042), - [anon_sym_AMP_GT_GT] = ACTIONS(7042), - [anon_sym_LT_AMP] = ACTIONS(7042), - [anon_sym_GT_AMP] = ACTIONS(7042), - [anon_sym_LT_LT] = ACTIONS(7042), - [anon_sym_LT_LT_DASH] = ACTIONS(7042), - [anon_sym_LT_LT_LT] = ACTIONS(7042), - [sym__special_characters] = ACTIONS(7042), - [anon_sym_DQUOTE] = ACTIONS(7042), - [anon_sym_DOLLAR] = ACTIONS(7042), - [sym_raw_string] = ACTIONS(7042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), - [anon_sym_BQUOTE] = ACTIONS(7042), - [anon_sym_LT_LPAREN] = ACTIONS(7042), - [anon_sym_GT_LPAREN] = ACTIONS(7042), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7042), - [anon_sym_SEMI] = ACTIONS(7042), - [anon_sym_LF] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - }, - [2933] = { - [sym_file_descriptor] = ACTIONS(3293), - [sym__concat] = ACTIONS(3293), - [sym_variable_name] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(4614), - [anon_sym_RPAREN] = ACTIONS(3293), - [anon_sym_PIPE_AMP] = ACTIONS(3293), - [anon_sym_AMP_AMP] = ACTIONS(3293), - [anon_sym_PIPE_PIPE] = ACTIONS(3293), - [anon_sym_LT] = ACTIONS(4614), - [anon_sym_GT] = ACTIONS(4614), - [anon_sym_GT_GT] = ACTIONS(3293), - [anon_sym_AMP_GT] = ACTIONS(4614), - [anon_sym_AMP_GT_GT] = ACTIONS(3293), - [anon_sym_LT_AMP] = ACTIONS(3293), - [anon_sym_GT_AMP] = ACTIONS(3293), - [sym__special_characters] = ACTIONS(4614), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_DOLLAR] = ACTIONS(4614), - [sym_raw_string] = ACTIONS(3293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), - [anon_sym_BQUOTE] = ACTIONS(3293), - [anon_sym_LT_LPAREN] = ACTIONS(3293), - [anon_sym_GT_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4614), - }, - [2934] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7044), - [sym_comment] = ACTIONS(56), - }, - [2935] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7046), - [sym_comment] = ACTIONS(56), - }, - [2936] = { - [anon_sym_RBRACE] = ACTIONS(7046), - [sym_comment] = ACTIONS(56), - }, - [2937] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3476), - [anon_sym_RBRACE] = ACTIONS(7048), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2938] = { - [sym_file_descriptor] = ACTIONS(3357), - [sym__concat] = ACTIONS(3357), - [sym_variable_name] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(4622), - [anon_sym_RPAREN] = ACTIONS(3357), - [anon_sym_PIPE_AMP] = ACTIONS(3357), - [anon_sym_AMP_AMP] = ACTIONS(3357), - [anon_sym_PIPE_PIPE] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(4622), - [anon_sym_GT] = ACTIONS(4622), - [anon_sym_GT_GT] = ACTIONS(3357), - [anon_sym_AMP_GT] = ACTIONS(4622), - [anon_sym_AMP_GT_GT] = ACTIONS(3357), - [anon_sym_LT_AMP] = ACTIONS(3357), - [anon_sym_GT_AMP] = ACTIONS(3357), - [sym__special_characters] = ACTIONS(4622), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_DOLLAR] = ACTIONS(4622), - [sym_raw_string] = ACTIONS(3357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), - [anon_sym_BQUOTE] = ACTIONS(3357), - [anon_sym_LT_LPAREN] = ACTIONS(3357), - [anon_sym_GT_LPAREN] = ACTIONS(3357), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4622), - }, - [2939] = { - [sym_concatenation] = STATE(3479), - [sym_string] = STATE(3478), - [sym_simple_expansion] = STATE(3478), - [sym_string_expansion] = STATE(3478), - [sym_expansion] = STATE(3478), - [sym_command_substitution] = STATE(3478), - [sym_process_substitution] = STATE(3478), - [anon_sym_RBRACE] = ACTIONS(7046), - [sym__special_characters] = ACTIONS(7050), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(7052), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7054), - }, - [2940] = { - [sym_file_descriptor] = ACTIONS(3402), - [sym__concat] = ACTIONS(3402), - [sym_variable_name] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(4630), - [anon_sym_RPAREN] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [anon_sym_LT] = ACTIONS(4630), - [anon_sym_GT] = ACTIONS(4630), - [anon_sym_GT_GT] = ACTIONS(3402), - [anon_sym_AMP_GT] = ACTIONS(4630), - [anon_sym_AMP_GT_GT] = ACTIONS(3402), - [anon_sym_LT_AMP] = ACTIONS(3402), - [anon_sym_GT_AMP] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(4630), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(4630), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4630), - }, - [2941] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7056), - }, - [2942] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7058), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2943] = { - [sym_file_descriptor] = ACTIONS(3410), - [sym__concat] = ACTIONS(3410), - [sym_variable_name] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(4636), - [anon_sym_RPAREN] = ACTIONS(3410), - [anon_sym_PIPE_AMP] = ACTIONS(3410), - [anon_sym_AMP_AMP] = ACTIONS(3410), - [anon_sym_PIPE_PIPE] = ACTIONS(3410), - [anon_sym_LT] = ACTIONS(4636), - [anon_sym_GT] = ACTIONS(4636), - [anon_sym_GT_GT] = ACTIONS(3410), - [anon_sym_AMP_GT] = ACTIONS(4636), - [anon_sym_AMP_GT_GT] = ACTIONS(3410), - [anon_sym_LT_AMP] = ACTIONS(3410), - [anon_sym_GT_AMP] = ACTIONS(3410), - [sym__special_characters] = ACTIONS(4636), - [anon_sym_DQUOTE] = ACTIONS(3410), - [anon_sym_DOLLAR] = ACTIONS(4636), - [sym_raw_string] = ACTIONS(3410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), - [anon_sym_BQUOTE] = ACTIONS(3410), - [anon_sym_LT_LPAREN] = ACTIONS(3410), - [anon_sym_GT_LPAREN] = ACTIONS(3410), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4636), - }, - [2944] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7060), - }, - [2945] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7062), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2946] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7064), - }, - [2947] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7046), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2948] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3486), - [anon_sym_RBRACE] = ACTIONS(7066), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2949] = { - [sym_file_descriptor] = ACTIONS(3422), - [sym__concat] = ACTIONS(3422), - [sym_variable_name] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(4646), - [anon_sym_RPAREN] = ACTIONS(3422), - [anon_sym_PIPE_AMP] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(4646), - [anon_sym_GT] = ACTIONS(4646), - [anon_sym_GT_GT] = ACTIONS(3422), - [anon_sym_AMP_GT] = ACTIONS(4646), - [anon_sym_AMP_GT_GT] = ACTIONS(3422), - [anon_sym_LT_AMP] = ACTIONS(3422), - [anon_sym_GT_AMP] = ACTIONS(3422), - [sym__special_characters] = ACTIONS(4646), - [anon_sym_DQUOTE] = ACTIONS(3422), - [anon_sym_DOLLAR] = ACTIONS(4646), - [sym_raw_string] = ACTIONS(3422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), - [anon_sym_BQUOTE] = ACTIONS(3422), - [anon_sym_LT_LPAREN] = ACTIONS(3422), - [anon_sym_GT_LPAREN] = ACTIONS(3422), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4646), - }, - [2950] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3488), - [anon_sym_RBRACE] = ACTIONS(7068), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2951] = { - [anon_sym_PIPE] = ACTIONS(7070), - [anon_sym_RPAREN] = ACTIONS(7072), - [anon_sym_PIPE_AMP] = ACTIONS(7072), - [anon_sym_AMP_AMP] = ACTIONS(7072), - [anon_sym_PIPE_PIPE] = ACTIONS(7072), - [anon_sym_BQUOTE] = ACTIONS(7072), - [sym_comment] = ACTIONS(56), - }, - [2952] = { - [anon_sym_PIPE] = ACTIONS(6116), - [anon_sym_RPAREN] = ACTIONS(4307), - [anon_sym_PIPE_AMP] = ACTIONS(4307), - [anon_sym_AMP_AMP] = ACTIONS(4307), - [anon_sym_PIPE_PIPE] = ACTIONS(4307), - [anon_sym_BQUOTE] = ACTIONS(4307), - [sym_comment] = ACTIONS(56), - }, - [2953] = { - [anon_sym_PIPE] = ACTIONS(7074), - [anon_sym_RPAREN] = ACTIONS(7076), - [anon_sym_PIPE_AMP] = ACTIONS(7076), - [anon_sym_AMP_AMP] = ACTIONS(7076), - [anon_sym_PIPE_PIPE] = ACTIONS(7076), - [anon_sym_BQUOTE] = ACTIONS(7076), - [sym_comment] = ACTIONS(56), - }, - [2954] = { - [anon_sym_fi] = ACTIONS(7078), - [sym_comment] = ACTIONS(56), - }, - [2955] = { - [anon_sym_PIPE] = ACTIONS(7080), - [anon_sym_RPAREN] = ACTIONS(7082), - [anon_sym_PIPE_AMP] = ACTIONS(7082), - [anon_sym_AMP_AMP] = ACTIONS(7082), - [anon_sym_PIPE_PIPE] = ACTIONS(7082), - [anon_sym_BQUOTE] = ACTIONS(7082), - [sym_comment] = ACTIONS(56), - }, - [2956] = { - [anon_sym_esac] = ACTIONS(7084), - [sym_comment] = ACTIONS(56), - }, - [2957] = { - [anon_sym_PIPE] = ACTIONS(7086), - [anon_sym_RPAREN] = ACTIONS(7088), - [anon_sym_PIPE_AMP] = ACTIONS(7088), - [anon_sym_AMP_AMP] = ACTIONS(7088), - [anon_sym_PIPE_PIPE] = ACTIONS(7088), - [anon_sym_BQUOTE] = ACTIONS(7088), - [sym_comment] = ACTIONS(56), - }, - [2958] = { - [sym_case_item] = STATE(1338), - [sym_last_case_item] = STATE(3491), - [sym_concatenation] = STATE(1340), - [sym_string] = STATE(1333), - [sym_simple_expansion] = STATE(1333), - [sym_string_expansion] = STATE(1333), - [sym_expansion] = STATE(1333), - [sym_command_substitution] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_case_statement_repeat1] = STATE(2019), - [sym__special_characters] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2711), - [sym_raw_string] = ACTIONS(2713), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), - [anon_sym_BQUOTE] = ACTIONS(2719), - [anon_sym_LT_LPAREN] = ACTIONS(2721), - [anon_sym_GT_LPAREN] = ACTIONS(2721), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4364), - }, - [2959] = { - [anon_sym_PIPE] = ACTIONS(7090), - [anon_sym_RPAREN] = ACTIONS(7092), - [anon_sym_PIPE_AMP] = ACTIONS(7092), - [anon_sym_AMP_AMP] = ACTIONS(7092), - [anon_sym_PIPE_PIPE] = ACTIONS(7092), - [anon_sym_BQUOTE] = ACTIONS(7092), - [sym_comment] = ACTIONS(56), - }, - [2960] = { - [anon_sym_esac] = ACTIONS(7094), - [sym_comment] = ACTIONS(56), - }, - [2961] = { - [anon_sym_PIPE] = ACTIONS(7096), - [anon_sym_RPAREN] = ACTIONS(7098), - [anon_sym_PIPE_AMP] = ACTIONS(7098), - [anon_sym_AMP_AMP] = ACTIONS(7098), - [anon_sym_PIPE_PIPE] = ACTIONS(7098), - [anon_sym_BQUOTE] = ACTIONS(7098), - [sym_comment] = ACTIONS(56), - }, - [2962] = { - [sym_case_item] = STATE(1338), - [sym_last_case_item] = STATE(3493), - [sym_concatenation] = STATE(1340), - [sym_string] = STATE(1333), - [sym_simple_expansion] = STATE(1333), - [sym_string_expansion] = STATE(1333), - [sym_expansion] = STATE(1333), - [sym_command_substitution] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_case_statement_repeat1] = STATE(2019), - [sym__special_characters] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2711), - [sym_raw_string] = ACTIONS(2713), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), - [anon_sym_BQUOTE] = ACTIONS(2719), - [anon_sym_LT_LPAREN] = ACTIONS(2721), - [anon_sym_GT_LPAREN] = ACTIONS(2721), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4364), - }, - [2963] = { - [anon_sym_PIPE] = ACTIONS(7100), - [anon_sym_RPAREN] = ACTIONS(7102), - [anon_sym_PIPE_AMP] = ACTIONS(7102), - [anon_sym_AMP_AMP] = ACTIONS(7102), - [anon_sym_PIPE_PIPE] = ACTIONS(7102), - [anon_sym_BQUOTE] = ACTIONS(7102), - [sym_comment] = ACTIONS(56), - }, - [2964] = { - [aux_sym_concatenation_repeat1] = STATE(2968), - [sym__concat] = ACTIONS(6152), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_RPAREN] = ACTIONS(1241), - [anon_sym_PIPE_AMP] = ACTIONS(1241), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [sym_comment] = ACTIONS(56), - }, - [2965] = { - [aux_sym_concatenation_repeat1] = STATE(2968), - [sym__concat] = ACTIONS(6152), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_PIPE_AMP] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [sym_comment] = ACTIONS(56), - }, - [2966] = { - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_PIPE_AMP] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_BQUOTE] = ACTIONS(1245), - [sym_comment] = ACTIONS(56), - }, - [2967] = { - [sym_string] = STATE(3494), - [sym_simple_expansion] = STATE(3494), - [sym_string_expansion] = STATE(3494), - [sym_expansion] = STATE(3494), - [sym_command_substitution] = STATE(3494), - [sym_process_substitution] = STATE(3494), - [sym__special_characters] = ACTIONS(7104), - [anon_sym_DQUOTE] = ACTIONS(4985), - [anon_sym_DOLLAR] = ACTIONS(4987), - [sym_raw_string] = ACTIONS(7106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4991), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4993), - [anon_sym_BQUOTE] = ACTIONS(4995), - [anon_sym_LT_LPAREN] = ACTIONS(4997), - [anon_sym_GT_LPAREN] = ACTIONS(4997), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7104), - }, - [2968] = { - [aux_sym_concatenation_repeat1] = STATE(3495), - [sym__concat] = ACTIONS(6152), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [sym_comment] = ACTIONS(56), - }, - [2969] = { - [sym__concat] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [sym_comment] = ACTIONS(56), - }, - [2970] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(7108), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [2971] = { - [sym__concat] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [sym_comment] = ACTIONS(56), - }, - [2972] = { - [sym__concat] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_RPAREN] = ACTIONS(830), - [anon_sym_PIPE_AMP] = ACTIONS(830), - [anon_sym_AMP_AMP] = ACTIONS(830), - [anon_sym_PIPE_PIPE] = ACTIONS(830), - [sym_comment] = ACTIONS(56), - }, - [2973] = { - [sym__concat] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [sym_comment] = ACTIONS(56), - }, - [2974] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(7110), - [sym_comment] = ACTIONS(56), - }, - [2975] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3500), - [anon_sym_RBRACE] = ACTIONS(7112), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(7114), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2976] = { - [sym_subscript] = STATE(3504), - [sym_variable_name] = ACTIONS(7116), - [anon_sym_DOLLAR] = ACTIONS(7118), - [anon_sym_DASH] = ACTIONS(7118), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7120), - [anon_sym_STAR] = ACTIONS(7118), - [anon_sym_AT] = ACTIONS(7118), - [anon_sym_QMARK] = ACTIONS(7118), - [anon_sym_0] = ACTIONS(7122), - [anon_sym__] = ACTIONS(7122), - }, - [2977] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3507), - [anon_sym_RBRACE] = ACTIONS(7124), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(7126), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2978] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3510), - [anon_sym_RBRACE] = ACTIONS(7128), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(7130), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2979] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(7132), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [2980] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(7132), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [2981] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(7132), - [sym_comment] = ACTIONS(56), - }, - [2982] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(7132), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [2983] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(7134), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [2984] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(7134), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [2985] = { - [sym_variable_name] = ACTIONS(4181), - [anon_sym_PIPE] = ACTIONS(6079), - [anon_sym_RPAREN] = ACTIONS(4181), - [anon_sym_PIPE_AMP] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_PIPE_PIPE] = ACTIONS(4181), - [sym__special_characters] = ACTIONS(6079), - [anon_sym_DQUOTE] = ACTIONS(4181), - [anon_sym_DOLLAR] = ACTIONS(6079), - [sym_raw_string] = ACTIONS(4181), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4181), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4181), - [anon_sym_BQUOTE] = ACTIONS(4181), - [anon_sym_LT_LPAREN] = ACTIONS(4181), - [anon_sym_GT_LPAREN] = ACTIONS(4181), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6079), - [sym_word] = ACTIONS(4183), - }, - [2986] = { - [sym__concat] = ACTIONS(4802), - [sym_variable_name] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_RPAREN] = ACTIONS(4802), - [anon_sym_PIPE_AMP] = ACTIONS(4802), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [sym__special_characters] = ACTIONS(5860), - [anon_sym_DQUOTE] = ACTIONS(4802), - [anon_sym_DOLLAR] = ACTIONS(5860), - [sym_raw_string] = ACTIONS(4802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), - [anon_sym_BQUOTE] = ACTIONS(4802), - [anon_sym_LT_LPAREN] = ACTIONS(4802), - [anon_sym_GT_LPAREN] = ACTIONS(4802), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5860), - [sym_word] = ACTIONS(4804), - }, - [2987] = { - [sym__concat] = ACTIONS(4808), - [sym_variable_name] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(4808), - [anon_sym_PIPE_AMP] = ACTIONS(4808), - [anon_sym_AMP_AMP] = ACTIONS(4808), - [anon_sym_PIPE_PIPE] = ACTIONS(4808), - [sym__special_characters] = ACTIONS(5862), - [anon_sym_DQUOTE] = ACTIONS(4808), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4808), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), - [anon_sym_BQUOTE] = ACTIONS(4808), - [anon_sym_LT_LPAREN] = ACTIONS(4808), - [anon_sym_GT_LPAREN] = ACTIONS(4808), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5862), - [sym_word] = ACTIONS(4810), - }, - [2988] = { - [sym__concat] = ACTIONS(4871), - [sym_variable_name] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_RPAREN] = ACTIONS(4871), - [anon_sym_PIPE_AMP] = ACTIONS(4871), - [anon_sym_AMP_AMP] = ACTIONS(4871), - [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(5864), - [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5864), - [sym_raw_string] = ACTIONS(4871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), - [anon_sym_BQUOTE] = ACTIONS(4871), - [anon_sym_LT_LPAREN] = ACTIONS(4871), - [anon_sym_GT_LPAREN] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5864), - [sym_word] = ACTIONS(4873), - }, - [2989] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7136), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2990] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7138), - [sym_comment] = ACTIONS(56), - }, - [2991] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7140), - [sym_comment] = ACTIONS(56), - }, - [2992] = { - [anon_sym_RBRACE] = ACTIONS(7140), - [sym_comment] = ACTIONS(56), - }, - [2993] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3517), - [anon_sym_RBRACE] = ACTIONS(7142), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2994] = { - [sym__concat] = ACTIONS(4883), - [sym_variable_name] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5874), - [anon_sym_RPAREN] = ACTIONS(4883), - [anon_sym_PIPE_AMP] = ACTIONS(4883), - [anon_sym_AMP_AMP] = ACTIONS(4883), - [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(5874), - [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5874), - [sym_raw_string] = ACTIONS(4883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(4883), - [anon_sym_LT_LPAREN] = ACTIONS(4883), - [anon_sym_GT_LPAREN] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5874), - [sym_word] = ACTIONS(4885), - }, - [2995] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3519), - [anon_sym_RBRACE] = ACTIONS(7144), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2996] = { - [sym__concat] = ACTIONS(4889), - [sym_variable_name] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5878), - [anon_sym_RPAREN] = ACTIONS(4889), - [anon_sym_PIPE_AMP] = ACTIONS(4889), - [anon_sym_AMP_AMP] = ACTIONS(4889), - [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(5878), - [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5878), - [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(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5878), - [sym_word] = ACTIONS(4891), - }, - [2997] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3521), - [anon_sym_RBRACE] = ACTIONS(7146), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [2998] = { - [sym__concat] = ACTIONS(4895), - [sym_variable_name] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(5882), - [anon_sym_RPAREN] = ACTIONS(4895), - [anon_sym_PIPE_AMP] = ACTIONS(4895), - [anon_sym_AMP_AMP] = ACTIONS(4895), - [anon_sym_PIPE_PIPE] = ACTIONS(4895), - [sym__special_characters] = ACTIONS(5882), - [anon_sym_DQUOTE] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(5882), - [sym_raw_string] = ACTIONS(4895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), - [anon_sym_BQUOTE] = ACTIONS(4895), - [anon_sym_LT_LPAREN] = ACTIONS(4895), - [anon_sym_GT_LPAREN] = ACTIONS(4895), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5882), - [sym_word] = ACTIONS(4897), - }, - [2999] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7148), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3000] = { - [sym__concat] = ACTIONS(4901), - [sym_variable_name] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(5886), - [anon_sym_RPAREN] = ACTIONS(4901), - [anon_sym_PIPE_AMP] = ACTIONS(4901), - [anon_sym_AMP_AMP] = ACTIONS(4901), - [anon_sym_PIPE_PIPE] = ACTIONS(4901), - [sym__special_characters] = ACTIONS(5886), - [anon_sym_DQUOTE] = ACTIONS(4901), - [anon_sym_DOLLAR] = ACTIONS(5886), - [sym_raw_string] = ACTIONS(4901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), - [anon_sym_BQUOTE] = ACTIONS(4901), - [anon_sym_LT_LPAREN] = ACTIONS(4901), - [anon_sym_GT_LPAREN] = ACTIONS(4901), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5886), - [sym_word] = ACTIONS(4903), - }, - [3001] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7150), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3002] = { - [sym__concat] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_RPAREN] = ACTIONS(4802), - [anon_sym_PIPE_AMP] = ACTIONS(4802), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [sym__special_characters] = ACTIONS(5860), - [anon_sym_DQUOTE] = ACTIONS(4802), - [anon_sym_DOLLAR] = ACTIONS(5860), - [sym_raw_string] = ACTIONS(4802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), - [anon_sym_BQUOTE] = ACTIONS(4802), - [anon_sym_LT_LPAREN] = ACTIONS(4802), - [anon_sym_GT_LPAREN] = ACTIONS(4802), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5860), - [sym_word] = ACTIONS(4804), - }, - [3003] = { - [sym__concat] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(4808), - [anon_sym_PIPE_AMP] = ACTIONS(4808), - [anon_sym_AMP_AMP] = ACTIONS(4808), - [anon_sym_PIPE_PIPE] = ACTIONS(4808), - [sym__special_characters] = ACTIONS(5862), - [anon_sym_DQUOTE] = ACTIONS(4808), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4808), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), - [anon_sym_BQUOTE] = ACTIONS(4808), - [anon_sym_LT_LPAREN] = ACTIONS(4808), - [anon_sym_GT_LPAREN] = ACTIONS(4808), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5862), - [sym_word] = ACTIONS(4810), - }, - [3004] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_RPAREN] = ACTIONS(4871), - [anon_sym_PIPE_AMP] = ACTIONS(4871), - [anon_sym_AMP_AMP] = ACTIONS(4871), - [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(5864), - [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5864), - [sym_raw_string] = ACTIONS(4871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), - [anon_sym_BQUOTE] = ACTIONS(4871), - [anon_sym_LT_LPAREN] = ACTIONS(4871), - [anon_sym_GT_LPAREN] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5864), - [sym_word] = ACTIONS(4873), - }, - [3005] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7152), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3006] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7154), - [sym_comment] = ACTIONS(56), - }, - [3007] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7156), - [sym_comment] = ACTIONS(56), - }, - [3008] = { - [anon_sym_RBRACE] = ACTIONS(7156), - [sym_comment] = ACTIONS(56), - }, - [3009] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3528), - [anon_sym_RBRACE] = ACTIONS(7158), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3010] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5874), - [anon_sym_RPAREN] = ACTIONS(4883), - [anon_sym_PIPE_AMP] = ACTIONS(4883), - [anon_sym_AMP_AMP] = ACTIONS(4883), - [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(5874), - [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5874), - [sym_raw_string] = ACTIONS(4883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(4883), - [anon_sym_LT_LPAREN] = ACTIONS(4883), - [anon_sym_GT_LPAREN] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5874), - [sym_word] = ACTIONS(4885), - }, - [3011] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3530), - [anon_sym_RBRACE] = ACTIONS(7160), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3012] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5878), - [anon_sym_RPAREN] = ACTIONS(4889), - [anon_sym_PIPE_AMP] = ACTIONS(4889), - [anon_sym_AMP_AMP] = ACTIONS(4889), - [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(5878), - [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5878), - [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(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5878), - [sym_word] = ACTIONS(4891), - }, - [3013] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3532), - [anon_sym_RBRACE] = ACTIONS(7162), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3014] = { - [sym__concat] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(5882), - [anon_sym_RPAREN] = ACTIONS(4895), - [anon_sym_PIPE_AMP] = ACTIONS(4895), - [anon_sym_AMP_AMP] = ACTIONS(4895), - [anon_sym_PIPE_PIPE] = ACTIONS(4895), - [sym__special_characters] = ACTIONS(5882), - [anon_sym_DQUOTE] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(5882), - [sym_raw_string] = ACTIONS(4895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), - [anon_sym_BQUOTE] = ACTIONS(4895), - [anon_sym_LT_LPAREN] = ACTIONS(4895), - [anon_sym_GT_LPAREN] = ACTIONS(4895), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5882), - [sym_word] = ACTIONS(4897), - }, - [3015] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7164), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3016] = { - [sym__concat] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(5886), - [anon_sym_RPAREN] = ACTIONS(4901), - [anon_sym_PIPE_AMP] = ACTIONS(4901), - [anon_sym_AMP_AMP] = ACTIONS(4901), - [anon_sym_PIPE_PIPE] = ACTIONS(4901), - [sym__special_characters] = ACTIONS(5886), - [anon_sym_DQUOTE] = ACTIONS(4901), - [anon_sym_DOLLAR] = ACTIONS(5886), - [sym_raw_string] = ACTIONS(4901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), - [anon_sym_BQUOTE] = ACTIONS(4901), - [anon_sym_LT_LPAREN] = ACTIONS(4901), - [anon_sym_GT_LPAREN] = ACTIONS(4901), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5886), - [sym_word] = ACTIONS(4903), - }, - [3017] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7166), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3018] = { - [sym_file_descriptor] = ACTIONS(6041), - [sym__concat] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6930), - [anon_sym_RPAREN] = ACTIONS(6041), - [anon_sym_PIPE_AMP] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6041), - [anon_sym_PIPE_PIPE] = ACTIONS(6041), - [anon_sym_EQ_TILDE] = ACTIONS(6930), - [anon_sym_EQ_EQ] = ACTIONS(6930), - [anon_sym_LT] = ACTIONS(6930), - [anon_sym_GT] = ACTIONS(6930), - [anon_sym_GT_GT] = ACTIONS(6041), - [anon_sym_AMP_GT] = ACTIONS(6930), - [anon_sym_AMP_GT_GT] = ACTIONS(6041), - [anon_sym_LT_AMP] = ACTIONS(6041), - [anon_sym_GT_AMP] = ACTIONS(6041), - [anon_sym_LT_LT] = ACTIONS(6930), - [anon_sym_LT_LT_DASH] = ACTIONS(6041), - [anon_sym_LT_LT_LT] = ACTIONS(6041), - [sym__special_characters] = ACTIONS(6930), - [anon_sym_DQUOTE] = ACTIONS(6041), - [anon_sym_DOLLAR] = ACTIONS(6930), - [sym_raw_string] = ACTIONS(6041), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), - [anon_sym_BQUOTE] = ACTIONS(6041), - [anon_sym_LT_LPAREN] = ACTIONS(6041), - [anon_sym_GT_LPAREN] = ACTIONS(6041), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6043), - }, - [3019] = { - [sym_file_descriptor] = ACTIONS(6045), - [sym__concat] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6932), - [anon_sym_RPAREN] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_EQ_TILDE] = ACTIONS(6932), - [anon_sym_EQ_EQ] = ACTIONS(6932), - [anon_sym_LT] = ACTIONS(6932), - [anon_sym_GT] = ACTIONS(6932), - [anon_sym_GT_GT] = ACTIONS(6045), - [anon_sym_AMP_GT] = ACTIONS(6932), - [anon_sym_AMP_GT_GT] = ACTIONS(6045), - [anon_sym_LT_AMP] = ACTIONS(6045), - [anon_sym_GT_AMP] = ACTIONS(6045), - [anon_sym_LT_LT] = ACTIONS(6932), - [anon_sym_LT_LT_DASH] = ACTIONS(6045), - [anon_sym_LT_LT_LT] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6932), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6932), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6047), - }, - [3020] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_RPAREN] = ACTIONS(6049), - [anon_sym_PIPE_AMP] = ACTIONS(6049), - [anon_sym_AMP_AMP] = ACTIONS(6049), - [anon_sym_PIPE_PIPE] = ACTIONS(6049), - [anon_sym_EQ_TILDE] = ACTIONS(6934), - [anon_sym_EQ_EQ] = ACTIONS(6934), - [anon_sym_LT] = ACTIONS(6934), - [anon_sym_GT] = ACTIONS(6934), - [anon_sym_GT_GT] = ACTIONS(6049), - [anon_sym_AMP_GT] = ACTIONS(6934), - [anon_sym_AMP_GT_GT] = ACTIONS(6049), - [anon_sym_LT_AMP] = ACTIONS(6049), - [anon_sym_GT_AMP] = ACTIONS(6049), - [anon_sym_LT_LT] = ACTIONS(6934), - [anon_sym_LT_LT_DASH] = ACTIONS(6049), - [anon_sym_LT_LT_LT] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6934), - [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), - [anon_sym_BQUOTE] = ACTIONS(6049), - [anon_sym_LT_LPAREN] = ACTIONS(6049), - [anon_sym_GT_LPAREN] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6051), - }, - [3021] = { - [sym_file_descriptor] = ACTIONS(6053), - [sym__concat] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6936), - [anon_sym_RPAREN] = ACTIONS(6053), - [anon_sym_PIPE_AMP] = ACTIONS(6053), - [anon_sym_AMP_AMP] = ACTIONS(6053), - [anon_sym_PIPE_PIPE] = ACTIONS(6053), - [anon_sym_EQ_TILDE] = ACTIONS(6936), - [anon_sym_EQ_EQ] = ACTIONS(6936), - [anon_sym_LT] = ACTIONS(6936), - [anon_sym_GT] = ACTIONS(6936), - [anon_sym_GT_GT] = ACTIONS(6053), - [anon_sym_AMP_GT] = ACTIONS(6936), - [anon_sym_AMP_GT_GT] = ACTIONS(6053), - [anon_sym_LT_AMP] = ACTIONS(6053), - [anon_sym_GT_AMP] = ACTIONS(6053), - [anon_sym_LT_LT] = ACTIONS(6936), - [anon_sym_LT_LT_DASH] = ACTIONS(6053), - [anon_sym_LT_LT_LT] = ACTIONS(6053), - [sym__special_characters] = ACTIONS(6936), - [anon_sym_DQUOTE] = ACTIONS(6053), - [anon_sym_DOLLAR] = ACTIONS(6936), - [sym_raw_string] = ACTIONS(6053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), - [anon_sym_BQUOTE] = ACTIONS(6053), - [anon_sym_LT_LPAREN] = ACTIONS(6053), - [anon_sym_GT_LPAREN] = ACTIONS(6053), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6055), - }, - [3022] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7168), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3023] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6940), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_PIPE_AMP] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [anon_sym_EQ_TILDE] = ACTIONS(6940), - [anon_sym_EQ_EQ] = ACTIONS(6940), - [anon_sym_LT] = ACTIONS(6940), - [anon_sym_GT] = ACTIONS(6940), - [anon_sym_GT_GT] = ACTIONS(6059), - [anon_sym_AMP_GT] = ACTIONS(6940), - [anon_sym_AMP_GT_GT] = ACTIONS(6059), - [anon_sym_LT_AMP] = ACTIONS(6059), - [anon_sym_GT_AMP] = ACTIONS(6059), - [anon_sym_LT_LT] = ACTIONS(6940), - [anon_sym_LT_LT_DASH] = ACTIONS(6059), - [anon_sym_LT_LT_LT] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6940), - [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6940), - [sym_raw_string] = ACTIONS(6059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), - [anon_sym_BQUOTE] = ACTIONS(6059), - [anon_sym_LT_LPAREN] = ACTIONS(6059), - [anon_sym_GT_LPAREN] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6061), - }, - [3024] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7170), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3025] = { - [sym_file_descriptor] = ACTIONS(6065), - [sym__concat] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6944), - [anon_sym_RPAREN] = ACTIONS(6065), - [anon_sym_PIPE_AMP] = ACTIONS(6065), - [anon_sym_AMP_AMP] = ACTIONS(6065), - [anon_sym_PIPE_PIPE] = ACTIONS(6065), - [anon_sym_EQ_TILDE] = ACTIONS(6944), - [anon_sym_EQ_EQ] = ACTIONS(6944), - [anon_sym_LT] = ACTIONS(6944), - [anon_sym_GT] = ACTIONS(6944), - [anon_sym_GT_GT] = ACTIONS(6065), - [anon_sym_AMP_GT] = ACTIONS(6944), - [anon_sym_AMP_GT_GT] = ACTIONS(6065), - [anon_sym_LT_AMP] = ACTIONS(6065), - [anon_sym_GT_AMP] = ACTIONS(6065), - [anon_sym_LT_LT] = ACTIONS(6944), - [anon_sym_LT_LT_DASH] = ACTIONS(6065), - [anon_sym_LT_LT_LT] = ACTIONS(6065), - [sym__special_characters] = ACTIONS(6944), - [anon_sym_DQUOTE] = ACTIONS(6065), - [anon_sym_DOLLAR] = ACTIONS(6944), - [sym_raw_string] = ACTIONS(6065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), - [anon_sym_BQUOTE] = ACTIONS(6065), - [anon_sym_LT_LPAREN] = ACTIONS(6065), - [anon_sym_GT_LPAREN] = ACTIONS(6065), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6067), - }, - [3026] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7172), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3027] = { - [sym_file_descriptor] = ACTIONS(6071), - [sym__concat] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6948), - [anon_sym_RPAREN] = ACTIONS(6071), - [anon_sym_PIPE_AMP] = ACTIONS(6071), - [anon_sym_AMP_AMP] = ACTIONS(6071), - [anon_sym_PIPE_PIPE] = ACTIONS(6071), - [anon_sym_EQ_TILDE] = ACTIONS(6948), - [anon_sym_EQ_EQ] = ACTIONS(6948), - [anon_sym_LT] = ACTIONS(6948), - [anon_sym_GT] = ACTIONS(6948), - [anon_sym_GT_GT] = ACTIONS(6071), - [anon_sym_AMP_GT] = ACTIONS(6948), - [anon_sym_AMP_GT_GT] = ACTIONS(6071), - [anon_sym_LT_AMP] = ACTIONS(6071), - [anon_sym_GT_AMP] = ACTIONS(6071), - [anon_sym_LT_LT] = ACTIONS(6948), - [anon_sym_LT_LT_DASH] = ACTIONS(6071), - [anon_sym_LT_LT_LT] = ACTIONS(6071), - [sym__special_characters] = ACTIONS(6948), - [anon_sym_DQUOTE] = ACTIONS(6071), - [anon_sym_DOLLAR] = ACTIONS(6948), - [sym_raw_string] = ACTIONS(6071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), - [anon_sym_BQUOTE] = ACTIONS(6071), - [anon_sym_LT_LPAREN] = ACTIONS(6071), - [anon_sym_GT_LPAREN] = ACTIONS(6071), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6073), - }, - [3028] = { - [sym_file_descriptor] = ACTIONS(6075), - [sym__concat] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_RPAREN] = ACTIONS(6075), - [anon_sym_PIPE_AMP] = ACTIONS(6075), - [anon_sym_AMP_AMP] = ACTIONS(6075), - [anon_sym_PIPE_PIPE] = ACTIONS(6075), - [anon_sym_EQ_TILDE] = ACTIONS(6950), - [anon_sym_EQ_EQ] = ACTIONS(6950), - [anon_sym_LT] = ACTIONS(6950), - [anon_sym_GT] = ACTIONS(6950), - [anon_sym_GT_GT] = ACTIONS(6075), - [anon_sym_AMP_GT] = ACTIONS(6950), - [anon_sym_AMP_GT_GT] = ACTIONS(6075), - [anon_sym_LT_AMP] = ACTIONS(6075), - [anon_sym_GT_AMP] = ACTIONS(6075), - [anon_sym_LT_LT] = ACTIONS(6950), - [anon_sym_LT_LT_DASH] = ACTIONS(6075), - [anon_sym_LT_LT_LT] = ACTIONS(6075), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6075), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), - [anon_sym_BQUOTE] = ACTIONS(6075), - [anon_sym_LT_LPAREN] = ACTIONS(6075), - [anon_sym_GT_LPAREN] = ACTIONS(6075), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6077), - }, - [3029] = { - [sym_file_descriptor] = ACTIONS(3293), - [sym__concat] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(4614), - [anon_sym_RPAREN] = ACTIONS(3293), - [anon_sym_PIPE_AMP] = ACTIONS(3293), - [anon_sym_AMP_AMP] = ACTIONS(3293), - [anon_sym_PIPE_PIPE] = ACTIONS(3293), - [anon_sym_LT] = ACTIONS(4614), - [anon_sym_GT] = ACTIONS(4614), - [anon_sym_GT_GT] = ACTIONS(3293), - [anon_sym_AMP_GT] = ACTIONS(4614), - [anon_sym_AMP_GT_GT] = ACTIONS(3293), - [anon_sym_LT_AMP] = ACTIONS(3293), - [anon_sym_GT_AMP] = ACTIONS(3293), - [anon_sym_LT_LT] = ACTIONS(4614), - [anon_sym_LT_LT_DASH] = ACTIONS(3293), - [anon_sym_LT_LT_LT] = ACTIONS(3293), - [sym_comment] = ACTIONS(56), - }, - [3030] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7174), - [sym_comment] = ACTIONS(56), - }, - [3031] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7176), - [sym_comment] = ACTIONS(56), - }, - [3032] = { - [anon_sym_RBRACE] = ACTIONS(7176), - [sym_comment] = ACTIONS(56), - }, - [3033] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3541), - [anon_sym_RBRACE] = ACTIONS(7178), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3034] = { - [sym_file_descriptor] = ACTIONS(3357), - [sym__concat] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(4622), - [anon_sym_RPAREN] = ACTIONS(3357), - [anon_sym_PIPE_AMP] = ACTIONS(3357), - [anon_sym_AMP_AMP] = ACTIONS(3357), - [anon_sym_PIPE_PIPE] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(4622), - [anon_sym_GT] = ACTIONS(4622), - [anon_sym_GT_GT] = ACTIONS(3357), - [anon_sym_AMP_GT] = ACTIONS(4622), - [anon_sym_AMP_GT_GT] = ACTIONS(3357), - [anon_sym_LT_AMP] = ACTIONS(3357), - [anon_sym_GT_AMP] = ACTIONS(3357), - [anon_sym_LT_LT] = ACTIONS(4622), - [anon_sym_LT_LT_DASH] = ACTIONS(3357), - [anon_sym_LT_LT_LT] = ACTIONS(3357), - [sym_comment] = ACTIONS(56), - }, - [3035] = { - [sym_concatenation] = STATE(3544), - [sym_string] = STATE(3543), - [sym_simple_expansion] = STATE(3543), - [sym_string_expansion] = STATE(3543), - [sym_expansion] = STATE(3543), - [sym_command_substitution] = STATE(3543), - [sym_process_substitution] = STATE(3543), - [anon_sym_RBRACE] = ACTIONS(7176), - [sym__special_characters] = ACTIONS(7180), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(7182), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7184), - }, - [3036] = { - [sym_file_descriptor] = ACTIONS(3402), - [sym__concat] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(4630), - [anon_sym_RPAREN] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [anon_sym_LT] = ACTIONS(4630), - [anon_sym_GT] = ACTIONS(4630), - [anon_sym_GT_GT] = ACTIONS(3402), - [anon_sym_AMP_GT] = ACTIONS(4630), - [anon_sym_AMP_GT_GT] = ACTIONS(3402), - [anon_sym_LT_AMP] = ACTIONS(3402), - [anon_sym_GT_AMP] = ACTIONS(3402), - [anon_sym_LT_LT] = ACTIONS(4630), - [anon_sym_LT_LT_DASH] = ACTIONS(3402), - [anon_sym_LT_LT_LT] = ACTIONS(3402), - [sym_comment] = ACTIONS(56), - }, - [3037] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7186), - }, - [3038] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7188), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3039] = { - [sym_file_descriptor] = ACTIONS(3410), - [sym__concat] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(4636), - [anon_sym_RPAREN] = ACTIONS(3410), - [anon_sym_PIPE_AMP] = ACTIONS(3410), - [anon_sym_AMP_AMP] = ACTIONS(3410), - [anon_sym_PIPE_PIPE] = ACTIONS(3410), - [anon_sym_LT] = ACTIONS(4636), - [anon_sym_GT] = ACTIONS(4636), - [anon_sym_GT_GT] = ACTIONS(3410), - [anon_sym_AMP_GT] = ACTIONS(4636), - [anon_sym_AMP_GT_GT] = ACTIONS(3410), - [anon_sym_LT_AMP] = ACTIONS(3410), - [anon_sym_GT_AMP] = ACTIONS(3410), - [anon_sym_LT_LT] = ACTIONS(4636), - [anon_sym_LT_LT_DASH] = ACTIONS(3410), - [anon_sym_LT_LT_LT] = ACTIONS(3410), - [sym_comment] = ACTIONS(56), - }, - [3040] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7190), - }, - [3041] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7192), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3042] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7194), - }, - [3043] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7176), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3044] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3551), - [anon_sym_RBRACE] = ACTIONS(7196), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3045] = { - [sym_file_descriptor] = ACTIONS(3422), - [sym__concat] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(4646), - [anon_sym_RPAREN] = ACTIONS(3422), - [anon_sym_PIPE_AMP] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(4646), - [anon_sym_GT] = ACTIONS(4646), - [anon_sym_GT_GT] = ACTIONS(3422), - [anon_sym_AMP_GT] = ACTIONS(4646), - [anon_sym_AMP_GT_GT] = ACTIONS(3422), - [anon_sym_LT_AMP] = ACTIONS(3422), - [anon_sym_GT_AMP] = ACTIONS(3422), - [anon_sym_LT_LT] = ACTIONS(4646), - [anon_sym_LT_LT_DASH] = ACTIONS(3422), - [anon_sym_LT_LT_LT] = ACTIONS(3422), - [sym_comment] = ACTIONS(56), - }, - [3046] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3553), - [anon_sym_RBRACE] = ACTIONS(7198), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3047] = { - [sym_file_descriptor] = ACTIONS(3293), - [sym__concat] = ACTIONS(3293), - [sym_variable_name] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(4614), - [anon_sym_PIPE_AMP] = ACTIONS(3293), - [anon_sym_AMP_AMP] = ACTIONS(3293), - [anon_sym_PIPE_PIPE] = ACTIONS(3293), - [anon_sym_LT] = ACTIONS(4614), - [anon_sym_GT] = ACTIONS(4614), - [anon_sym_GT_GT] = ACTIONS(3293), - [anon_sym_AMP_GT] = ACTIONS(4614), - [anon_sym_AMP_GT_GT] = ACTIONS(3293), - [anon_sym_LT_AMP] = ACTIONS(3293), - [anon_sym_GT_AMP] = ACTIONS(3293), - [sym__special_characters] = ACTIONS(4614), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_DOLLAR] = ACTIONS(4614), - [sym_raw_string] = ACTIONS(3293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), - [anon_sym_BQUOTE] = ACTIONS(3293), - [anon_sym_LT_LPAREN] = ACTIONS(3293), - [anon_sym_GT_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4614), - }, - [3048] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7200), - [sym_comment] = ACTIONS(56), - }, - [3049] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7202), - [sym_comment] = ACTIONS(56), - }, - [3050] = { - [anon_sym_RBRACE] = ACTIONS(7202), - [sym_comment] = ACTIONS(56), - }, - [3051] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3557), - [anon_sym_RBRACE] = ACTIONS(7204), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3052] = { - [sym_file_descriptor] = ACTIONS(3357), - [sym__concat] = ACTIONS(3357), - [sym_variable_name] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(4622), - [anon_sym_PIPE_AMP] = ACTIONS(3357), - [anon_sym_AMP_AMP] = ACTIONS(3357), - [anon_sym_PIPE_PIPE] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(4622), - [anon_sym_GT] = ACTIONS(4622), - [anon_sym_GT_GT] = ACTIONS(3357), - [anon_sym_AMP_GT] = ACTIONS(4622), - [anon_sym_AMP_GT_GT] = ACTIONS(3357), - [anon_sym_LT_AMP] = ACTIONS(3357), - [anon_sym_GT_AMP] = ACTIONS(3357), - [sym__special_characters] = ACTIONS(4622), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_DOLLAR] = ACTIONS(4622), - [sym_raw_string] = ACTIONS(3357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), - [anon_sym_BQUOTE] = ACTIONS(3357), - [anon_sym_LT_LPAREN] = ACTIONS(3357), - [anon_sym_GT_LPAREN] = ACTIONS(3357), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4622), - }, - [3053] = { - [sym_concatenation] = STATE(3560), - [sym_string] = STATE(3559), - [sym_simple_expansion] = STATE(3559), - [sym_string_expansion] = STATE(3559), - [sym_expansion] = STATE(3559), - [sym_command_substitution] = STATE(3559), - [sym_process_substitution] = STATE(3559), - [anon_sym_RBRACE] = ACTIONS(7202), - [sym__special_characters] = ACTIONS(7206), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(7208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7210), - }, - [3054] = { - [sym_file_descriptor] = ACTIONS(3402), - [sym__concat] = ACTIONS(3402), - [sym_variable_name] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(4630), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [anon_sym_LT] = ACTIONS(4630), - [anon_sym_GT] = ACTIONS(4630), - [anon_sym_GT_GT] = ACTIONS(3402), - [anon_sym_AMP_GT] = ACTIONS(4630), - [anon_sym_AMP_GT_GT] = ACTIONS(3402), - [anon_sym_LT_AMP] = ACTIONS(3402), - [anon_sym_GT_AMP] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(4630), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(4630), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4630), - }, - [3055] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7212), - }, - [3056] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7214), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3057] = { - [sym_file_descriptor] = ACTIONS(3410), - [sym__concat] = ACTIONS(3410), - [sym_variable_name] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(4636), - [anon_sym_PIPE_AMP] = ACTIONS(3410), - [anon_sym_AMP_AMP] = ACTIONS(3410), - [anon_sym_PIPE_PIPE] = ACTIONS(3410), - [anon_sym_LT] = ACTIONS(4636), - [anon_sym_GT] = ACTIONS(4636), - [anon_sym_GT_GT] = ACTIONS(3410), - [anon_sym_AMP_GT] = ACTIONS(4636), - [anon_sym_AMP_GT_GT] = ACTIONS(3410), - [anon_sym_LT_AMP] = ACTIONS(3410), - [anon_sym_GT_AMP] = ACTIONS(3410), - [sym__special_characters] = ACTIONS(4636), - [anon_sym_DQUOTE] = ACTIONS(3410), - [anon_sym_DOLLAR] = ACTIONS(4636), - [sym_raw_string] = ACTIONS(3410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), - [anon_sym_BQUOTE] = ACTIONS(3410), - [anon_sym_LT_LPAREN] = ACTIONS(3410), - [anon_sym_GT_LPAREN] = ACTIONS(3410), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4636), - }, - [3058] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7216), - }, - [3059] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7218), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3060] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7220), - }, - [3061] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7202), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3062] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3567), - [anon_sym_RBRACE] = ACTIONS(7222), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3063] = { - [sym_file_descriptor] = ACTIONS(3422), - [sym__concat] = ACTIONS(3422), - [sym_variable_name] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(4646), - [anon_sym_PIPE_AMP] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(4646), - [anon_sym_GT] = ACTIONS(4646), - [anon_sym_GT_GT] = ACTIONS(3422), - [anon_sym_AMP_GT] = ACTIONS(4646), - [anon_sym_AMP_GT_GT] = ACTIONS(3422), - [anon_sym_LT_AMP] = ACTIONS(3422), - [anon_sym_GT_AMP] = ACTIONS(3422), - [sym__special_characters] = ACTIONS(4646), - [anon_sym_DQUOTE] = ACTIONS(3422), - [anon_sym_DOLLAR] = ACTIONS(4646), - [sym_raw_string] = ACTIONS(3422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), - [anon_sym_BQUOTE] = ACTIONS(3422), - [anon_sym_LT_LPAREN] = ACTIONS(3422), - [anon_sym_GT_LPAREN] = ACTIONS(3422), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4646), - }, - [3064] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3569), - [anon_sym_RBRACE] = ACTIONS(7224), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3065] = { - [aux_sym_concatenation_repeat1] = STATE(3068), - [sym__concat] = ACTIONS(6322), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_PIPE_AMP] = ACTIONS(1241), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_BQUOTE] = ACTIONS(1241), - [sym_comment] = ACTIONS(56), - }, - [3066] = { - [aux_sym_concatenation_repeat1] = STATE(3068), - [sym__concat] = ACTIONS(6322), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_PIPE_AMP] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_BQUOTE] = ACTIONS(1245), - [sym_comment] = ACTIONS(56), - }, - [3067] = { - [sym_string] = STATE(3570), - [sym_simple_expansion] = STATE(3570), - [sym_string_expansion] = STATE(3570), - [sym_expansion] = STATE(3570), - [sym_command_substitution] = STATE(3570), - [sym_process_substitution] = STATE(3570), - [sym__special_characters] = ACTIONS(7226), - [anon_sym_DQUOTE] = ACTIONS(5187), - [anon_sym_DOLLAR] = ACTIONS(5189), - [sym_raw_string] = ACTIONS(7228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5193), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5195), - [anon_sym_BQUOTE] = ACTIONS(5197), - [anon_sym_LT_LPAREN] = ACTIONS(5199), - [anon_sym_GT_LPAREN] = ACTIONS(5199), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7226), - }, - [3068] = { - [aux_sym_concatenation_repeat1] = STATE(3571), - [sym__concat] = ACTIONS(6322), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [sym_comment] = ACTIONS(56), - }, - [3069] = { - [sym__concat] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [sym_comment] = ACTIONS(56), - }, - [3070] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(7230), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [3071] = { - [sym__concat] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [sym_comment] = ACTIONS(56), - }, - [3072] = { - [sym__concat] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_PIPE_AMP] = ACTIONS(830), - [anon_sym_AMP_AMP] = ACTIONS(830), - [anon_sym_PIPE_PIPE] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_comment] = ACTIONS(56), - }, - [3073] = { - [sym__concat] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [sym_comment] = ACTIONS(56), - }, - [3074] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(7232), - [sym_comment] = ACTIONS(56), - }, - [3075] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3576), - [anon_sym_RBRACE] = ACTIONS(7234), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(7236), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3076] = { - [sym_subscript] = STATE(3580), - [sym_variable_name] = ACTIONS(7238), - [anon_sym_DOLLAR] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7242), - [anon_sym_STAR] = ACTIONS(7240), - [anon_sym_AT] = ACTIONS(7240), - [anon_sym_QMARK] = ACTIONS(7240), - [anon_sym_0] = ACTIONS(7244), - [anon_sym__] = ACTIONS(7244), - }, - [3077] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3583), - [anon_sym_RBRACE] = ACTIONS(7246), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(7248), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3078] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3586), - [anon_sym_RBRACE] = ACTIONS(7250), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(7252), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3079] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(7254), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [3080] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(7254), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [3081] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(7254), - [sym_comment] = ACTIONS(56), - }, - [3082] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(7254), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [3083] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(7256), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [3084] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(7256), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [3085] = { - [sym__concat] = ACTIONS(4802), - [sym_variable_name] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_PIPE_AMP] = ACTIONS(4802), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [sym__special_characters] = ACTIONS(5860), - [anon_sym_DQUOTE] = ACTIONS(4802), - [anon_sym_DOLLAR] = ACTIONS(5860), - [sym_raw_string] = ACTIONS(4802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), - [anon_sym_BQUOTE] = ACTIONS(4802), - [anon_sym_LT_LPAREN] = ACTIONS(4802), - [anon_sym_GT_LPAREN] = ACTIONS(4802), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5860), - [sym_word] = ACTIONS(4804), - }, - [3086] = { - [sym__concat] = ACTIONS(4808), - [sym_variable_name] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_PIPE_AMP] = ACTIONS(4808), - [anon_sym_AMP_AMP] = ACTIONS(4808), - [anon_sym_PIPE_PIPE] = ACTIONS(4808), - [sym__special_characters] = ACTIONS(5862), - [anon_sym_DQUOTE] = ACTIONS(4808), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4808), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), - [anon_sym_BQUOTE] = ACTIONS(4808), - [anon_sym_LT_LPAREN] = ACTIONS(4808), - [anon_sym_GT_LPAREN] = ACTIONS(4808), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5862), - [sym_word] = ACTIONS(4810), - }, - [3087] = { - [sym__concat] = ACTIONS(4871), - [sym_variable_name] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_PIPE_AMP] = ACTIONS(4871), - [anon_sym_AMP_AMP] = ACTIONS(4871), - [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(5864), - [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5864), - [sym_raw_string] = ACTIONS(4871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), - [anon_sym_BQUOTE] = ACTIONS(4871), - [anon_sym_LT_LPAREN] = ACTIONS(4871), - [anon_sym_GT_LPAREN] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5864), - [sym_word] = ACTIONS(4873), - }, - [3088] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7258), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3089] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7260), - [sym_comment] = ACTIONS(56), - }, - [3090] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7262), - [sym_comment] = ACTIONS(56), - }, - [3091] = { - [anon_sym_RBRACE] = ACTIONS(7262), - [sym_comment] = ACTIONS(56), - }, - [3092] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3593), - [anon_sym_RBRACE] = ACTIONS(7264), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3093] = { - [sym__concat] = ACTIONS(4883), - [sym_variable_name] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5874), - [anon_sym_PIPE_AMP] = ACTIONS(4883), - [anon_sym_AMP_AMP] = ACTIONS(4883), - [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(5874), - [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5874), - [sym_raw_string] = ACTIONS(4883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(4883), - [anon_sym_LT_LPAREN] = ACTIONS(4883), - [anon_sym_GT_LPAREN] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5874), - [sym_word] = ACTIONS(4885), - }, - [3094] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3595), - [anon_sym_RBRACE] = ACTIONS(7266), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3095] = { - [sym__concat] = ACTIONS(4889), - [sym_variable_name] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5878), - [anon_sym_PIPE_AMP] = ACTIONS(4889), - [anon_sym_AMP_AMP] = ACTIONS(4889), - [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(5878), - [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5878), - [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(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5878), - [sym_word] = ACTIONS(4891), - }, - [3096] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3597), - [anon_sym_RBRACE] = ACTIONS(7268), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3097] = { - [sym__concat] = ACTIONS(4895), - [sym_variable_name] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(5882), - [anon_sym_PIPE_AMP] = ACTIONS(4895), - [anon_sym_AMP_AMP] = ACTIONS(4895), - [anon_sym_PIPE_PIPE] = ACTIONS(4895), - [sym__special_characters] = ACTIONS(5882), - [anon_sym_DQUOTE] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(5882), - [sym_raw_string] = ACTIONS(4895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), - [anon_sym_BQUOTE] = ACTIONS(4895), - [anon_sym_LT_LPAREN] = ACTIONS(4895), - [anon_sym_GT_LPAREN] = ACTIONS(4895), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5882), - [sym_word] = ACTIONS(4897), - }, - [3098] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7270), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3099] = { - [sym__concat] = ACTIONS(4901), - [sym_variable_name] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(5886), - [anon_sym_PIPE_AMP] = ACTIONS(4901), - [anon_sym_AMP_AMP] = ACTIONS(4901), - [anon_sym_PIPE_PIPE] = ACTIONS(4901), - [sym__special_characters] = ACTIONS(5886), - [anon_sym_DQUOTE] = ACTIONS(4901), - [anon_sym_DOLLAR] = ACTIONS(5886), - [sym_raw_string] = ACTIONS(4901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), - [anon_sym_BQUOTE] = ACTIONS(4901), - [anon_sym_LT_LPAREN] = ACTIONS(4901), - [anon_sym_GT_LPAREN] = ACTIONS(4901), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5886), - [sym_word] = ACTIONS(4903), - }, - [3100] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7272), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3101] = { - [sym__concat] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_PIPE_AMP] = ACTIONS(4802), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [sym__special_characters] = ACTIONS(5860), - [anon_sym_DQUOTE] = ACTIONS(4802), - [anon_sym_DOLLAR] = ACTIONS(5860), - [sym_raw_string] = ACTIONS(4802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), - [anon_sym_BQUOTE] = ACTIONS(4802), - [anon_sym_LT_LPAREN] = ACTIONS(4802), - [anon_sym_GT_LPAREN] = ACTIONS(4802), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5860), - [sym_word] = ACTIONS(4804), - }, - [3102] = { - [sym__concat] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_PIPE_AMP] = ACTIONS(4808), - [anon_sym_AMP_AMP] = ACTIONS(4808), - [anon_sym_PIPE_PIPE] = ACTIONS(4808), - [sym__special_characters] = ACTIONS(5862), - [anon_sym_DQUOTE] = ACTIONS(4808), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4808), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), - [anon_sym_BQUOTE] = ACTIONS(4808), - [anon_sym_LT_LPAREN] = ACTIONS(4808), - [anon_sym_GT_LPAREN] = ACTIONS(4808), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5862), - [sym_word] = ACTIONS(4810), - }, - [3103] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_PIPE_AMP] = ACTIONS(4871), - [anon_sym_AMP_AMP] = ACTIONS(4871), - [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(5864), - [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5864), - [sym_raw_string] = ACTIONS(4871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), - [anon_sym_BQUOTE] = ACTIONS(4871), - [anon_sym_LT_LPAREN] = ACTIONS(4871), - [anon_sym_GT_LPAREN] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5864), - [sym_word] = ACTIONS(4873), - }, - [3104] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7274), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3105] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7276), - [sym_comment] = ACTIONS(56), - }, - [3106] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7278), - [sym_comment] = ACTIONS(56), - }, - [3107] = { - [anon_sym_RBRACE] = ACTIONS(7278), - [sym_comment] = ACTIONS(56), - }, - [3108] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3604), - [anon_sym_RBRACE] = ACTIONS(7280), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3109] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5874), - [anon_sym_PIPE_AMP] = ACTIONS(4883), - [anon_sym_AMP_AMP] = ACTIONS(4883), - [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(5874), - [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5874), - [sym_raw_string] = ACTIONS(4883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(4883), - [anon_sym_LT_LPAREN] = ACTIONS(4883), - [anon_sym_GT_LPAREN] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5874), - [sym_word] = ACTIONS(4885), - }, - [3110] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3606), - [anon_sym_RBRACE] = ACTIONS(7282), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3111] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5878), - [anon_sym_PIPE_AMP] = ACTIONS(4889), - [anon_sym_AMP_AMP] = ACTIONS(4889), - [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(5878), - [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5878), - [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(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5878), - [sym_word] = ACTIONS(4891), - }, - [3112] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3608), - [anon_sym_RBRACE] = ACTIONS(7284), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3113] = { - [sym__concat] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(5882), - [anon_sym_PIPE_AMP] = ACTIONS(4895), - [anon_sym_AMP_AMP] = ACTIONS(4895), - [anon_sym_PIPE_PIPE] = ACTIONS(4895), - [sym__special_characters] = ACTIONS(5882), - [anon_sym_DQUOTE] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(5882), - [sym_raw_string] = ACTIONS(4895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), - [anon_sym_BQUOTE] = ACTIONS(4895), - [anon_sym_LT_LPAREN] = ACTIONS(4895), - [anon_sym_GT_LPAREN] = ACTIONS(4895), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5882), - [sym_word] = ACTIONS(4897), - }, - [3114] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7286), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3115] = { - [sym__concat] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(5886), - [anon_sym_PIPE_AMP] = ACTIONS(4901), - [anon_sym_AMP_AMP] = ACTIONS(4901), - [anon_sym_PIPE_PIPE] = ACTIONS(4901), - [sym__special_characters] = ACTIONS(5886), - [anon_sym_DQUOTE] = ACTIONS(4901), - [anon_sym_DOLLAR] = ACTIONS(5886), - [sym_raw_string] = ACTIONS(4901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), - [anon_sym_BQUOTE] = ACTIONS(4901), - [anon_sym_LT_LPAREN] = ACTIONS(4901), - [anon_sym_GT_LPAREN] = ACTIONS(4901), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5886), - [sym_word] = ACTIONS(4903), - }, - [3116] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7288), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3117] = { - [sym_file_descriptor] = ACTIONS(6041), - [sym__concat] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6930), - [anon_sym_PIPE_AMP] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6041), - [anon_sym_PIPE_PIPE] = ACTIONS(6041), - [anon_sym_EQ_TILDE] = ACTIONS(6930), - [anon_sym_EQ_EQ] = ACTIONS(6930), - [anon_sym_LT] = ACTIONS(6930), - [anon_sym_GT] = ACTIONS(6930), - [anon_sym_GT_GT] = ACTIONS(6041), - [anon_sym_AMP_GT] = ACTIONS(6930), - [anon_sym_AMP_GT_GT] = ACTIONS(6041), - [anon_sym_LT_AMP] = ACTIONS(6041), - [anon_sym_GT_AMP] = ACTIONS(6041), - [anon_sym_LT_LT] = ACTIONS(6930), - [anon_sym_LT_LT_DASH] = ACTIONS(6041), - [anon_sym_LT_LT_LT] = ACTIONS(6041), - [sym__special_characters] = ACTIONS(6930), - [anon_sym_DQUOTE] = ACTIONS(6041), - [anon_sym_DOLLAR] = ACTIONS(6930), - [sym_raw_string] = ACTIONS(6041), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), - [anon_sym_BQUOTE] = ACTIONS(6041), - [anon_sym_LT_LPAREN] = ACTIONS(6041), - [anon_sym_GT_LPAREN] = ACTIONS(6041), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6043), - }, - [3118] = { - [sym_file_descriptor] = ACTIONS(6045), - [sym__concat] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6932), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_EQ_TILDE] = ACTIONS(6932), - [anon_sym_EQ_EQ] = ACTIONS(6932), - [anon_sym_LT] = ACTIONS(6932), - [anon_sym_GT] = ACTIONS(6932), - [anon_sym_GT_GT] = ACTIONS(6045), - [anon_sym_AMP_GT] = ACTIONS(6932), - [anon_sym_AMP_GT_GT] = ACTIONS(6045), - [anon_sym_LT_AMP] = ACTIONS(6045), - [anon_sym_GT_AMP] = ACTIONS(6045), - [anon_sym_LT_LT] = ACTIONS(6932), - [anon_sym_LT_LT_DASH] = ACTIONS(6045), - [anon_sym_LT_LT_LT] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6932), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6932), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6047), - }, - [3119] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_PIPE_AMP] = ACTIONS(6049), - [anon_sym_AMP_AMP] = ACTIONS(6049), - [anon_sym_PIPE_PIPE] = ACTIONS(6049), - [anon_sym_EQ_TILDE] = ACTIONS(6934), - [anon_sym_EQ_EQ] = ACTIONS(6934), - [anon_sym_LT] = ACTIONS(6934), - [anon_sym_GT] = ACTIONS(6934), - [anon_sym_GT_GT] = ACTIONS(6049), - [anon_sym_AMP_GT] = ACTIONS(6934), - [anon_sym_AMP_GT_GT] = ACTIONS(6049), - [anon_sym_LT_AMP] = ACTIONS(6049), - [anon_sym_GT_AMP] = ACTIONS(6049), - [anon_sym_LT_LT] = ACTIONS(6934), - [anon_sym_LT_LT_DASH] = ACTIONS(6049), - [anon_sym_LT_LT_LT] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6934), - [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), - [anon_sym_BQUOTE] = ACTIONS(6049), - [anon_sym_LT_LPAREN] = ACTIONS(6049), - [anon_sym_GT_LPAREN] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6051), - }, - [3120] = { - [sym_file_descriptor] = ACTIONS(6053), - [sym__concat] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6936), - [anon_sym_PIPE_AMP] = ACTIONS(6053), - [anon_sym_AMP_AMP] = ACTIONS(6053), - [anon_sym_PIPE_PIPE] = ACTIONS(6053), - [anon_sym_EQ_TILDE] = ACTIONS(6936), - [anon_sym_EQ_EQ] = ACTIONS(6936), - [anon_sym_LT] = ACTIONS(6936), - [anon_sym_GT] = ACTIONS(6936), - [anon_sym_GT_GT] = ACTIONS(6053), - [anon_sym_AMP_GT] = ACTIONS(6936), - [anon_sym_AMP_GT_GT] = ACTIONS(6053), - [anon_sym_LT_AMP] = ACTIONS(6053), - [anon_sym_GT_AMP] = ACTIONS(6053), - [anon_sym_LT_LT] = ACTIONS(6936), - [anon_sym_LT_LT_DASH] = ACTIONS(6053), - [anon_sym_LT_LT_LT] = ACTIONS(6053), - [sym__special_characters] = ACTIONS(6936), - [anon_sym_DQUOTE] = ACTIONS(6053), - [anon_sym_DOLLAR] = ACTIONS(6936), - [sym_raw_string] = ACTIONS(6053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), - [anon_sym_BQUOTE] = ACTIONS(6053), - [anon_sym_LT_LPAREN] = ACTIONS(6053), - [anon_sym_GT_LPAREN] = ACTIONS(6053), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6055), - }, - [3121] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7290), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3122] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6940), - [anon_sym_PIPE_AMP] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [anon_sym_EQ_TILDE] = ACTIONS(6940), - [anon_sym_EQ_EQ] = ACTIONS(6940), - [anon_sym_LT] = ACTIONS(6940), - [anon_sym_GT] = ACTIONS(6940), - [anon_sym_GT_GT] = ACTIONS(6059), - [anon_sym_AMP_GT] = ACTIONS(6940), - [anon_sym_AMP_GT_GT] = ACTIONS(6059), - [anon_sym_LT_AMP] = ACTIONS(6059), - [anon_sym_GT_AMP] = ACTIONS(6059), - [anon_sym_LT_LT] = ACTIONS(6940), - [anon_sym_LT_LT_DASH] = ACTIONS(6059), - [anon_sym_LT_LT_LT] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6940), - [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6940), - [sym_raw_string] = ACTIONS(6059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), - [anon_sym_BQUOTE] = ACTIONS(6059), - [anon_sym_LT_LPAREN] = ACTIONS(6059), - [anon_sym_GT_LPAREN] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6061), - }, - [3123] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7292), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3124] = { - [sym_file_descriptor] = ACTIONS(6065), - [sym__concat] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6944), - [anon_sym_PIPE_AMP] = ACTIONS(6065), - [anon_sym_AMP_AMP] = ACTIONS(6065), - [anon_sym_PIPE_PIPE] = ACTIONS(6065), - [anon_sym_EQ_TILDE] = ACTIONS(6944), - [anon_sym_EQ_EQ] = ACTIONS(6944), - [anon_sym_LT] = ACTIONS(6944), - [anon_sym_GT] = ACTIONS(6944), - [anon_sym_GT_GT] = ACTIONS(6065), - [anon_sym_AMP_GT] = ACTIONS(6944), - [anon_sym_AMP_GT_GT] = ACTIONS(6065), - [anon_sym_LT_AMP] = ACTIONS(6065), - [anon_sym_GT_AMP] = ACTIONS(6065), - [anon_sym_LT_LT] = ACTIONS(6944), - [anon_sym_LT_LT_DASH] = ACTIONS(6065), - [anon_sym_LT_LT_LT] = ACTIONS(6065), - [sym__special_characters] = ACTIONS(6944), - [anon_sym_DQUOTE] = ACTIONS(6065), - [anon_sym_DOLLAR] = ACTIONS(6944), - [sym_raw_string] = ACTIONS(6065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), - [anon_sym_BQUOTE] = ACTIONS(6065), - [anon_sym_LT_LPAREN] = ACTIONS(6065), - [anon_sym_GT_LPAREN] = ACTIONS(6065), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6067), - }, - [3125] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7294), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3126] = { - [sym_file_descriptor] = ACTIONS(6071), - [sym__concat] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6948), - [anon_sym_PIPE_AMP] = ACTIONS(6071), - [anon_sym_AMP_AMP] = ACTIONS(6071), - [anon_sym_PIPE_PIPE] = ACTIONS(6071), - [anon_sym_EQ_TILDE] = ACTIONS(6948), - [anon_sym_EQ_EQ] = ACTIONS(6948), - [anon_sym_LT] = ACTIONS(6948), - [anon_sym_GT] = ACTIONS(6948), - [anon_sym_GT_GT] = ACTIONS(6071), - [anon_sym_AMP_GT] = ACTIONS(6948), - [anon_sym_AMP_GT_GT] = ACTIONS(6071), - [anon_sym_LT_AMP] = ACTIONS(6071), - [anon_sym_GT_AMP] = ACTIONS(6071), - [anon_sym_LT_LT] = ACTIONS(6948), - [anon_sym_LT_LT_DASH] = ACTIONS(6071), - [anon_sym_LT_LT_LT] = ACTIONS(6071), - [sym__special_characters] = ACTIONS(6948), - [anon_sym_DQUOTE] = ACTIONS(6071), - [anon_sym_DOLLAR] = ACTIONS(6948), - [sym_raw_string] = ACTIONS(6071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), - [anon_sym_BQUOTE] = ACTIONS(6071), - [anon_sym_LT_LPAREN] = ACTIONS(6071), - [anon_sym_GT_LPAREN] = ACTIONS(6071), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6073), - }, - [3127] = { - [sym_file_descriptor] = ACTIONS(6075), - [sym__concat] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6075), - [anon_sym_AMP_AMP] = ACTIONS(6075), - [anon_sym_PIPE_PIPE] = ACTIONS(6075), - [anon_sym_EQ_TILDE] = ACTIONS(6950), - [anon_sym_EQ_EQ] = ACTIONS(6950), - [anon_sym_LT] = ACTIONS(6950), - [anon_sym_GT] = ACTIONS(6950), - [anon_sym_GT_GT] = ACTIONS(6075), - [anon_sym_AMP_GT] = ACTIONS(6950), - [anon_sym_AMP_GT_GT] = ACTIONS(6075), - [anon_sym_LT_AMP] = ACTIONS(6075), - [anon_sym_GT_AMP] = ACTIONS(6075), - [anon_sym_LT_LT] = ACTIONS(6950), - [anon_sym_LT_LT_DASH] = ACTIONS(6075), - [anon_sym_LT_LT_LT] = ACTIONS(6075), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6075), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), - [anon_sym_BQUOTE] = ACTIONS(6075), - [anon_sym_LT_LPAREN] = ACTIONS(6075), - [anon_sym_GT_LPAREN] = ACTIONS(6075), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6077), - }, - [3128] = { - [sym_file_descriptor] = ACTIONS(3293), - [sym__concat] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(4614), - [anon_sym_PIPE_AMP] = ACTIONS(3293), - [anon_sym_AMP_AMP] = ACTIONS(3293), - [anon_sym_PIPE_PIPE] = ACTIONS(3293), - [anon_sym_LT] = ACTIONS(4614), - [anon_sym_GT] = ACTIONS(4614), - [anon_sym_GT_GT] = ACTIONS(3293), - [anon_sym_AMP_GT] = ACTIONS(4614), - [anon_sym_AMP_GT_GT] = ACTIONS(3293), - [anon_sym_LT_AMP] = ACTIONS(3293), - [anon_sym_GT_AMP] = ACTIONS(3293), - [anon_sym_LT_LT] = ACTIONS(4614), - [anon_sym_LT_LT_DASH] = ACTIONS(3293), - [anon_sym_LT_LT_LT] = ACTIONS(3293), - [anon_sym_BQUOTE] = ACTIONS(3293), - [sym_comment] = ACTIONS(56), - }, - [3129] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7296), - [sym_comment] = ACTIONS(56), - }, - [3130] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7298), - [sym_comment] = ACTIONS(56), - }, - [3131] = { - [anon_sym_RBRACE] = ACTIONS(7298), - [sym_comment] = ACTIONS(56), - }, - [3132] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3617), - [anon_sym_RBRACE] = ACTIONS(7300), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3133] = { - [sym_file_descriptor] = ACTIONS(3357), - [sym__concat] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(4622), - [anon_sym_PIPE_AMP] = ACTIONS(3357), - [anon_sym_AMP_AMP] = ACTIONS(3357), - [anon_sym_PIPE_PIPE] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(4622), - [anon_sym_GT] = ACTIONS(4622), - [anon_sym_GT_GT] = ACTIONS(3357), - [anon_sym_AMP_GT] = ACTIONS(4622), - [anon_sym_AMP_GT_GT] = ACTIONS(3357), - [anon_sym_LT_AMP] = ACTIONS(3357), - [anon_sym_GT_AMP] = ACTIONS(3357), - [anon_sym_LT_LT] = ACTIONS(4622), - [anon_sym_LT_LT_DASH] = ACTIONS(3357), - [anon_sym_LT_LT_LT] = ACTIONS(3357), - [anon_sym_BQUOTE] = ACTIONS(3357), - [sym_comment] = ACTIONS(56), - }, - [3134] = { - [sym_concatenation] = STATE(3620), - [sym_string] = STATE(3619), - [sym_simple_expansion] = STATE(3619), - [sym_string_expansion] = STATE(3619), - [sym_expansion] = STATE(3619), - [sym_command_substitution] = STATE(3619), - [sym_process_substitution] = STATE(3619), - [anon_sym_RBRACE] = ACTIONS(7298), - [sym__special_characters] = ACTIONS(7302), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(7304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7306), - }, - [3135] = { - [sym_file_descriptor] = ACTIONS(3402), - [sym__concat] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(4630), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [anon_sym_LT] = ACTIONS(4630), - [anon_sym_GT] = ACTIONS(4630), - [anon_sym_GT_GT] = ACTIONS(3402), - [anon_sym_AMP_GT] = ACTIONS(4630), - [anon_sym_AMP_GT_GT] = ACTIONS(3402), - [anon_sym_LT_AMP] = ACTIONS(3402), - [anon_sym_GT_AMP] = ACTIONS(3402), - [anon_sym_LT_LT] = ACTIONS(4630), - [anon_sym_LT_LT_DASH] = ACTIONS(3402), - [anon_sym_LT_LT_LT] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [sym_comment] = ACTIONS(56), - }, - [3136] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7308), - }, - [3137] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7310), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3138] = { - [sym_file_descriptor] = ACTIONS(3410), - [sym__concat] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(4636), - [anon_sym_PIPE_AMP] = ACTIONS(3410), - [anon_sym_AMP_AMP] = ACTIONS(3410), - [anon_sym_PIPE_PIPE] = ACTIONS(3410), - [anon_sym_LT] = ACTIONS(4636), - [anon_sym_GT] = ACTIONS(4636), - [anon_sym_GT_GT] = ACTIONS(3410), - [anon_sym_AMP_GT] = ACTIONS(4636), - [anon_sym_AMP_GT_GT] = ACTIONS(3410), - [anon_sym_LT_AMP] = ACTIONS(3410), - [anon_sym_GT_AMP] = ACTIONS(3410), - [anon_sym_LT_LT] = ACTIONS(4636), - [anon_sym_LT_LT_DASH] = ACTIONS(3410), - [anon_sym_LT_LT_LT] = ACTIONS(3410), - [anon_sym_BQUOTE] = ACTIONS(3410), - [sym_comment] = ACTIONS(56), - }, - [3139] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7312), - }, - [3140] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7314), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3141] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7316), - }, - [3142] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7298), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3143] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3627), - [anon_sym_RBRACE] = ACTIONS(7318), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3144] = { - [sym_file_descriptor] = ACTIONS(3422), - [sym__concat] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(4646), - [anon_sym_PIPE_AMP] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(4646), - [anon_sym_GT] = ACTIONS(4646), - [anon_sym_GT_GT] = ACTIONS(3422), - [anon_sym_AMP_GT] = ACTIONS(4646), - [anon_sym_AMP_GT_GT] = ACTIONS(3422), - [anon_sym_LT_AMP] = ACTIONS(3422), - [anon_sym_GT_AMP] = ACTIONS(3422), - [anon_sym_LT_LT] = ACTIONS(4646), - [anon_sym_LT_LT_DASH] = ACTIONS(3422), - [anon_sym_LT_LT_LT] = ACTIONS(3422), - [anon_sym_BQUOTE] = ACTIONS(3422), - [sym_comment] = ACTIONS(56), - }, - [3145] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3629), - [anon_sym_RBRACE] = ACTIONS(7320), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3146] = { - [sym_file_descriptor] = ACTIONS(4802), - [sym__concat] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [anon_sym_PIPE_AMP] = ACTIONS(4804), - [anon_sym_AMP_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4804), - [anon_sym_LT] = ACTIONS(4804), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_GT_GT] = ACTIONS(4804), - [anon_sym_AMP_GT] = ACTIONS(4804), - [anon_sym_AMP_GT_GT] = ACTIONS(4804), - [anon_sym_LT_AMP] = ACTIONS(4804), - [anon_sym_GT_AMP] = ACTIONS(4804), - [anon_sym_LT_LT] = ACTIONS(4804), - [anon_sym_LT_LT_DASH] = ACTIONS(4804), - [anon_sym_LT_LT_LT] = ACTIONS(4804), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4804), - [anon_sym_LF] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4804), - }, - [3147] = { - [sym_file_descriptor] = ACTIONS(4808), - [sym__concat] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_SEMI_SEMI] = ACTIONS(4810), - [anon_sym_PIPE_AMP] = ACTIONS(4810), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [anon_sym_LT] = ACTIONS(4810), - [anon_sym_GT] = ACTIONS(4810), - [anon_sym_GT_GT] = ACTIONS(4810), - [anon_sym_AMP_GT] = ACTIONS(4810), - [anon_sym_AMP_GT_GT] = ACTIONS(4810), - [anon_sym_LT_AMP] = ACTIONS(4810), - [anon_sym_GT_AMP] = ACTIONS(4810), - [anon_sym_LT_LT] = ACTIONS(4810), - [anon_sym_LT_LT_DASH] = ACTIONS(4810), - [anon_sym_LT_LT_LT] = ACTIONS(4810), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LF] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4810), - }, - [3148] = { - [sym_file_descriptor] = ACTIONS(4871), - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_GT_GT] = ACTIONS(4873), - [anon_sym_AMP_GT] = ACTIONS(4873), - [anon_sym_AMP_GT_GT] = ACTIONS(4873), - [anon_sym_LT_AMP] = ACTIONS(4873), - [anon_sym_GT_AMP] = ACTIONS(4873), - [anon_sym_LT_LT] = ACTIONS(4873), - [anon_sym_LT_LT_DASH] = ACTIONS(4873), - [anon_sym_LT_LT_LT] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [3149] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7322), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3150] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7324), - [sym_comment] = ACTIONS(56), - }, - [3151] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7326), - [sym_comment] = ACTIONS(56), - }, - [3152] = { - [anon_sym_RBRACE] = ACTIONS(7326), - [sym_comment] = ACTIONS(56), - }, - [3153] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3634), - [anon_sym_RBRACE] = ACTIONS(7328), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3154] = { - [sym_file_descriptor] = ACTIONS(4883), - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = 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(4885), - [anon_sym_GT] = ACTIONS(4885), - [anon_sym_GT_GT] = ACTIONS(4885), - [anon_sym_AMP_GT] = ACTIONS(4885), - [anon_sym_AMP_GT_GT] = ACTIONS(4885), - [anon_sym_LT_AMP] = ACTIONS(4885), - [anon_sym_GT_AMP] = ACTIONS(4885), - [anon_sym_LT_LT] = ACTIONS(4885), - [anon_sym_LT_LT_DASH] = ACTIONS(4885), - [anon_sym_LT_LT_LT] = ACTIONS(4885), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [3155] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3636), - [anon_sym_RBRACE] = ACTIONS(7330), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3156] = { - [sym_file_descriptor] = ACTIONS(4889), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [anon_sym_LT] = ACTIONS(4891), - [anon_sym_GT] = ACTIONS(4891), - [anon_sym_GT_GT] = ACTIONS(4891), - [anon_sym_AMP_GT] = ACTIONS(4891), - [anon_sym_AMP_GT_GT] = ACTIONS(4891), - [anon_sym_LT_AMP] = ACTIONS(4891), - [anon_sym_GT_AMP] = ACTIONS(4891), - [anon_sym_LT_LT] = ACTIONS(4891), - [anon_sym_LT_LT_DASH] = ACTIONS(4891), - [anon_sym_LT_LT_LT] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [3157] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3638), - [anon_sym_RBRACE] = ACTIONS(7332), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3158] = { - [sym_file_descriptor] = ACTIONS(4895), - [sym__concat] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_SEMI_SEMI] = ACTIONS(4897), - [anon_sym_PIPE_AMP] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [anon_sym_LT] = ACTIONS(4897), - [anon_sym_GT] = ACTIONS(4897), - [anon_sym_GT_GT] = ACTIONS(4897), - [anon_sym_AMP_GT] = ACTIONS(4897), - [anon_sym_AMP_GT_GT] = ACTIONS(4897), - [anon_sym_LT_AMP] = ACTIONS(4897), - [anon_sym_GT_AMP] = ACTIONS(4897), - [anon_sym_LT_LT] = ACTIONS(4897), - [anon_sym_LT_LT_DASH] = ACTIONS(4897), - [anon_sym_LT_LT_LT] = ACTIONS(4897), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LF] = ACTIONS(4897), - [anon_sym_AMP] = ACTIONS(4897), - }, - [3159] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7334), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3160] = { - [sym_file_descriptor] = ACTIONS(4901), - [sym__concat] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(4903), - [anon_sym_SEMI_SEMI] = ACTIONS(4903), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [anon_sym_LT] = ACTIONS(4903), - [anon_sym_GT] = ACTIONS(4903), - [anon_sym_GT_GT] = ACTIONS(4903), - [anon_sym_AMP_GT] = ACTIONS(4903), - [anon_sym_AMP_GT_GT] = ACTIONS(4903), - [anon_sym_LT_AMP] = ACTIONS(4903), - [anon_sym_GT_AMP] = ACTIONS(4903), - [anon_sym_LT_LT] = ACTIONS(4903), - [anon_sym_LT_LT_DASH] = ACTIONS(4903), - [anon_sym_LT_LT_LT] = ACTIONS(4903), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LF] = ACTIONS(4903), - [anon_sym_AMP] = ACTIONS(4903), - }, - [3161] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7336), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3162] = { - [sym__heredoc_middle] = ACTIONS(3293), - [sym__heredoc_end] = ACTIONS(3293), - [anon_sym_DOLLAR] = ACTIONS(4614), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), - [sym_comment] = ACTIONS(56), - }, - [3163] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7338), - [sym_comment] = ACTIONS(56), - }, - [3164] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7340), - [sym_comment] = ACTIONS(56), - }, - [3165] = { - [anon_sym_RBRACE] = ACTIONS(7340), - [sym_comment] = ACTIONS(56), - }, - [3166] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3644), - [anon_sym_RBRACE] = ACTIONS(7342), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3167] = { - [sym__heredoc_middle] = ACTIONS(3357), - [sym__heredoc_end] = ACTIONS(3357), - [anon_sym_DOLLAR] = ACTIONS(4622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), - [sym_comment] = ACTIONS(56), - }, - [3168] = { - [sym_concatenation] = STATE(3647), - [sym_string] = STATE(3646), - [sym_simple_expansion] = STATE(3646), - [sym_string_expansion] = STATE(3646), - [sym_expansion] = STATE(3646), - [sym_command_substitution] = STATE(3646), - [sym_process_substitution] = STATE(3646), - [anon_sym_RBRACE] = ACTIONS(7340), - [sym__special_characters] = ACTIONS(7344), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(7346), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7348), - }, - [3169] = { - [sym__heredoc_middle] = ACTIONS(3402), - [sym__heredoc_end] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(4630), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [sym_comment] = ACTIONS(56), - }, - [3170] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7350), - }, - [3171] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7352), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3172] = { - [sym__heredoc_middle] = ACTIONS(3410), - [sym__heredoc_end] = ACTIONS(3410), - [anon_sym_DOLLAR] = ACTIONS(4636), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), - [sym_comment] = ACTIONS(56), - }, - [3173] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7354), - }, - [3174] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7356), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3175] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7358), - }, - [3176] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7340), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3177] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3654), - [anon_sym_RBRACE] = ACTIONS(7360), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3178] = { - [sym__heredoc_middle] = ACTIONS(3422), - [sym__heredoc_end] = ACTIONS(3422), - [anon_sym_DOLLAR] = ACTIONS(4646), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), - [sym_comment] = ACTIONS(56), - }, - [3179] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3656), - [anon_sym_RBRACE] = ACTIONS(7362), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3180] = { - [sym__concat] = ACTIONS(6041), - [anon_sym_RBRACK] = ACTIONS(6041), - [sym_comment] = ACTIONS(56), - }, - [3181] = { - [sym__concat] = ACTIONS(6045), - [anon_sym_RBRACK] = ACTIONS(6045), - [sym_comment] = ACTIONS(56), - }, - [3182] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_RBRACK] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - }, - [3183] = { - [sym__concat] = ACTIONS(6053), - [anon_sym_RBRACK] = ACTIONS(6053), - [sym_comment] = ACTIONS(56), - }, - [3184] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7364), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3185] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_RBRACK] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - }, - [3186] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7366), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3187] = { - [sym__concat] = ACTIONS(6065), - [anon_sym_RBRACK] = ACTIONS(6065), - [sym_comment] = ACTIONS(56), - }, - [3188] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7368), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3189] = { - [sym__concat] = ACTIONS(6071), - [anon_sym_RBRACK] = ACTIONS(6071), - [sym_comment] = ACTIONS(56), - }, - [3190] = { - [sym__concat] = ACTIONS(6075), - [anon_sym_RBRACK] = ACTIONS(6075), - [sym_comment] = ACTIONS(56), - }, - [3191] = { - [sym__concat] = ACTIONS(4802), - [anon_sym_RPAREN] = ACTIONS(4802), - [sym__special_characters] = ACTIONS(5860), - [anon_sym_DQUOTE] = ACTIONS(4802), - [anon_sym_DOLLAR] = ACTIONS(5860), - [sym_raw_string] = ACTIONS(4802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), - [anon_sym_BQUOTE] = ACTIONS(4802), - [anon_sym_LT_LPAREN] = ACTIONS(4802), - [anon_sym_GT_LPAREN] = ACTIONS(4802), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5860), - }, - [3192] = { - [sym__concat] = ACTIONS(4808), - [anon_sym_RPAREN] = ACTIONS(4808), - [sym__special_characters] = ACTIONS(5862), - [anon_sym_DQUOTE] = ACTIONS(4808), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4808), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), - [anon_sym_BQUOTE] = ACTIONS(4808), - [anon_sym_LT_LPAREN] = ACTIONS(4808), - [anon_sym_GT_LPAREN] = ACTIONS(4808), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5862), - }, - [3193] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_RPAREN] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(5864), - [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5864), - [sym_raw_string] = ACTIONS(4871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), - [anon_sym_BQUOTE] = ACTIONS(4871), - [anon_sym_LT_LPAREN] = ACTIONS(4871), - [anon_sym_GT_LPAREN] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5864), - }, - [3194] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7370), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3195] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7372), - [sym_comment] = ACTIONS(56), - }, - [3196] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7374), - [sym_comment] = ACTIONS(56), - }, - [3197] = { - [anon_sym_RBRACE] = ACTIONS(7374), - [sym_comment] = ACTIONS(56), - }, - [3198] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3664), - [anon_sym_RBRACE] = ACTIONS(7376), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3199] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_RPAREN] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(5874), - [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5874), - [sym_raw_string] = ACTIONS(4883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(4883), - [anon_sym_LT_LPAREN] = ACTIONS(4883), - [anon_sym_GT_LPAREN] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5874), - }, - [3200] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3666), - [anon_sym_RBRACE] = ACTIONS(7378), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3201] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_RPAREN] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(5878), - [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5878), - [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(56), - [sym_word] = ACTIONS(5878), - }, - [3202] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3668), - [anon_sym_RBRACE] = ACTIONS(7380), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3203] = { - [sym__concat] = ACTIONS(4895), - [anon_sym_RPAREN] = ACTIONS(4895), - [sym__special_characters] = ACTIONS(5882), - [anon_sym_DQUOTE] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(5882), - [sym_raw_string] = ACTIONS(4895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), - [anon_sym_BQUOTE] = ACTIONS(4895), - [anon_sym_LT_LPAREN] = ACTIONS(4895), - [anon_sym_GT_LPAREN] = ACTIONS(4895), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5882), - }, - [3204] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7382), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3205] = { - [sym__concat] = ACTIONS(4901), - [anon_sym_RPAREN] = ACTIONS(4901), - [sym__special_characters] = ACTIONS(5886), - [anon_sym_DQUOTE] = ACTIONS(4901), - [anon_sym_DOLLAR] = ACTIONS(5886), - [sym_raw_string] = ACTIONS(4901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), - [anon_sym_BQUOTE] = ACTIONS(4901), - [anon_sym_LT_LPAREN] = ACTIONS(4901), - [anon_sym_GT_LPAREN] = ACTIONS(4901), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5886), - }, - [3206] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7384), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3207] = { - [sym_file_descriptor] = ACTIONS(6041), - [sym__concat] = ACTIONS(6041), - [sym_variable_name] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_SEMI_SEMI] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6043), - [anon_sym_GT] = ACTIONS(6043), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_AMP_GT] = ACTIONS(6043), - [anon_sym_AMP_GT_GT] = ACTIONS(6043), - [anon_sym_LT_AMP] = ACTIONS(6043), - [anon_sym_GT_AMP] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6043), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6043), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6043), - [anon_sym_SEMI] = ACTIONS(6043), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - }, - [3208] = { - [sym_file_descriptor] = ACTIONS(6045), - [sym__concat] = ACTIONS(6045), - [sym_variable_name] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_SEMI_SEMI] = ACTIONS(6047), - [anon_sym_PIPE_AMP] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6047), - [anon_sym_PIPE_PIPE] = ACTIONS(6047), - [anon_sym_LT] = ACTIONS(6047), - [anon_sym_GT] = ACTIONS(6047), - [anon_sym_GT_GT] = ACTIONS(6047), - [anon_sym_AMP_GT] = ACTIONS(6047), - [anon_sym_AMP_GT_GT] = ACTIONS(6047), - [anon_sym_LT_AMP] = ACTIONS(6047), - [anon_sym_GT_AMP] = ACTIONS(6047), - [sym__special_characters] = ACTIONS(6047), - [anon_sym_DQUOTE] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6047), - [sym_raw_string] = ACTIONS(6047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), - [anon_sym_BQUOTE] = ACTIONS(6047), - [anon_sym_LT_LPAREN] = ACTIONS(6047), - [anon_sym_GT_LPAREN] = ACTIONS(6047), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6047), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - }, - [3209] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [sym_variable_name] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6051), - [anon_sym_GT] = ACTIONS(6051), - [anon_sym_GT_GT] = ACTIONS(6051), - [anon_sym_AMP_GT] = ACTIONS(6051), - [anon_sym_AMP_GT_GT] = ACTIONS(6051), - [anon_sym_LT_AMP] = ACTIONS(6051), - [anon_sym_GT_AMP] = ACTIONS(6051), - [sym__special_characters] = ACTIONS(6051), - [anon_sym_DQUOTE] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6051), - [sym_raw_string] = ACTIONS(6051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), - [anon_sym_BQUOTE] = ACTIONS(6051), - [anon_sym_LT_LPAREN] = ACTIONS(6051), - [anon_sym_GT_LPAREN] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6051), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [3210] = { - [sym_file_descriptor] = ACTIONS(6053), - [sym__concat] = ACTIONS(6053), - [sym_variable_name] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6055), - [anon_sym_GT] = ACTIONS(6055), - [anon_sym_GT_GT] = ACTIONS(6055), - [anon_sym_AMP_GT] = ACTIONS(6055), - [anon_sym_AMP_GT_GT] = ACTIONS(6055), - [anon_sym_LT_AMP] = ACTIONS(6055), - [anon_sym_GT_AMP] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6055), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6055), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6055), - [anon_sym_SEMI] = ACTIONS(6055), - [anon_sym_LF] = ACTIONS(6055), - [anon_sym_AMP] = ACTIONS(6055), - }, - [3211] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7386), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3212] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [sym_variable_name] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [anon_sym_LT] = ACTIONS(6061), - [anon_sym_GT] = ACTIONS(6061), - [anon_sym_GT_GT] = ACTIONS(6061), - [anon_sym_AMP_GT] = ACTIONS(6061), - [anon_sym_AMP_GT_GT] = ACTIONS(6061), - [anon_sym_LT_AMP] = ACTIONS(6061), - [anon_sym_GT_AMP] = ACTIONS(6061), - [sym__special_characters] = ACTIONS(6061), - [anon_sym_DQUOTE] = ACTIONS(6061), - [anon_sym_DOLLAR] = ACTIONS(6061), - [sym_raw_string] = ACTIONS(6061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), - [anon_sym_BQUOTE] = ACTIONS(6061), - [anon_sym_LT_LPAREN] = ACTIONS(6061), - [anon_sym_GT_LPAREN] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6061), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [3213] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7388), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3214] = { - [sym_file_descriptor] = ACTIONS(6065), - [sym__concat] = ACTIONS(6065), - [sym_variable_name] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6067), - [anon_sym_SEMI_SEMI] = ACTIONS(6067), - [anon_sym_PIPE_AMP] = ACTIONS(6067), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [anon_sym_LT] = ACTIONS(6067), - [anon_sym_GT] = ACTIONS(6067), - [anon_sym_GT_GT] = ACTIONS(6067), - [anon_sym_AMP_GT] = ACTIONS(6067), - [anon_sym_AMP_GT_GT] = ACTIONS(6067), - [anon_sym_LT_AMP] = ACTIONS(6067), - [anon_sym_GT_AMP] = ACTIONS(6067), - [sym__special_characters] = ACTIONS(6067), - [anon_sym_DQUOTE] = ACTIONS(6067), - [anon_sym_DOLLAR] = ACTIONS(6067), - [sym_raw_string] = ACTIONS(6067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), - [anon_sym_BQUOTE] = ACTIONS(6067), - [anon_sym_LT_LPAREN] = ACTIONS(6067), - [anon_sym_GT_LPAREN] = ACTIONS(6067), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6067), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LF] = ACTIONS(6067), - [anon_sym_AMP] = ACTIONS(6067), - }, - [3215] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7390), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3216] = { - [sym_file_descriptor] = ACTIONS(6071), - [sym__concat] = ACTIONS(6071), - [sym_variable_name] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [anon_sym_PIPE_AMP] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6073), - [anon_sym_PIPE_PIPE] = ACTIONS(6073), - [anon_sym_LT] = ACTIONS(6073), - [anon_sym_GT] = ACTIONS(6073), - [anon_sym_GT_GT] = ACTIONS(6073), - [anon_sym_AMP_GT] = ACTIONS(6073), - [anon_sym_AMP_GT_GT] = ACTIONS(6073), - [anon_sym_LT_AMP] = ACTIONS(6073), - [anon_sym_GT_AMP] = ACTIONS(6073), - [sym__special_characters] = ACTIONS(6073), - [anon_sym_DQUOTE] = ACTIONS(6073), - [anon_sym_DOLLAR] = ACTIONS(6073), - [sym_raw_string] = ACTIONS(6073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), - [anon_sym_BQUOTE] = ACTIONS(6073), - [anon_sym_LT_LPAREN] = ACTIONS(6073), - [anon_sym_GT_LPAREN] = ACTIONS(6073), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6073), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LF] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - }, - [3217] = { - [sym_file_descriptor] = ACTIONS(6075), - [sym__concat] = ACTIONS(6075), - [sym_variable_name] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_SEMI_SEMI] = ACTIONS(6077), - [anon_sym_PIPE_AMP] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6077), - [anon_sym_PIPE_PIPE] = ACTIONS(6077), - [anon_sym_LT] = ACTIONS(6077), - [anon_sym_GT] = ACTIONS(6077), - [anon_sym_GT_GT] = ACTIONS(6077), - [anon_sym_AMP_GT] = ACTIONS(6077), - [anon_sym_AMP_GT_GT] = ACTIONS(6077), - [anon_sym_LT_AMP] = ACTIONS(6077), - [anon_sym_GT_AMP] = ACTIONS(6077), - [sym__special_characters] = ACTIONS(6077), - [anon_sym_DQUOTE] = ACTIONS(6077), - [anon_sym_DOLLAR] = ACTIONS(6077), - [sym_raw_string] = ACTIONS(6077), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), - [anon_sym_BQUOTE] = ACTIONS(6077), - [anon_sym_LT_LPAREN] = ACTIONS(6077), - [anon_sym_GT_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6077), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LF] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - }, - [3218] = { - [sym__concat] = ACTIONS(4802), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [sym__special_characters] = ACTIONS(4804), - [anon_sym_DQUOTE] = ACTIONS(4804), - [anon_sym_DOLLAR] = ACTIONS(4804), - [sym_raw_string] = ACTIONS(4804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), - [anon_sym_BQUOTE] = ACTIONS(4804), - [anon_sym_LT_LPAREN] = ACTIONS(4804), - [anon_sym_GT_LPAREN] = ACTIONS(4804), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4804), - [anon_sym_SEMI] = ACTIONS(4804), - [anon_sym_LF] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4804), - }, - [3219] = { - [sym__concat] = ACTIONS(4808), - [anon_sym_SEMI_SEMI] = ACTIONS(4810), - [sym__special_characters] = ACTIONS(4810), - [anon_sym_DQUOTE] = ACTIONS(4810), - [anon_sym_DOLLAR] = ACTIONS(4810), - [sym_raw_string] = ACTIONS(4810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), - [anon_sym_BQUOTE] = ACTIONS(4810), - [anon_sym_LT_LPAREN] = ACTIONS(4810), - [anon_sym_GT_LPAREN] = ACTIONS(4810), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4810), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LF] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4810), - }, - [3220] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [sym__special_characters] = ACTIONS(4873), - [anon_sym_DQUOTE] = ACTIONS(4873), - [anon_sym_DOLLAR] = ACTIONS(4873), - [sym_raw_string] = ACTIONS(4873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), - [anon_sym_BQUOTE] = ACTIONS(4873), - [anon_sym_LT_LPAREN] = ACTIONS(4873), - [anon_sym_GT_LPAREN] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [3221] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7392), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3222] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7394), - [sym_comment] = ACTIONS(56), - }, - [3223] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7396), - [sym_comment] = ACTIONS(56), - }, - [3224] = { - [anon_sym_RBRACE] = ACTIONS(7396), - [sym_comment] = ACTIONS(56), - }, - [3225] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3678), - [anon_sym_RBRACE] = ACTIONS(7398), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3226] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_SEMI_SEMI] = ACTIONS(4885), - [sym__special_characters] = ACTIONS(4885), - [anon_sym_DQUOTE] = ACTIONS(4885), - [anon_sym_DOLLAR] = ACTIONS(4885), - [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(182), - [sym_word] = ACTIONS(4885), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [3227] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3680), - [anon_sym_RBRACE] = ACTIONS(7400), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3228] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [sym__special_characters] = ACTIONS(4891), - [anon_sym_DQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR] = ACTIONS(4891), - [sym_raw_string] = ACTIONS(4891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), - [anon_sym_BQUOTE] = ACTIONS(4891), - [anon_sym_LT_LPAREN] = ACTIONS(4891), - [anon_sym_GT_LPAREN] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4891), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [3229] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3682), - [anon_sym_RBRACE] = ACTIONS(7402), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3230] = { - [sym__concat] = ACTIONS(4895), - [anon_sym_SEMI_SEMI] = ACTIONS(4897), - [sym__special_characters] = ACTIONS(4897), - [anon_sym_DQUOTE] = ACTIONS(4897), - [anon_sym_DOLLAR] = ACTIONS(4897), - [sym_raw_string] = ACTIONS(4897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), - [anon_sym_BQUOTE] = ACTIONS(4897), - [anon_sym_LT_LPAREN] = ACTIONS(4897), - [anon_sym_GT_LPAREN] = ACTIONS(4897), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4897), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LF] = ACTIONS(4897), - [anon_sym_AMP] = ACTIONS(4897), - }, - [3231] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7404), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3232] = { - [sym__concat] = ACTIONS(4901), - [anon_sym_SEMI_SEMI] = ACTIONS(4903), - [sym__special_characters] = ACTIONS(4903), - [anon_sym_DQUOTE] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4903), - [sym_raw_string] = ACTIONS(4903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), - [anon_sym_BQUOTE] = ACTIONS(4903), - [anon_sym_LT_LPAREN] = ACTIONS(4903), - [anon_sym_GT_LPAREN] = ACTIONS(4903), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4903), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LF] = ACTIONS(4903), - [anon_sym_AMP] = ACTIONS(4903), - }, - [3233] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7406), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3234] = { - [sym_concatenation] = STATE(3685), - [sym_string] = STATE(3690), - [sym_array] = STATE(3685), - [sym_simple_expansion] = STATE(3690), - [sym_string_expansion] = STATE(3690), - [sym_expansion] = STATE(3690), - [sym_command_substitution] = STATE(3690), - [sym_process_substitution] = STATE(3690), - [sym__empty_value] = ACTIONS(7408), - [anon_sym_LPAREN] = ACTIONS(7410), - [sym__special_characters] = ACTIONS(7412), - [anon_sym_DQUOTE] = ACTIONS(7414), - [anon_sym_DOLLAR] = ACTIONS(7416), - [sym_raw_string] = ACTIONS(7418), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7420), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7422), - [anon_sym_BQUOTE] = ACTIONS(7424), - [anon_sym_LT_LPAREN] = ACTIONS(7426), - [anon_sym_GT_LPAREN] = ACTIONS(7426), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7428), - }, - [3235] = { - [sym_file_descriptor] = ACTIONS(440), - [sym_variable_name] = ACTIONS(440), - [anon_sym_esac] = ACTIONS(442), - [anon_sym_PIPE] = ACTIONS(442), - [anon_sym_SEMI_SEMI] = ACTIONS(442), - [anon_sym_PIPE_AMP] = ACTIONS(442), - [anon_sym_AMP_AMP] = ACTIONS(442), - [anon_sym_PIPE_PIPE] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_GT_GT] = ACTIONS(442), - [anon_sym_AMP_GT] = ACTIONS(442), - [anon_sym_AMP_GT_GT] = ACTIONS(442), - [anon_sym_LT_AMP] = ACTIONS(442), - [anon_sym_GT_AMP] = ACTIONS(442), - [sym__special_characters] = ACTIONS(442), - [anon_sym_DQUOTE] = ACTIONS(442), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym_raw_string] = ACTIONS(442), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(442), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(442), - [anon_sym_BQUOTE] = ACTIONS(442), - [anon_sym_LT_LPAREN] = ACTIONS(442), - [anon_sym_GT_LPAREN] = ACTIONS(442), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(442), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_LF] = ACTIONS(442), - [anon_sym_AMP] = ACTIONS(442), - }, - [3236] = { - [sym_do_group] = STATE(3695), - [anon_sym_do] = ACTIONS(448), - [sym_comment] = ACTIONS(56), - }, - [3237] = { - [sym_compound_statement] = STATE(3697), - [anon_sym_LPAREN] = ACTIONS(7430), - [anon_sym_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(56), - }, - [3238] = { - [sym_concatenation] = STATE(84), - [sym_string] = STATE(79), - [sym_simple_expansion] = STATE(79), - [sym_string_expansion] = STATE(79), - [sym_expansion] = STATE(79), - [sym_command_substitution] = STATE(79), - [sym_process_substitution] = STATE(79), - [aux_sym_command_repeat2] = STATE(351), - [anon_sym_EQ_TILDE] = ACTIONS(122), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_RBRACK] = ACTIONS(7432), - [sym__special_characters] = ACTIONS(640), - [anon_sym_DQUOTE] = ACTIONS(126), - [anon_sym_DOLLAR] = ACTIONS(128), - [sym_raw_string] = ACTIONS(130), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), - [anon_sym_BQUOTE] = ACTIONS(136), - [anon_sym_LT_LPAREN] = ACTIONS(138), - [anon_sym_GT_LPAREN] = ACTIONS(138), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(140), - }, - [3239] = { - [sym_concatenation] = STATE(95), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_string_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat2] = STATE(373), - [anon_sym_EQ_TILDE] = ACTIONS(142), - [anon_sym_EQ_EQ] = ACTIONS(142), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7432), - [sym__special_characters] = ACTIONS(682), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(148), - [sym_raw_string] = ACTIONS(150), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(156), - [anon_sym_LT_LPAREN] = ACTIONS(158), - [anon_sym_GT_LPAREN] = ACTIONS(158), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(160), - }, - [3240] = { - [sym__assignment] = STATE(3700), - [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(7434), - [anon_sym_PLUS_EQ] = ACTIONS(7434), - [sym_comment] = ACTIONS(56), - }, - [3241] = { - [aux_sym_concatenation_repeat1] = STATE(3702), - [sym__concat] = ACTIONS(7436), + [aux_sym_concatenation_repeat1] = STATE(2461), + [sym__concat] = ACTIONS(5382), [sym_variable_name] = ACTIONS(688), [anon_sym_esac] = ACTIONS(690), [anon_sym_PIPE] = ACTIONS(690), @@ -82352,34389 +61560,17564 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(690), [anon_sym_LT_LPAREN] = ACTIONS(690), [anon_sym_GT_LPAREN] = ACTIONS(690), - [sym_comment] = ACTIONS(182), + [sym_comment] = ACTIONS(166), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(690), [sym_word] = ACTIONS(690), [anon_sym_SEMI] = ACTIONS(690), - [anon_sym_LF] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(688), [anon_sym_AMP] = ACTIONS(690), }, - [3242] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(3704), - [anon_sym_DQUOTE] = ACTIONS(7438), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), + [2295] = { + [sym__concat] = ACTIONS(692), + [sym_variable_name] = ACTIONS(692), + [anon_sym_esac] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_SEMI_SEMI] = ACTIONS(694), + [anon_sym_PIPE_AMP] = ACTIONS(694), + [anon_sym_AMP_AMP] = ACTIONS(694), + [anon_sym_PIPE_PIPE] = ACTIONS(694), + [sym__special_characters] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(694), + [sym_raw_string] = ACTIONS(694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(694), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LT_LPAREN] = ACTIONS(694), + [anon_sym_GT_LPAREN] = ACTIONS(694), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(694), + [sym_word] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), }, - [3243] = { - [sym_string] = STATE(3706), - [anon_sym_DQUOTE] = ACTIONS(7440), - [anon_sym_DOLLAR] = ACTIONS(7442), - [sym_raw_string] = ACTIONS(7444), - [anon_sym_POUND] = ACTIONS(7442), - [anon_sym_DASH] = ACTIONS(7442), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7446), - [anon_sym_STAR] = ACTIONS(7442), - [anon_sym_AT] = ACTIONS(7442), - [anon_sym_QMARK] = ACTIONS(7442), - [anon_sym_0] = ACTIONS(7448), - [anon_sym__] = ACTIONS(7448), + [2296] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(5678), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), }, - [3244] = { - [aux_sym_concatenation_repeat1] = STATE(3702), - [sym__concat] = ACTIONS(7436), - [sym_variable_name] = ACTIONS(704), - [anon_sym_esac] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_SEMI_SEMI] = ACTIONS(706), - [anon_sym_PIPE_AMP] = ACTIONS(706), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE_PIPE] = ACTIONS(706), - [sym__special_characters] = ACTIONS(706), - [anon_sym_DQUOTE] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(706), - [sym_raw_string] = ACTIONS(706), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(706), - [anon_sym_BQUOTE] = ACTIONS(706), - [anon_sym_LT_LPAREN] = ACTIONS(706), - [anon_sym_GT_LPAREN] = ACTIONS(706), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(706), - [sym_word] = ACTIONS(706), - [anon_sym_SEMI] = ACTIONS(706), - [anon_sym_LF] = ACTIONS(706), - [anon_sym_AMP] = ACTIONS(706), - }, - [3245] = { - [sym_subscript] = STATE(3712), - [sym_variable_name] = ACTIONS(7450), - [anon_sym_DOLLAR] = ACTIONS(7452), - [anon_sym_POUND] = ACTIONS(7454), - [anon_sym_DASH] = ACTIONS(7452), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7456), - [anon_sym_STAR] = ACTIONS(7452), - [anon_sym_AT] = ACTIONS(7452), - [anon_sym_QMARK] = ACTIONS(7452), - [anon_sym_0] = ACTIONS(7458), - [anon_sym__] = ACTIONS(7458), - }, - [3246] = { - [sym_for_statement] = STATE(3713), - [sym_while_statement] = STATE(3713), - [sym_if_statement] = STATE(3713), - [sym_case_statement] = STATE(3713), - [sym_function_definition] = STATE(3713), - [sym_subshell] = STATE(3713), - [sym_pipeline] = STATE(3713), - [sym_list] = STATE(3713), - [sym_command] = STATE(3713), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(3713), - [sym_variable_assignment] = STATE(3714), - [sym_declaration_command] = STATE(3713), - [sym_unset_command] = STATE(3713), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [3247] = { - [sym_for_statement] = STATE(3715), - [sym_while_statement] = STATE(3715), - [sym_if_statement] = STATE(3715), - [sym_case_statement] = STATE(3715), - [sym_function_definition] = STATE(3715), - [sym_subshell] = STATE(3715), - [sym_pipeline] = STATE(3715), - [sym_list] = STATE(3715), - [sym_command] = STATE(3715), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(3715), - [sym_variable_assignment] = STATE(3716), - [sym_declaration_command] = STATE(3715), - [sym_unset_command] = STATE(3715), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [3248] = { - [sym_for_statement] = STATE(3717), - [sym_while_statement] = STATE(3717), - [sym_if_statement] = STATE(3717), - [sym_case_statement] = STATE(3717), - [sym_function_definition] = STATE(3717), - [sym_subshell] = STATE(3717), - [sym_pipeline] = STATE(3717), - [sym_list] = STATE(3717), - [sym_command] = STATE(3717), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(3717), - [sym_variable_assignment] = STATE(3718), - [sym_declaration_command] = STATE(3717), - [sym_unset_command] = STATE(3717), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [3249] = { - [sym_variable_name] = ACTIONS(718), - [anon_sym_esac] = ACTIONS(720), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_SEMI_SEMI] = ACTIONS(720), - [anon_sym_PIPE_AMP] = ACTIONS(720), - [anon_sym_AMP_AMP] = ACTIONS(720), - [anon_sym_PIPE_PIPE] = ACTIONS(720), - [sym__special_characters] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(720), - [anon_sym_DOLLAR] = ACTIONS(720), - [sym_raw_string] = ACTIONS(720), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(720), - [anon_sym_BQUOTE] = ACTIONS(720), - [anon_sym_LT_LPAREN] = ACTIONS(720), - [anon_sym_GT_LPAREN] = ACTIONS(720), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(720), - [sym_word] = ACTIONS(720), - [anon_sym_SEMI] = ACTIONS(720), - [anon_sym_LF] = ACTIONS(720), - [anon_sym_AMP] = ACTIONS(720), - }, - [3250] = { - [sym_variable_name] = ACTIONS(704), - [anon_sym_esac] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_SEMI_SEMI] = ACTIONS(706), - [anon_sym_PIPE_AMP] = ACTIONS(706), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE_PIPE] = ACTIONS(706), - [sym__special_characters] = ACTIONS(706), - [anon_sym_DQUOTE] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(706), - [sym_raw_string] = ACTIONS(706), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(706), - [anon_sym_BQUOTE] = ACTIONS(706), - [anon_sym_LT_LPAREN] = ACTIONS(706), - [anon_sym_GT_LPAREN] = ACTIONS(706), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(706), - [sym_word] = ACTIONS(706), - [anon_sym_SEMI] = ACTIONS(706), - [anon_sym_LF] = ACTIONS(706), - [anon_sym_AMP] = ACTIONS(706), - }, - [3251] = { - [sym__assignment] = STATE(3700), - [anon_sym_EQ] = ACTIONS(7434), - [anon_sym_PLUS_EQ] = ACTIONS(7434), - [sym_comment] = ACTIONS(56), - }, - [3252] = { - [sym_variable_assignment] = STATE(3250), - [sym_subscript] = STATE(3251), - [sym_concatenation] = STATE(3250), - [sym_string] = STATE(3244), - [sym_simple_expansion] = STATE(3244), - [sym_string_expansion] = STATE(3244), - [sym_expansion] = STATE(3244), - [sym_command_substitution] = STATE(3244), - [sym_process_substitution] = STATE(3244), - [aux_sym_declaration_command_repeat1] = STATE(3719), - [sym_variable_name] = ACTIONS(6605), - [anon_sym_esac] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_SEMI_SEMI] = ACTIONS(722), - [anon_sym_PIPE_AMP] = ACTIONS(722), - [anon_sym_AMP_AMP] = ACTIONS(722), - [anon_sym_PIPE_PIPE] = ACTIONS(722), - [sym__special_characters] = ACTIONS(6607), - [anon_sym_DQUOTE] = ACTIONS(6609), - [anon_sym_DOLLAR] = ACTIONS(6611), - [sym_raw_string] = ACTIONS(6613), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6615), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6617), - [anon_sym_BQUOTE] = ACTIONS(6619), - [anon_sym_LT_LPAREN] = ACTIONS(6621), - [anon_sym_GT_LPAREN] = ACTIONS(6621), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6623), - [sym_word] = ACTIONS(6613), - [anon_sym_SEMI] = ACTIONS(722), + [2297] = { + [sym__concat] = ACTIONS(722), + [sym_variable_name] = ACTIONS(722), + [anon_sym_esac] = ACTIONS(724), + [anon_sym_PIPE] = ACTIONS(724), + [anon_sym_SEMI_SEMI] = ACTIONS(724), + [anon_sym_PIPE_AMP] = ACTIONS(724), + [anon_sym_AMP_AMP] = ACTIONS(724), + [anon_sym_PIPE_PIPE] = ACTIONS(724), + [sym__special_characters] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(724), + [sym_raw_string] = ACTIONS(724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(724), + [anon_sym_BQUOTE] = ACTIONS(724), + [anon_sym_LT_LPAREN] = ACTIONS(724), + [anon_sym_GT_LPAREN] = ACTIONS(724), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(724), + [sym_word] = ACTIONS(724), + [anon_sym_SEMI] = ACTIONS(724), [anon_sym_LF] = ACTIONS(722), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(724), }, - [3253] = { - [aux_sym_concatenation_repeat1] = STATE(3721), - [sym__concat] = ACTIONS(7460), - [anon_sym_esac] = ACTIONS(726), - [anon_sym_PIPE] = ACTIONS(726), - [anon_sym_SEMI_SEMI] = ACTIONS(726), - [anon_sym_PIPE_AMP] = ACTIONS(726), - [anon_sym_AMP_AMP] = ACTIONS(726), - [anon_sym_PIPE_PIPE] = ACTIONS(726), - [sym__special_characters] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_DOLLAR] = ACTIONS(726), - [sym_raw_string] = ACTIONS(726), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(726), - [anon_sym_BQUOTE] = ACTIONS(726), - [anon_sym_LT_LPAREN] = ACTIONS(726), - [anon_sym_GT_LPAREN] = ACTIONS(726), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(726), - [sym_word] = ACTIONS(726), - [anon_sym_SEMI] = ACTIONS(726), + [2298] = { + [sym__concat] = ACTIONS(726), + [sym_variable_name] = ACTIONS(726), + [anon_sym_esac] = ACTIONS(728), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_SEMI_SEMI] = ACTIONS(728), + [anon_sym_PIPE_AMP] = ACTIONS(728), + [anon_sym_AMP_AMP] = ACTIONS(728), + [anon_sym_PIPE_PIPE] = ACTIONS(728), + [sym__special_characters] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(728), + [anon_sym_DOLLAR] = ACTIONS(728), + [sym_raw_string] = ACTIONS(728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(728), + [anon_sym_BQUOTE] = ACTIONS(728), + [anon_sym_LT_LPAREN] = ACTIONS(728), + [anon_sym_GT_LPAREN] = ACTIONS(728), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(728), + [sym_word] = ACTIONS(728), + [anon_sym_SEMI] = ACTIONS(728), [anon_sym_LF] = ACTIONS(726), - [anon_sym_AMP] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(728), }, - [3254] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(3723), - [anon_sym_DQUOTE] = ACTIONS(7462), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), + [2299] = { + [sym__concat] = ACTIONS(730), + [sym_variable_name] = ACTIONS(730), + [anon_sym_esac] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(732), + [anon_sym_SEMI_SEMI] = ACTIONS(732), + [anon_sym_PIPE_AMP] = ACTIONS(732), + [anon_sym_AMP_AMP] = ACTIONS(732), + [anon_sym_PIPE_PIPE] = ACTIONS(732), + [sym__special_characters] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_DOLLAR] = ACTIONS(732), + [sym_raw_string] = ACTIONS(732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(732), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(732), + [anon_sym_BQUOTE] = ACTIONS(732), + [anon_sym_LT_LPAREN] = ACTIONS(732), + [anon_sym_GT_LPAREN] = ACTIONS(732), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(732), + [sym_word] = ACTIONS(732), + [anon_sym_SEMI] = ACTIONS(732), + [anon_sym_LF] = ACTIONS(730), + [anon_sym_AMP] = ACTIONS(732), }, - [3255] = { - [sym_string] = STATE(3725), - [anon_sym_DQUOTE] = ACTIONS(7464), - [anon_sym_DOLLAR] = ACTIONS(7466), - [sym_raw_string] = ACTIONS(7468), - [anon_sym_POUND] = ACTIONS(7466), - [anon_sym_DASH] = ACTIONS(7466), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7470), - [anon_sym_STAR] = ACTIONS(7466), - [anon_sym_AT] = ACTIONS(7466), - [anon_sym_QMARK] = ACTIONS(7466), - [anon_sym_0] = ACTIONS(7472), - [anon_sym__] = ACTIONS(7472), + [2300] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(5680), + [sym_comment] = ACTIONS(54), }, - [3256] = { - [aux_sym_concatenation_repeat1] = STATE(3721), - [sym__concat] = ACTIONS(7460), - [anon_sym_esac] = ACTIONS(740), - [anon_sym_PIPE] = ACTIONS(740), - [anon_sym_SEMI_SEMI] = ACTIONS(740), - [anon_sym_PIPE_AMP] = ACTIONS(740), - [anon_sym_AMP_AMP] = ACTIONS(740), - [anon_sym_PIPE_PIPE] = ACTIONS(740), - [sym__special_characters] = ACTIONS(740), - [anon_sym_DQUOTE] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(740), - [sym_raw_string] = ACTIONS(740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(740), - [anon_sym_BQUOTE] = ACTIONS(740), - [anon_sym_LT_LPAREN] = ACTIONS(740), - [anon_sym_GT_LPAREN] = ACTIONS(740), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(740), - [sym_word] = ACTIONS(740), - [anon_sym_SEMI] = ACTIONS(740), - [anon_sym_LF] = ACTIONS(740), - [anon_sym_AMP] = ACTIONS(740), - }, - [3257] = { - [sym_subscript] = STATE(3731), - [sym_variable_name] = ACTIONS(7474), - [anon_sym_DOLLAR] = ACTIONS(7476), - [anon_sym_POUND] = ACTIONS(7478), - [anon_sym_DASH] = ACTIONS(7476), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7480), - [anon_sym_STAR] = ACTIONS(7476), - [anon_sym_AT] = ACTIONS(7476), - [anon_sym_QMARK] = ACTIONS(7476), - [anon_sym_0] = ACTIONS(7482), - [anon_sym__] = ACTIONS(7482), - }, - [3258] = { - [sym_for_statement] = STATE(3732), - [sym_while_statement] = STATE(3732), - [sym_if_statement] = STATE(3732), - [sym_case_statement] = STATE(3732), - [sym_function_definition] = STATE(3732), - [sym_subshell] = STATE(3732), - [sym_pipeline] = STATE(3732), - [sym_list] = STATE(3732), - [sym_command] = STATE(3732), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(3732), - [sym_variable_assignment] = STATE(3733), - [sym_declaration_command] = STATE(3732), - [sym_unset_command] = STATE(3732), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [3259] = { - [sym_for_statement] = STATE(3734), - [sym_while_statement] = STATE(3734), - [sym_if_statement] = STATE(3734), - [sym_case_statement] = STATE(3734), - [sym_function_definition] = STATE(3734), - [sym_subshell] = STATE(3734), - [sym_pipeline] = STATE(3734), - [sym_list] = STATE(3734), - [sym_command] = STATE(3734), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(3734), - [sym_variable_assignment] = STATE(3735), - [sym_declaration_command] = STATE(3734), - [sym_unset_command] = STATE(3734), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [3260] = { - [sym_for_statement] = STATE(3736), - [sym_while_statement] = STATE(3736), - [sym_if_statement] = STATE(3736), - [sym_case_statement] = STATE(3736), - [sym_function_definition] = STATE(3736), - [sym_subshell] = STATE(3736), - [sym_pipeline] = STATE(3736), - [sym_list] = STATE(3736), - [sym_command] = STATE(3736), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(3736), - [sym_variable_assignment] = STATE(3737), - [sym_declaration_command] = STATE(3736), - [sym_unset_command] = STATE(3736), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [3261] = { - [anon_sym_esac] = ACTIONS(752), - [anon_sym_PIPE] = ACTIONS(752), - [anon_sym_SEMI_SEMI] = ACTIONS(752), - [anon_sym_PIPE_AMP] = ACTIONS(752), - [anon_sym_AMP_AMP] = ACTIONS(752), - [anon_sym_PIPE_PIPE] = ACTIONS(752), - [sym__special_characters] = ACTIONS(752), - [anon_sym_DQUOTE] = ACTIONS(752), - [anon_sym_DOLLAR] = ACTIONS(752), - [sym_raw_string] = ACTIONS(752), + [2301] = { + [sym_concatenation] = STATE(2466), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2466), + [anon_sym_RBRACE] = ACTIONS(5682), + [anon_sym_EQ] = ACTIONS(5684), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5686), [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(752), - [anon_sym_BQUOTE] = ACTIONS(752), - [anon_sym_LT_LPAREN] = ACTIONS(752), - [anon_sym_GT_LPAREN] = ACTIONS(752), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(752), - [sym_word] = ACTIONS(752), - [anon_sym_SEMI] = ACTIONS(752), - [anon_sym_LF] = ACTIONS(752), - [anon_sym_AMP] = ACTIONS(752), - }, - [3262] = { - [anon_sym_esac] = ACTIONS(740), - [anon_sym_PIPE] = ACTIONS(740), - [anon_sym_SEMI_SEMI] = ACTIONS(740), - [anon_sym_PIPE_AMP] = ACTIONS(740), - [anon_sym_AMP_AMP] = ACTIONS(740), - [anon_sym_PIPE_PIPE] = ACTIONS(740), - [sym__special_characters] = ACTIONS(740), - [anon_sym_DQUOTE] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(740), - [sym_raw_string] = ACTIONS(740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(740), - [anon_sym_BQUOTE] = ACTIONS(740), - [anon_sym_LT_LPAREN] = ACTIONS(740), - [anon_sym_GT_LPAREN] = ACTIONS(740), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(740), - [sym_word] = ACTIONS(740), - [anon_sym_SEMI] = ACTIONS(740), - [anon_sym_LF] = ACTIONS(740), - [anon_sym_AMP] = ACTIONS(740), - }, - [3263] = { - [sym_concatenation] = STATE(3262), - [sym_string] = STATE(3256), - [sym_simple_expansion] = STATE(3256), - [sym_string_expansion] = STATE(3256), - [sym_expansion] = STATE(3256), - [sym_command_substitution] = STATE(3256), - [sym_process_substitution] = STATE(3256), - [aux_sym_unset_command_repeat1] = STATE(3738), - [anon_sym_esac] = ACTIONS(754), - [anon_sym_PIPE] = ACTIONS(754), - [anon_sym_SEMI_SEMI] = ACTIONS(754), - [anon_sym_PIPE_AMP] = ACTIONS(754), - [anon_sym_AMP_AMP] = ACTIONS(754), - [anon_sym_PIPE_PIPE] = ACTIONS(754), - [sym__special_characters] = ACTIONS(6625), - [anon_sym_DQUOTE] = ACTIONS(6627), - [anon_sym_DOLLAR] = ACTIONS(6629), - [sym_raw_string] = ACTIONS(6631), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6633), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6635), - [anon_sym_BQUOTE] = ACTIONS(6637), - [anon_sym_LT_LPAREN] = ACTIONS(6639), - [anon_sym_GT_LPAREN] = ACTIONS(6639), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6641), - [sym_word] = ACTIONS(6631), - [anon_sym_SEMI] = ACTIONS(754), - [anon_sym_LF] = ACTIONS(754), - [anon_sym_AMP] = ACTIONS(754), - }, - [3264] = { - [sym_string] = STATE(3739), - [sym_simple_expansion] = STATE(3739), - [sym_string_expansion] = STATE(3739), - [sym_expansion] = STATE(3739), - [sym_command_substitution] = STATE(3739), - [sym_process_substitution] = STATE(3739), - [sym__special_characters] = ACTIONS(7484), - [anon_sym_DQUOTE] = ACTIONS(5557), - [anon_sym_DOLLAR] = ACTIONS(5559), - [sym_raw_string] = ACTIONS(7486), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), - [anon_sym_BQUOTE] = ACTIONS(5567), - [anon_sym_LT_LPAREN] = ACTIONS(5569), - [anon_sym_GT_LPAREN] = ACTIONS(5569), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7484), - }, - [3265] = { - [aux_sym_concatenation_repeat1] = STATE(3740), - [sym_file_descriptor] = ACTIONS(790), - [sym__concat] = ACTIONS(6643), - [anon_sym_esac] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(792), - [anon_sym_SEMI_SEMI] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [anon_sym_EQ_TILDE] = ACTIONS(792), - [anon_sym_EQ_EQ] = ACTIONS(792), - [anon_sym_LT] = ACTIONS(792), - [anon_sym_GT] = ACTIONS(792), - [anon_sym_GT_GT] = ACTIONS(792), - [anon_sym_AMP_GT] = ACTIONS(792), - [anon_sym_AMP_GT_GT] = ACTIONS(792), - [anon_sym_LT_AMP] = ACTIONS(792), - [anon_sym_GT_AMP] = ACTIONS(792), - [anon_sym_LT_LT] = ACTIONS(792), - [anon_sym_LT_LT_DASH] = ACTIONS(792), - [anon_sym_LT_LT_LT] = ACTIONS(792), - [sym__special_characters] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(792), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(792), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LF] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(792), - }, - [3266] = { - [sym_file_descriptor] = ACTIONS(794), - [sym__concat] = ACTIONS(794), - [anon_sym_esac] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_SEMI_SEMI] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [anon_sym_EQ_TILDE] = ACTIONS(796), - [anon_sym_EQ_EQ] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_GT] = ACTIONS(796), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_AMP_GT] = ACTIONS(796), - [anon_sym_AMP_GT_GT] = ACTIONS(796), - [anon_sym_LT_AMP] = ACTIONS(796), - [anon_sym_GT_AMP] = ACTIONS(796), - [anon_sym_LT_LT] = ACTIONS(796), - [anon_sym_LT_LT_DASH] = ACTIONS(796), - [anon_sym_LT_LT_LT] = ACTIONS(796), - [sym__special_characters] = ACTIONS(796), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(796), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(796), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_LF] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - }, - [3267] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(7488), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [3268] = { - [sym_file_descriptor] = ACTIONS(826), - [sym__concat] = ACTIONS(826), - [anon_sym_esac] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_SEMI_SEMI] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [anon_sym_EQ_TILDE] = ACTIONS(828), - [anon_sym_EQ_EQ] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(828), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(828), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), - [anon_sym_LT_LT] = ACTIONS(828), - [anon_sym_LT_LT_DASH] = ACTIONS(828), - [anon_sym_LT_LT_LT] = ACTIONS(828), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(828), - }, - [3269] = { - [sym_file_descriptor] = ACTIONS(830), - [sym__concat] = ACTIONS(830), - [anon_sym_esac] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [anon_sym_EQ_TILDE] = ACTIONS(832), - [anon_sym_EQ_EQ] = ACTIONS(832), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_GT] = ACTIONS(832), - [anon_sym_GT_GT] = ACTIONS(832), - [anon_sym_AMP_GT] = ACTIONS(832), - [anon_sym_AMP_GT_GT] = ACTIONS(832), - [anon_sym_LT_AMP] = ACTIONS(832), - [anon_sym_GT_AMP] = ACTIONS(832), - [anon_sym_LT_LT] = ACTIONS(832), - [anon_sym_LT_LT_DASH] = ACTIONS(832), - [anon_sym_LT_LT_LT] = ACTIONS(832), - [sym__special_characters] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(832), - [anon_sym_AMP] = ACTIONS(832), - }, - [3270] = { - [sym_file_descriptor] = ACTIONS(834), - [sym__concat] = ACTIONS(834), - [anon_sym_esac] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_SEMI_SEMI] = ACTIONS(836), - [anon_sym_PIPE_AMP] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [anon_sym_EQ_TILDE] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_AMP_GT] = ACTIONS(836), - [anon_sym_AMP_GT_GT] = ACTIONS(836), - [anon_sym_LT_AMP] = ACTIONS(836), - [anon_sym_GT_AMP] = ACTIONS(836), - [anon_sym_LT_LT] = ACTIONS(836), - [anon_sym_LT_LT_DASH] = ACTIONS(836), - [anon_sym_LT_LT_LT] = ACTIONS(836), - [sym__special_characters] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [sym_raw_string] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), - [anon_sym_BQUOTE] = ACTIONS(836), - [anon_sym_LT_LPAREN] = ACTIONS(836), - [anon_sym_GT_LPAREN] = ACTIONS(836), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(836), - }, - [3271] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(7490), - [sym_comment] = ACTIONS(56), - }, - [3272] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3745), - [anon_sym_RBRACE] = ACTIONS(7492), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(7494), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3273] = { - [sym_subscript] = STATE(3749), - [sym_variable_name] = ACTIONS(7496), - [anon_sym_DOLLAR] = ACTIONS(7498), - [anon_sym_DASH] = ACTIONS(7498), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7500), - [anon_sym_STAR] = ACTIONS(7498), - [anon_sym_AT] = ACTIONS(7498), - [anon_sym_QMARK] = ACTIONS(7498), - [anon_sym_0] = ACTIONS(7502), - [anon_sym__] = ACTIONS(7502), - }, - [3274] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3752), - [anon_sym_RBRACE] = ACTIONS(7504), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(7506), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3275] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3755), - [anon_sym_RBRACE] = ACTIONS(7508), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(7510), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3276] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(7512), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [3277] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(7512), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [3278] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(7512), - [sym_comment] = ACTIONS(56), - }, - [3279] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(7512), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [3280] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(7514), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [3281] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(7514), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [3282] = { - [anon_sym_RPAREN] = ACTIONS(7516), - [sym_comment] = ACTIONS(56), - }, - [3283] = { - [sym_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_command] = STATE(602), - [sym_command_name] = STATE(2661), - [sym_bracket_command] = STATE(602), - [sym_variable_assignment] = STATE(3759), - [sym_declaration_command] = STATE(602), - [sym_unset_command] = STATE(602), - [sym_subscript] = STATE(2663), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2664), - [sym_string] = STATE(2653), - [sym_simple_expansion] = STATE(2653), - [sym_string_expansion] = STATE(2653), - [sym_expansion] = STATE(2653), - [sym_command_substitution] = STATE(2653), - [sym_process_substitution] = STATE(2653), - [aux_sym_command_repeat1] = STATE(2666), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5537), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5539), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(5545), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5547), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), - [anon_sym_declare] = ACTIONS(5551), - [anon_sym_typeset] = ACTIONS(5551), - [anon_sym_export] = ACTIONS(5551), - [anon_sym_readonly] = ACTIONS(5551), - [anon_sym_local] = ACTIONS(5551), - [anon_sym_unset] = ACTIONS(5553), - [anon_sym_unsetenv] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(5555), - [anon_sym_DQUOTE] = ACTIONS(5557), - [anon_sym_DOLLAR] = ACTIONS(5559), - [sym_raw_string] = ACTIONS(5561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), - [anon_sym_BQUOTE] = ACTIONS(5567), - [anon_sym_LT_LPAREN] = ACTIONS(5569), - [anon_sym_GT_LPAREN] = ACTIONS(5569), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5571), - }, - [3284] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_esac] = ACTIONS(7518), - [anon_sym_SEMI_SEMI] = ACTIONS(1102), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(7520), - [anon_sym_DQUOTE] = ACTIONS(7522), - [anon_sym_DOLLAR] = ACTIONS(7524), - [sym_raw_string] = ACTIONS(7522), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7522), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7522), - [anon_sym_BQUOTE] = ACTIONS(7522), - [anon_sym_LT_LPAREN] = ACTIONS(7522), - [anon_sym_GT_LPAREN] = ACTIONS(7522), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7520), - }, - [3285] = { - [sym_for_statement] = STATE(3760), - [sym_while_statement] = STATE(3760), - [sym_if_statement] = STATE(3760), - [sym_case_statement] = STATE(3760), - [sym_function_definition] = STATE(3760), - [sym_subshell] = STATE(3760), - [sym_pipeline] = STATE(3760), - [sym_list] = STATE(3760), - [sym_command] = STATE(3760), - [sym_command_name] = STATE(2661), - [sym_bracket_command] = STATE(3760), - [sym_variable_assignment] = STATE(3761), - [sym_declaration_command] = STATE(3760), - [sym_unset_command] = STATE(3760), - [sym_subscript] = STATE(2663), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2664), - [sym_string] = STATE(2653), - [sym_simple_expansion] = STATE(2653), - [sym_string_expansion] = STATE(2653), - [sym_expansion] = STATE(2653), - [sym_command_substitution] = STATE(2653), - [sym_process_substitution] = STATE(2653), - [aux_sym_command_repeat1] = STATE(2666), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5537), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5539), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(5545), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5547), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), - [anon_sym_declare] = ACTIONS(5551), - [anon_sym_typeset] = ACTIONS(5551), - [anon_sym_export] = ACTIONS(5551), - [anon_sym_readonly] = ACTIONS(5551), - [anon_sym_local] = ACTIONS(5551), - [anon_sym_unset] = ACTIONS(5553), - [anon_sym_unsetenv] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(5555), - [anon_sym_DQUOTE] = ACTIONS(5557), - [anon_sym_DOLLAR] = ACTIONS(5559), - [sym_raw_string] = ACTIONS(5561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), - [anon_sym_BQUOTE] = ACTIONS(5567), - [anon_sym_LT_LPAREN] = ACTIONS(5569), - [anon_sym_GT_LPAREN] = ACTIONS(5569), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5571), - }, - [3286] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_esac] = ACTIONS(1104), - [anon_sym_SEMI_SEMI] = ACTIONS(1102), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1104), - [sym_raw_string] = ACTIONS(1102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), - [anon_sym_BQUOTE] = ACTIONS(1102), - [anon_sym_LT_LPAREN] = ACTIONS(1102), - [anon_sym_GT_LPAREN] = ACTIONS(1102), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1106), - }, - [3287] = { - [anon_sym_LT] = ACTIONS(7526), - [anon_sym_GT] = ACTIONS(7526), - [anon_sym_GT_GT] = ACTIONS(7528), - [anon_sym_AMP_GT] = ACTIONS(7526), - [anon_sym_AMP_GT_GT] = ACTIONS(7528), - [anon_sym_LT_AMP] = ACTIONS(7528), - [anon_sym_GT_AMP] = ACTIONS(7528), - [sym_comment] = ACTIONS(56), - }, - [3288] = { - [sym_concatenation] = STATE(3765), - [sym_string] = STATE(3764), - [sym_simple_expansion] = STATE(3764), - [sym_string_expansion] = STATE(3764), - [sym_expansion] = STATE(3764), - [sym_command_substitution] = STATE(3764), - [sym_process_substitution] = STATE(3764), - [sym__special_characters] = ACTIONS(7530), - [anon_sym_DQUOTE] = ACTIONS(6687), - [anon_sym_DOLLAR] = ACTIONS(6689), - [sym_raw_string] = ACTIONS(7532), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6695), - [anon_sym_BQUOTE] = ACTIONS(6697), - [anon_sym_LT_LPAREN] = ACTIONS(6699), - [anon_sym_GT_LPAREN] = ACTIONS(6699), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7532), - [sym_regex] = ACTIONS(7534), - }, - [3289] = { - [sym_concatenation] = STATE(618), - [sym_string] = STATE(3769), - [sym_simple_expansion] = STATE(3769), - [sym_string_expansion] = STATE(3769), - [sym_expansion] = STATE(3769), - [sym_command_substitution] = STATE(3769), - [sym_process_substitution] = STATE(3769), - [sym__special_characters] = ACTIONS(7536), - [anon_sym_DQUOTE] = ACTIONS(7538), - [anon_sym_DOLLAR] = ACTIONS(7540), - [sym_raw_string] = ACTIONS(7542), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7544), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7546), - [anon_sym_BQUOTE] = ACTIONS(7548), - [anon_sym_LT_LPAREN] = ACTIONS(7550), - [anon_sym_GT_LPAREN] = ACTIONS(7550), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7552), - }, - [3290] = { - [sym_concatenation] = STATE(624), - [sym_string] = STATE(3775), - [sym_simple_expansion] = STATE(3775), - [sym_string_expansion] = STATE(3775), - [sym_expansion] = STATE(3775), - [sym_command_substitution] = STATE(3775), - [sym_process_substitution] = STATE(3775), - [sym__special_characters] = ACTIONS(7554), - [anon_sym_DQUOTE] = ACTIONS(7538), - [anon_sym_DOLLAR] = ACTIONS(7540), - [sym_raw_string] = ACTIONS(7556), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7544), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7546), - [anon_sym_BQUOTE] = ACTIONS(7548), - [anon_sym_LT_LPAREN] = ACTIONS(7550), - [anon_sym_GT_LPAREN] = ACTIONS(7550), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7558), - }, - [3291] = { - [aux_sym_concatenation_repeat1] = STATE(3265), - [sym_file_descriptor] = ACTIONS(608), - [sym__concat] = ACTIONS(6643), - [anon_sym_esac] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_SEMI_SEMI] = ACTIONS(610), - [anon_sym_PIPE_AMP] = ACTIONS(610), - [anon_sym_AMP_AMP] = ACTIONS(610), - [anon_sym_PIPE_PIPE] = ACTIONS(610), - [anon_sym_EQ_TILDE] = ACTIONS(610), - [anon_sym_EQ_EQ] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(610), - [anon_sym_GT] = ACTIONS(610), - [anon_sym_GT_GT] = ACTIONS(610), - [anon_sym_AMP_GT] = ACTIONS(610), - [anon_sym_AMP_GT_GT] = ACTIONS(610), - [anon_sym_LT_AMP] = ACTIONS(610), - [anon_sym_GT_AMP] = ACTIONS(610), - [anon_sym_LT_LT] = ACTIONS(610), - [anon_sym_LT_LT_DASH] = ACTIONS(610), - [anon_sym_LT_LT_LT] = ACTIONS(610), - [sym__special_characters] = ACTIONS(610), - [anon_sym_DQUOTE] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(610), - [sym_raw_string] = ACTIONS(610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(610), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(610), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_LT_LPAREN] = ACTIONS(610), - [anon_sym_GT_LPAREN] = ACTIONS(610), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(610), - [anon_sym_LF] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(610), - }, - [3292] = { - [aux_sym_concatenation_repeat1] = STATE(3265), - [sym_file_descriptor] = ACTIONS(624), - [sym__concat] = ACTIONS(6643), - [anon_sym_esac] = ACTIONS(626), - [anon_sym_PIPE] = ACTIONS(626), - [anon_sym_SEMI_SEMI] = ACTIONS(626), - [anon_sym_PIPE_AMP] = ACTIONS(626), - [anon_sym_AMP_AMP] = ACTIONS(626), - [anon_sym_PIPE_PIPE] = ACTIONS(626), - [anon_sym_EQ_TILDE] = ACTIONS(626), - [anon_sym_EQ_EQ] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_GT] = ACTIONS(626), - [anon_sym_GT_GT] = ACTIONS(626), - [anon_sym_AMP_GT] = ACTIONS(626), - [anon_sym_AMP_GT_GT] = ACTIONS(626), - [anon_sym_LT_AMP] = ACTIONS(626), - [anon_sym_GT_AMP] = ACTIONS(626), - [anon_sym_LT_LT] = ACTIONS(626), - [anon_sym_LT_LT_DASH] = ACTIONS(626), - [anon_sym_LT_LT_LT] = ACTIONS(626), - [sym__special_characters] = ACTIONS(626), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_DOLLAR] = ACTIONS(626), - [sym_raw_string] = ACTIONS(626), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(626), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(626), - [anon_sym_BQUOTE] = ACTIONS(626), - [anon_sym_LT_LPAREN] = ACTIONS(626), - [anon_sym_GT_LPAREN] = ACTIONS(626), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(626), - [anon_sym_LF] = ACTIONS(626), - [anon_sym_AMP] = ACTIONS(626), - }, - [3293] = { - [sym_file_descriptor] = ACTIONS(624), - [anon_sym_esac] = ACTIONS(626), - [anon_sym_PIPE] = ACTIONS(626), - [anon_sym_SEMI_SEMI] = ACTIONS(626), - [anon_sym_PIPE_AMP] = ACTIONS(626), - [anon_sym_AMP_AMP] = ACTIONS(626), - [anon_sym_PIPE_PIPE] = ACTIONS(626), - [anon_sym_EQ_TILDE] = ACTIONS(626), - [anon_sym_EQ_EQ] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_GT] = ACTIONS(626), - [anon_sym_GT_GT] = ACTIONS(626), - [anon_sym_AMP_GT] = ACTIONS(626), - [anon_sym_AMP_GT_GT] = ACTIONS(626), - [anon_sym_LT_AMP] = ACTIONS(626), - [anon_sym_GT_AMP] = ACTIONS(626), - [anon_sym_LT_LT] = ACTIONS(626), - [anon_sym_LT_LT_DASH] = ACTIONS(626), - [anon_sym_LT_LT_LT] = ACTIONS(626), - [sym__special_characters] = ACTIONS(626), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_DOLLAR] = ACTIONS(626), - [sym_raw_string] = ACTIONS(626), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(626), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(626), - [anon_sym_BQUOTE] = ACTIONS(626), - [anon_sym_LT_LPAREN] = ACTIONS(626), - [anon_sym_GT_LPAREN] = ACTIONS(626), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(626), - [anon_sym_LF] = ACTIONS(626), - [anon_sym_AMP] = ACTIONS(626), - }, - [3294] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(3776), - [sym_file_descriptor] = ACTIONS(6677), - [anon_sym_esac] = ACTIONS(1150), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_SEMI_SEMI] = ACTIONS(1150), - [anon_sym_PIPE_AMP] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_LT] = ACTIONS(6681), - [anon_sym_GT] = ACTIONS(6681), - [anon_sym_GT_GT] = ACTIONS(6681), - [anon_sym_AMP_GT] = ACTIONS(6681), - [anon_sym_AMP_GT_GT] = ACTIONS(6681), - [anon_sym_LT_AMP] = ACTIONS(6681), - [anon_sym_GT_AMP] = ACTIONS(6681), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6683), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), - }, - [3295] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [sym_concatenation] = STATE(3293), - [sym_string] = STATE(3292), - [sym_simple_expansion] = STATE(3292), - [sym_string_expansion] = STATE(3292), - [sym_expansion] = STATE(3292), - [sym_command_substitution] = STATE(3292), - [sym_process_substitution] = STATE(3292), - [aux_sym_while_statement_repeat1] = STATE(3777), - [aux_sym_command_repeat2] = STATE(3778), - [sym_file_descriptor] = ACTIONS(6677), - [anon_sym_esac] = ACTIONS(1150), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_SEMI_SEMI] = ACTIONS(1150), - [anon_sym_PIPE_AMP] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_EQ_TILDE] = ACTIONS(6679), - [anon_sym_EQ_EQ] = ACTIONS(6679), - [anon_sym_LT] = ACTIONS(6681), - [anon_sym_GT] = ACTIONS(6681), - [anon_sym_GT_GT] = ACTIONS(6681), - [anon_sym_AMP_GT] = ACTIONS(6681), - [anon_sym_AMP_GT_GT] = ACTIONS(6681), - [anon_sym_LT_AMP] = ACTIONS(6681), - [anon_sym_GT_AMP] = ACTIONS(6681), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6683), - [sym__special_characters] = ACTIONS(6685), - [anon_sym_DQUOTE] = ACTIONS(6687), - [anon_sym_DOLLAR] = ACTIONS(6689), - [sym_raw_string] = ACTIONS(6691), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6695), - [anon_sym_BQUOTE] = ACTIONS(6697), - [anon_sym_LT_LPAREN] = ACTIONS(6699), - [anon_sym_GT_LPAREN] = ACTIONS(6699), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6691), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), - }, - [3296] = { - [anon_sym_esac] = ACTIONS(7518), - [sym__special_characters] = ACTIONS(7524), - [anon_sym_DQUOTE] = ACTIONS(7522), - [anon_sym_DOLLAR] = ACTIONS(7524), - [sym_raw_string] = ACTIONS(7522), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7522), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7522), - [anon_sym_BQUOTE] = ACTIONS(7522), - [anon_sym_LT_LPAREN] = ACTIONS(7522), - [anon_sym_GT_LPAREN] = ACTIONS(7522), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7520), - }, - [3297] = { - [anon_sym_esac] = ACTIONS(7560), - [anon_sym_PIPE] = ACTIONS(6669), - [anon_sym_SEMI_SEMI] = ACTIONS(7562), - [anon_sym_PIPE_AMP] = ACTIONS(6669), - [anon_sym_AMP_AMP] = ACTIONS(6673), - [anon_sym_PIPE_PIPE] = ACTIONS(6673), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6675), - [anon_sym_LF] = ACTIONS(6675), - [anon_sym_AMP] = ACTIONS(6675), - }, - [3298] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_esac] = ACTIONS(7560), - [anon_sym_PIPE] = ACTIONS(6669), - [anon_sym_SEMI_SEMI] = ACTIONS(7562), - [anon_sym_PIPE_AMP] = ACTIONS(6669), - [anon_sym_AMP_AMP] = ACTIONS(6673), - [anon_sym_PIPE_PIPE] = ACTIONS(6673), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(6675), - [anon_sym_LF] = ACTIONS(6675), - [anon_sym_AMP] = ACTIONS(6675), - }, - [3299] = { - [sym__terminated_statement] = STATE(2659), - [sym_for_statement] = STATE(3780), - [sym_while_statement] = STATE(3780), - [sym_if_statement] = STATE(3780), - [sym_case_statement] = STATE(3780), - [sym_function_definition] = STATE(3780), - [sym_subshell] = STATE(3780), - [sym_pipeline] = STATE(3780), - [sym_list] = STATE(3780), - [sym_command] = STATE(3780), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(3780), - [sym_variable_assignment] = STATE(3781), - [sym_declaration_command] = STATE(3780), - [sym_unset_command] = STATE(3780), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(3299), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1152), - [sym_variable_name] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1166), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_esac] = ACTIONS(4311), - [anon_sym_SEMI_SEMI] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), - [anon_sym_declare] = ACTIONS(1184), - [anon_sym_typeset] = ACTIONS(1184), - [anon_sym_export] = ACTIONS(1184), - [anon_sym_readonly] = ACTIONS(1184), - [anon_sym_local] = ACTIONS(1184), - [anon_sym_unset] = ACTIONS(1187), - [anon_sym_unsetenv] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1193), - [anon_sym_AMP_GT] = ACTIONS(1190), - [anon_sym_AMP_GT_GT] = ACTIONS(1193), - [anon_sym_LT_AMP] = ACTIONS(1193), - [anon_sym_GT_AMP] = ACTIONS(1193), - [sym__special_characters] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1199), - [anon_sym_DOLLAR] = ACTIONS(1202), - [sym_raw_string] = ACTIONS(1205), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1211), - [anon_sym_BQUOTE] = ACTIONS(1214), - [anon_sym_LT_LPAREN] = ACTIONS(1217), - [anon_sym_GT_LPAREN] = ACTIONS(1217), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1220), - }, - [3300] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [sym_concatenation] = STATE(3293), - [sym_string] = STATE(3292), - [sym_simple_expansion] = STATE(3292), - [sym_string_expansion] = STATE(3292), - [sym_expansion] = STATE(3292), - [sym_command_substitution] = STATE(3292), - [sym_process_substitution] = STATE(3292), - [aux_sym_while_statement_repeat1] = STATE(3777), - [aux_sym_command_repeat2] = STATE(3782), - [sym_file_descriptor] = ACTIONS(6677), - [anon_sym_esac] = ACTIONS(1150), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_SEMI_SEMI] = ACTIONS(1150), - [anon_sym_PIPE_AMP] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_EQ_TILDE] = ACTIONS(6679), - [anon_sym_EQ_EQ] = ACTIONS(6679), - [anon_sym_LT] = ACTIONS(6681), - [anon_sym_GT] = ACTIONS(6681), - [anon_sym_GT_GT] = ACTIONS(6681), - [anon_sym_AMP_GT] = ACTIONS(6681), - [anon_sym_AMP_GT_GT] = ACTIONS(6681), - [anon_sym_LT_AMP] = ACTIONS(6681), - [anon_sym_GT_AMP] = ACTIONS(6681), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6683), - [sym__special_characters] = ACTIONS(6685), - [anon_sym_DQUOTE] = ACTIONS(6687), - [anon_sym_DOLLAR] = ACTIONS(6689), - [sym_raw_string] = ACTIONS(6691), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6695), - [anon_sym_BQUOTE] = ACTIONS(6697), - [anon_sym_LT_LPAREN] = ACTIONS(6699), - [anon_sym_GT_LPAREN] = ACTIONS(6699), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6691), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), - }, - [3301] = { - [sym__terminated_statement] = STATE(2659), - [sym_for_statement] = STATE(3784), - [sym_while_statement] = STATE(3784), - [sym_if_statement] = STATE(3784), - [sym_case_statement] = STATE(3784), - [sym_function_definition] = STATE(3784), - [sym_subshell] = STATE(3784), - [sym_pipeline] = STATE(3784), - [sym_list] = STATE(3784), - [sym_command] = STATE(3784), - [sym_command_name] = STATE(2661), - [sym_bracket_command] = STATE(3784), - [sym_variable_assignment] = STATE(3785), - [sym_declaration_command] = STATE(3784), - [sym_unset_command] = STATE(3784), - [sym_subscript] = STATE(2663), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2664), - [sym_string] = STATE(2653), - [sym_simple_expansion] = STATE(2653), - [sym_string_expansion] = STATE(2653), - [sym_expansion] = STATE(2653), - [sym_command_substitution] = STATE(2653), - [sym_process_substitution] = STATE(2653), - [aux_sym_program_repeat1] = STATE(3299), - [aux_sym_command_repeat1] = STATE(2666), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5537), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5539), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(7518), - [anon_sym_SEMI_SEMI] = ACTIONS(7564), - [anon_sym_function] = ACTIONS(5545), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5547), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), - [anon_sym_declare] = ACTIONS(5551), - [anon_sym_typeset] = ACTIONS(5551), - [anon_sym_export] = ACTIONS(5551), - [anon_sym_readonly] = ACTIONS(5551), - [anon_sym_local] = ACTIONS(5551), - [anon_sym_unset] = ACTIONS(5553), - [anon_sym_unsetenv] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(5555), - [anon_sym_DQUOTE] = ACTIONS(5557), - [anon_sym_DOLLAR] = ACTIONS(5559), - [sym_raw_string] = ACTIONS(5561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), - [anon_sym_BQUOTE] = ACTIONS(5567), - [anon_sym_LT_LPAREN] = ACTIONS(5569), - [anon_sym_GT_LPAREN] = ACTIONS(5569), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5571), - }, - [3302] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_esac] = ACTIONS(7566), - [anon_sym_SEMI_SEMI] = ACTIONS(1102), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(7568), - [anon_sym_DQUOTE] = ACTIONS(7570), - [anon_sym_DOLLAR] = ACTIONS(7572), - [sym_raw_string] = ACTIONS(7570), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7570), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7570), - [anon_sym_BQUOTE] = ACTIONS(7570), - [anon_sym_LT_LPAREN] = ACTIONS(7570), - [anon_sym_GT_LPAREN] = ACTIONS(7570), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7568), - }, - [3303] = { - [anon_sym_esac] = ACTIONS(7566), - [sym__special_characters] = ACTIONS(7572), - [anon_sym_DQUOTE] = ACTIONS(7570), - [anon_sym_DOLLAR] = ACTIONS(7572), - [sym_raw_string] = ACTIONS(7570), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7570), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7570), - [anon_sym_BQUOTE] = ACTIONS(7570), - [anon_sym_LT_LPAREN] = ACTIONS(7570), - [anon_sym_GT_LPAREN] = ACTIONS(7570), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7568), - }, - [3304] = { - [anon_sym_esac] = ACTIONS(7574), - [anon_sym_PIPE] = ACTIONS(6669), - [anon_sym_SEMI_SEMI] = ACTIONS(7576), - [anon_sym_PIPE_AMP] = ACTIONS(6669), - [anon_sym_AMP_AMP] = ACTIONS(6673), - [anon_sym_PIPE_PIPE] = ACTIONS(6673), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6675), - [anon_sym_LF] = ACTIONS(6675), - [anon_sym_AMP] = ACTIONS(6675), - }, - [3305] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_esac] = ACTIONS(7574), - [anon_sym_PIPE] = ACTIONS(6669), - [anon_sym_SEMI_SEMI] = ACTIONS(7576), - [anon_sym_PIPE_AMP] = ACTIONS(6669), - [anon_sym_AMP_AMP] = ACTIONS(6673), - [anon_sym_PIPE_PIPE] = ACTIONS(6673), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(6675), - [anon_sym_LF] = ACTIONS(6675), - [anon_sym_AMP] = ACTIONS(6675), - }, - [3306] = { - [sym__terminated_statement] = STATE(2659), - [sym_for_statement] = STATE(3788), - [sym_while_statement] = STATE(3788), - [sym_if_statement] = STATE(3788), - [sym_case_statement] = STATE(3788), - [sym_function_definition] = STATE(3788), - [sym_subshell] = STATE(3788), - [sym_pipeline] = STATE(3788), - [sym_list] = STATE(3788), - [sym_command] = STATE(3788), - [sym_command_name] = STATE(2661), - [sym_bracket_command] = STATE(3788), - [sym_variable_assignment] = STATE(3789), - [sym_declaration_command] = STATE(3788), - [sym_unset_command] = STATE(3788), - [sym_subscript] = STATE(2663), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2664), - [sym_string] = STATE(2653), - [sym_simple_expansion] = STATE(2653), - [sym_string_expansion] = STATE(2653), - [sym_expansion] = STATE(2653), - [sym_command_substitution] = STATE(2653), - [sym_process_substitution] = STATE(2653), - [aux_sym_program_repeat1] = STATE(3299), - [aux_sym_command_repeat1] = STATE(2666), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5537), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5539), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(7566), - [anon_sym_SEMI_SEMI] = ACTIONS(7578), - [anon_sym_function] = ACTIONS(5545), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5547), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), - [anon_sym_declare] = ACTIONS(5551), - [anon_sym_typeset] = ACTIONS(5551), - [anon_sym_export] = ACTIONS(5551), - [anon_sym_readonly] = ACTIONS(5551), - [anon_sym_local] = ACTIONS(5551), - [anon_sym_unset] = ACTIONS(5553), - [anon_sym_unsetenv] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(5555), - [anon_sym_DQUOTE] = ACTIONS(5557), - [anon_sym_DOLLAR] = ACTIONS(5559), - [sym_raw_string] = ACTIONS(5561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), - [anon_sym_BQUOTE] = ACTIONS(5567), - [anon_sym_LT_LPAREN] = ACTIONS(5569), - [anon_sym_GT_LPAREN] = ACTIONS(5569), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5571), - }, - [3307] = { - [sym__concat] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(3293), - [anon_sym_RPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(56), - }, - [3308] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7580), - [sym_comment] = ACTIONS(56), - }, - [3309] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7582), - [sym_comment] = ACTIONS(56), - }, - [3310] = { - [anon_sym_RBRACE] = ACTIONS(7582), - [sym_comment] = ACTIONS(56), - }, - [3311] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3793), - [anon_sym_RBRACE] = ACTIONS(7584), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3312] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3357), - [anon_sym_RPAREN] = ACTIONS(3357), - [sym_comment] = ACTIONS(56), - }, - [3313] = { - [sym_concatenation] = STATE(3796), - [sym_string] = STATE(3795), - [sym_simple_expansion] = STATE(3795), - [sym_string_expansion] = STATE(3795), - [sym_expansion] = STATE(3795), - [sym_command_substitution] = STATE(3795), - [sym_process_substitution] = STATE(3795), - [anon_sym_RBRACE] = ACTIONS(7582), - [sym__special_characters] = ACTIONS(7586), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(7588), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7590), - }, - [3314] = { - [sym__concat] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_RPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(56), - }, - [3315] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7592), - }, - [3316] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7594), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3317] = { - [sym__concat] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(3410), - [anon_sym_RPAREN] = ACTIONS(3410), - [sym_comment] = ACTIONS(56), - }, - [3318] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7596), - }, - [3319] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7598), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3320] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7600), - }, - [3321] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7582), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3322] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3803), - [anon_sym_RBRACE] = ACTIONS(7602), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3323] = { - [sym__concat] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(3422), - [anon_sym_RPAREN] = ACTIONS(3422), - [sym_comment] = ACTIONS(56), - }, - [3324] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3805), - [anon_sym_RBRACE] = ACTIONS(7604), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3325] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(3807), - [sym_while_statement] = STATE(3807), - [sym_if_statement] = STATE(3807), - [sym_case_statement] = STATE(3807), - [sym_function_definition] = STATE(3807), - [sym_subshell] = STATE(3807), - [sym_pipeline] = STATE(3807), - [sym_list] = STATE(3807), - [sym_command] = STATE(3807), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(3807), - [sym_variable_assignment] = STATE(3808), - [sym_declaration_command] = STATE(3807), - [sym_unset_command] = STATE(3807), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(3809), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(7606), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [3326] = { - [aux_sym_case_item_repeat1] = STATE(2668), - [anon_sym_PIPE] = ACTIONS(4332), - [anon_sym_RPAREN] = ACTIONS(7608), - [sym_comment] = ACTIONS(56), - }, - [3327] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(3812), - [sym_while_statement] = STATE(3812), - [sym_if_statement] = STATE(3812), - [sym_case_statement] = STATE(3812), - [sym_function_definition] = STATE(3812), - [sym_subshell] = STATE(3812), - [sym_pipeline] = STATE(3812), - [sym_list] = STATE(3812), - [sym_command] = STATE(3812), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(3812), - [sym_variable_assignment] = STATE(3813), - [sym_declaration_command] = STATE(3812), - [sym_unset_command] = STATE(3812), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(3814), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(7610), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [3328] = { - [aux_sym_case_item_repeat1] = STATE(2668), - [anon_sym_PIPE] = ACTIONS(4332), - [anon_sym_RPAREN] = ACTIONS(7612), - [sym_comment] = ACTIONS(56), - }, - [3329] = { - [anon_sym_esac] = ACTIONS(7614), - [anon_sym_PIPE] = ACTIONS(7614), - [anon_sym_RPAREN] = ACTIONS(7614), - [anon_sym_SEMI_SEMI] = ACTIONS(7614), - [anon_sym_PIPE_AMP] = ACTIONS(7614), - [anon_sym_AMP_AMP] = ACTIONS(7614), - [anon_sym_PIPE_PIPE] = ACTIONS(7614), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7614), - [anon_sym_LF] = ACTIONS(7614), - [anon_sym_AMP] = ACTIONS(7614), - }, - [3330] = { - [anon_sym_esac] = ACTIONS(7616), - [anon_sym_PIPE] = ACTIONS(7616), - [anon_sym_RPAREN] = ACTIONS(7616), - [anon_sym_SEMI_SEMI] = ACTIONS(7616), - [anon_sym_PIPE_AMP] = ACTIONS(7616), - [anon_sym_AMP_AMP] = ACTIONS(7616), - [anon_sym_PIPE_PIPE] = ACTIONS(7616), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7616), - [anon_sym_LF] = ACTIONS(7616), - [anon_sym_AMP] = ACTIONS(7616), - }, - [3331] = { - [sym__concat] = ACTIONS(7032), - [anon_sym_in] = ACTIONS(7034), - [anon_sym_SEMI_SEMI] = ACTIONS(7034), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7034), - [anon_sym_LF] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - }, - [3332] = { - [sym__concat] = ACTIONS(7036), - [anon_sym_in] = ACTIONS(7038), - [anon_sym_SEMI_SEMI] = ACTIONS(7038), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7038), - [anon_sym_LF] = ACTIONS(7038), - [anon_sym_AMP] = ACTIONS(7038), - }, - [3333] = { - [sym__concat] = ACTIONS(7040), - [anon_sym_in] = ACTIONS(7042), - [anon_sym_SEMI_SEMI] = ACTIONS(7042), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7042), - [anon_sym_LF] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - }, - [3334] = { - [sym__concat] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_SEMI_SEMI] = ACTIONS(3295), - [anon_sym_PIPE_AMP] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - }, - [3335] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7618), - [sym_comment] = ACTIONS(56), - }, - [3336] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7620), - [sym_comment] = ACTIONS(56), - }, - [3337] = { - [anon_sym_RBRACE] = ACTIONS(7620), - [sym_comment] = ACTIONS(56), - }, - [3338] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3819), - [anon_sym_RBRACE] = ACTIONS(7622), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3339] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_PIPE_AMP] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - }, - [3340] = { - [sym_concatenation] = STATE(3822), - [sym_string] = STATE(3821), - [sym_simple_expansion] = STATE(3821), - [sym_string_expansion] = STATE(3821), - [sym_expansion] = STATE(3821), - [sym_command_substitution] = STATE(3821), - [sym_process_substitution] = STATE(3821), - [anon_sym_RBRACE] = ACTIONS(7620), - [sym__special_characters] = ACTIONS(7624), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(7626), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7628), - }, - [3341] = { - [sym__concat] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_SEMI_SEMI] = ACTIONS(3404), - [anon_sym_PIPE_AMP] = ACTIONS(3404), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3404), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - }, - [3342] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7630), - }, - [3343] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7632), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3344] = { - [sym__concat] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - }, - [3345] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7634), - }, - [3346] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7636), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3347] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7638), - }, - [3348] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7620), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3349] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3829), - [anon_sym_RBRACE] = ACTIONS(7640), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3350] = { - [sym__concat] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_SEMI_SEMI] = ACTIONS(3424), - [anon_sym_PIPE_AMP] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_PIPE_PIPE] = ACTIONS(3424), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - }, - [3351] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3831), - [anon_sym_RBRACE] = ACTIONS(7642), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3352] = { - [sym_file_descriptor] = ACTIONS(4802), - [sym__concat] = ACTIONS(4802), - [sym_variable_name] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_RPAREN] = ACTIONS(4804), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [anon_sym_PIPE_AMP] = ACTIONS(4804), - [anon_sym_AMP_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4804), - [anon_sym_LT] = ACTIONS(4804), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_GT_GT] = ACTIONS(4804), - [anon_sym_AMP_GT] = ACTIONS(4804), - [anon_sym_AMP_GT_GT] = ACTIONS(4804), - [anon_sym_LT_AMP] = ACTIONS(4804), - [anon_sym_GT_AMP] = ACTIONS(4804), - [sym__special_characters] = ACTIONS(4804), - [anon_sym_DQUOTE] = ACTIONS(4804), - [anon_sym_DOLLAR] = ACTIONS(4804), - [sym_raw_string] = ACTIONS(4804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), - [anon_sym_BQUOTE] = ACTIONS(4804), - [anon_sym_LT_LPAREN] = ACTIONS(4804), - [anon_sym_GT_LPAREN] = ACTIONS(4804), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4804), - [anon_sym_SEMI] = ACTIONS(4804), - [anon_sym_LF] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4804), - }, - [3353] = { - [sym_file_descriptor] = ACTIONS(4808), - [sym__concat] = ACTIONS(4808), - [sym_variable_name] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_RPAREN] = ACTIONS(4810), - [anon_sym_SEMI_SEMI] = ACTIONS(4810), - [anon_sym_PIPE_AMP] = ACTIONS(4810), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [anon_sym_LT] = ACTIONS(4810), - [anon_sym_GT] = ACTIONS(4810), - [anon_sym_GT_GT] = ACTIONS(4810), - [anon_sym_AMP_GT] = ACTIONS(4810), - [anon_sym_AMP_GT_GT] = ACTIONS(4810), - [anon_sym_LT_AMP] = ACTIONS(4810), - [anon_sym_GT_AMP] = ACTIONS(4810), - [sym__special_characters] = ACTIONS(4810), - [anon_sym_DQUOTE] = ACTIONS(4810), - [anon_sym_DOLLAR] = ACTIONS(4810), - [sym_raw_string] = ACTIONS(4810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), - [anon_sym_BQUOTE] = ACTIONS(4810), - [anon_sym_LT_LPAREN] = ACTIONS(4810), - [anon_sym_GT_LPAREN] = ACTIONS(4810), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4810), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LF] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4810), - }, - [3354] = { - [sym_file_descriptor] = ACTIONS(4871), - [sym__concat] = ACTIONS(4871), - [sym_variable_name] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_RPAREN] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_GT_GT] = ACTIONS(4873), - [anon_sym_AMP_GT] = ACTIONS(4873), - [anon_sym_AMP_GT_GT] = ACTIONS(4873), - [anon_sym_LT_AMP] = ACTIONS(4873), - [anon_sym_GT_AMP] = ACTIONS(4873), - [sym__special_characters] = ACTIONS(4873), - [anon_sym_DQUOTE] = ACTIONS(4873), - [anon_sym_DOLLAR] = ACTIONS(4873), - [sym_raw_string] = ACTIONS(4873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), - [anon_sym_BQUOTE] = ACTIONS(4873), - [anon_sym_LT_LPAREN] = ACTIONS(4873), - [anon_sym_GT_LPAREN] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [3355] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7644), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3356] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7646), - [sym_comment] = ACTIONS(56), - }, - [3357] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7648), - [sym_comment] = ACTIONS(56), - }, - [3358] = { - [anon_sym_RBRACE] = ACTIONS(7648), - [sym_comment] = ACTIONS(56), - }, - [3359] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3836), - [anon_sym_RBRACE] = ACTIONS(7650), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3360] = { - [sym_file_descriptor] = ACTIONS(4883), - [sym__concat] = ACTIONS(4883), - [sym_variable_name] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(4885), - [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(4885), - [anon_sym_GT] = ACTIONS(4885), - [anon_sym_GT_GT] = ACTIONS(4885), - [anon_sym_AMP_GT] = ACTIONS(4885), - [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(4885), - [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(182), - [sym_word] = ACTIONS(4885), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [3361] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3838), - [anon_sym_RBRACE] = ACTIONS(7652), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3362] = { - [sym_file_descriptor] = ACTIONS(4889), - [sym__concat] = ACTIONS(4889), - [sym_variable_name] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_RPAREN] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [anon_sym_LT] = ACTIONS(4891), - [anon_sym_GT] = ACTIONS(4891), - [anon_sym_GT_GT] = ACTIONS(4891), - [anon_sym_AMP_GT] = ACTIONS(4891), - [anon_sym_AMP_GT_GT] = ACTIONS(4891), - [anon_sym_LT_AMP] = ACTIONS(4891), - [anon_sym_GT_AMP] = ACTIONS(4891), - [sym__special_characters] = ACTIONS(4891), - [anon_sym_DQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR] = ACTIONS(4891), - [sym_raw_string] = ACTIONS(4891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), - [anon_sym_BQUOTE] = ACTIONS(4891), - [anon_sym_LT_LPAREN] = ACTIONS(4891), - [anon_sym_GT_LPAREN] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4891), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [3363] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3840), - [anon_sym_RBRACE] = ACTIONS(7654), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3364] = { - [sym_file_descriptor] = ACTIONS(4895), - [sym__concat] = ACTIONS(4895), - [sym_variable_name] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_RPAREN] = ACTIONS(4897), - [anon_sym_SEMI_SEMI] = ACTIONS(4897), - [anon_sym_PIPE_AMP] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [anon_sym_LT] = ACTIONS(4897), - [anon_sym_GT] = ACTIONS(4897), - [anon_sym_GT_GT] = ACTIONS(4897), - [anon_sym_AMP_GT] = ACTIONS(4897), - [anon_sym_AMP_GT_GT] = ACTIONS(4897), - [anon_sym_LT_AMP] = ACTIONS(4897), - [anon_sym_GT_AMP] = ACTIONS(4897), - [sym__special_characters] = ACTIONS(4897), - [anon_sym_DQUOTE] = ACTIONS(4897), - [anon_sym_DOLLAR] = ACTIONS(4897), - [sym_raw_string] = ACTIONS(4897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), - [anon_sym_BQUOTE] = ACTIONS(4897), - [anon_sym_LT_LPAREN] = ACTIONS(4897), - [anon_sym_GT_LPAREN] = ACTIONS(4897), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4897), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LF] = ACTIONS(4897), - [anon_sym_AMP] = ACTIONS(4897), - }, - [3365] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7656), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3366] = { - [sym_file_descriptor] = ACTIONS(4901), - [sym__concat] = ACTIONS(4901), - [sym_variable_name] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(4903), - [anon_sym_RPAREN] = ACTIONS(4903), - [anon_sym_SEMI_SEMI] = ACTIONS(4903), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [anon_sym_LT] = ACTIONS(4903), - [anon_sym_GT] = ACTIONS(4903), - [anon_sym_GT_GT] = ACTIONS(4903), - [anon_sym_AMP_GT] = ACTIONS(4903), - [anon_sym_AMP_GT_GT] = ACTIONS(4903), - [anon_sym_LT_AMP] = ACTIONS(4903), - [anon_sym_GT_AMP] = ACTIONS(4903), - [sym__special_characters] = ACTIONS(4903), - [anon_sym_DQUOTE] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4903), - [sym_raw_string] = ACTIONS(4903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), - [anon_sym_BQUOTE] = ACTIONS(4903), - [anon_sym_LT_LPAREN] = ACTIONS(4903), - [anon_sym_GT_LPAREN] = ACTIONS(4903), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4903), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LF] = ACTIONS(4903), - [anon_sym_AMP] = ACTIONS(4903), - }, - [3367] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7658), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3368] = { - [sym__concat] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [3369] = { - [aux_sym_concatenation_repeat1] = STATE(3369), - [sym__concat] = ACTIONS(7660), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [3370] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_RPAREN] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1929), - [anon_sym_PIPE_AMP] = ACTIONS(1929), - [anon_sym_AMP_AMP] = ACTIONS(1929), - [anon_sym_PIPE_PIPE] = ACTIONS(1929), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - }, - [3371] = { - [sym_concatenation] = STATE(3846), - [sym_string] = STATE(3845), - [sym_simple_expansion] = STATE(3845), - [sym_string_expansion] = STATE(3845), - [sym_expansion] = STATE(3845), - [sym_command_substitution] = STATE(3845), - [sym_process_substitution] = STATE(3845), - [anon_sym_RBRACE] = ACTIONS(7663), - [sym__special_characters] = ACTIONS(7665), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(7667), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7669), - }, - [3372] = { - [sym__concat] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(1974), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_LF] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - }, - [3373] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7671), - }, - [3374] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7673), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3375] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(7675), - [sym_comment] = ACTIONS(56), - }, - [3376] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3852), - [anon_sym_RBRACE] = ACTIONS(7677), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(7679), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3377] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3855), - [anon_sym_RBRACE] = ACTIONS(7681), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(7683), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3378] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3857), - [anon_sym_RBRACE] = ACTIONS(7663), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(7685), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3379] = { - [sym__concat] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_RPAREN] = ACTIONS(2028), - [anon_sym_SEMI_SEMI] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(2028), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - }, - [3380] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7687), - }, - [3381] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7689), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3382] = { - [sym__concat] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_RPAREN] = ACTIONS(2036), - [anon_sym_SEMI_SEMI] = ACTIONS(2036), - [anon_sym_PIPE_AMP] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2036), + [aux_sym_SLASH] = ACTIONS(5688), + [anon_sym_COLON] = ACTIONS(5684), + [anon_sym_COLON_QMARK] = ACTIONS(5684), + [anon_sym_COLON_DASH] = ACTIONS(5684), + [anon_sym_PERCENT] = ACTIONS(5684), + [anon_sym_DASH] = ACTIONS(5684), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2302] = { + [sym_subscript] = STATE(2470), + [sym_variable_name] = ACTIONS(5690), + [anon_sym_DOLLAR] = ACTIONS(5692), + [anon_sym_DASH] = ACTIONS(5692), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5694), + [anon_sym_STAR] = ACTIONS(5692), + [anon_sym_AT] = ACTIONS(5692), + [anon_sym_QMARK] = ACTIONS(5692), + [anon_sym_0] = ACTIONS(5696), + [anon_sym__] = ACTIONS(5696), + }, + [2303] = { + [sym_concatenation] = STATE(2473), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2473), + [anon_sym_RBRACE] = ACTIONS(5698), + [anon_sym_EQ] = ACTIONS(5700), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(5704), + [anon_sym_COLON] = ACTIONS(5700), + [anon_sym_COLON_QMARK] = ACTIONS(5700), + [anon_sym_COLON_DASH] = ACTIONS(5700), + [anon_sym_PERCENT] = ACTIONS(5700), + [anon_sym_DASH] = ACTIONS(5700), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2304] = { + [sym_concatenation] = STATE(2476), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2476), + [anon_sym_RBRACE] = ACTIONS(5706), + [anon_sym_EQ] = ACTIONS(5708), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(5712), + [anon_sym_COLON] = ACTIONS(5708), + [anon_sym_COLON_QMARK] = ACTIONS(5708), + [anon_sym_COLON_DASH] = ACTIONS(5708), + [anon_sym_PERCENT] = ACTIONS(5708), + [anon_sym_DASH] = ACTIONS(5708), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2305] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(5714), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [2306] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(5714), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [2307] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(5714), + [sym_comment] = ACTIONS(54), + }, + [2308] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(5714), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [2309] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(5716), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [2310] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(5716), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [2311] = { + [sym_variable_assignment] = STATE(2311), + [sym_subscript] = STATE(2094), + [sym_concatenation] = STATE(2311), + [sym_string] = STATE(2088), + [sym_simple_expansion] = STATE(2088), + [sym_string_expansion] = STATE(2088), + [sym_expansion] = STATE(2088), + [sym_command_substitution] = STATE(2088), + [sym_process_substitution] = STATE(2088), + [aux_sym_declaration_command_repeat1] = STATE(2311), + [sym_variable_name] = ACTIONS(5718), + [anon_sym_esac] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_SEMI_SEMI] = ACTIONS(1480), + [anon_sym_PIPE_AMP] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1480), + [anon_sym_PIPE_PIPE] = ACTIONS(1480), + [sym__special_characters] = ACTIONS(5721), + [anon_sym_DQUOTE] = ACTIONS(5724), + [anon_sym_DOLLAR] = ACTIONS(5727), + [sym_raw_string] = ACTIONS(5730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5736), + [anon_sym_BQUOTE] = ACTIONS(5739), + [anon_sym_LT_LPAREN] = ACTIONS(5742), + [anon_sym_GT_LPAREN] = ACTIONS(5742), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5745), + [sym_word] = ACTIONS(5730), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_LF] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1480), + }, + [2312] = { + [sym_string] = STATE(2479), + [sym_simple_expansion] = STATE(2479), + [sym_string_expansion] = STATE(2479), + [sym_expansion] = STATE(2479), + [sym_command_substitution] = STATE(2479), + [sym_process_substitution] = STATE(2479), + [sym__special_characters] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(5410), + [anon_sym_DOLLAR] = ACTIONS(4965), + [sym_raw_string] = ACTIONS(5748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5752), + [anon_sym_BQUOTE] = ACTIONS(5754), + [anon_sym_LT_LPAREN] = ACTIONS(5756), + [anon_sym_GT_LPAREN] = ACTIONS(5756), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5748), + }, + [2313] = { + [aux_sym_concatenation_repeat1] = STATE(2480), + [sym__concat] = ACTIONS(5406), + [anon_sym_esac] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [sym__special_characters] = ACTIONS(690), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(690), + [anon_sym_BQUOTE] = ACTIONS(690), + [anon_sym_LT_LPAREN] = ACTIONS(690), + [anon_sym_GT_LPAREN] = ACTIONS(690), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(690), + [sym_word] = ACTIONS(690), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), + }, + [2314] = { + [sym__concat] = ACTIONS(692), + [anon_sym_esac] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_SEMI_SEMI] = ACTIONS(694), + [anon_sym_PIPE_AMP] = ACTIONS(694), + [anon_sym_AMP_AMP] = ACTIONS(694), + [anon_sym_PIPE_PIPE] = ACTIONS(694), + [sym__special_characters] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(694), + [sym_raw_string] = ACTIONS(694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(694), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LT_LPAREN] = ACTIONS(694), + [anon_sym_GT_LPAREN] = ACTIONS(694), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(694), + [sym_word] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), + }, + [2315] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(5758), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [2316] = { + [sym__concat] = ACTIONS(722), + [anon_sym_esac] = ACTIONS(724), + [anon_sym_PIPE] = ACTIONS(724), + [anon_sym_SEMI_SEMI] = ACTIONS(724), + [anon_sym_PIPE_AMP] = ACTIONS(724), + [anon_sym_AMP_AMP] = ACTIONS(724), + [anon_sym_PIPE_PIPE] = ACTIONS(724), + [sym__special_characters] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(724), + [sym_raw_string] = ACTIONS(724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(724), + [anon_sym_BQUOTE] = ACTIONS(724), + [anon_sym_LT_LPAREN] = ACTIONS(724), + [anon_sym_GT_LPAREN] = ACTIONS(724), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(724), + [sym_word] = ACTIONS(724), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LF] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(724), + }, + [2317] = { + [sym__concat] = ACTIONS(726), + [anon_sym_esac] = ACTIONS(728), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_SEMI_SEMI] = ACTIONS(728), + [anon_sym_PIPE_AMP] = ACTIONS(728), + [anon_sym_AMP_AMP] = ACTIONS(728), + [anon_sym_PIPE_PIPE] = ACTIONS(728), + [sym__special_characters] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(728), + [anon_sym_DOLLAR] = ACTIONS(728), + [sym_raw_string] = ACTIONS(728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(728), + [anon_sym_BQUOTE] = ACTIONS(728), + [anon_sym_LT_LPAREN] = ACTIONS(728), + [anon_sym_GT_LPAREN] = ACTIONS(728), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(728), + [sym_word] = ACTIONS(728), + [anon_sym_SEMI] = ACTIONS(728), + [anon_sym_LF] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(728), + }, + [2318] = { + [sym__concat] = ACTIONS(730), + [anon_sym_esac] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(732), + [anon_sym_SEMI_SEMI] = ACTIONS(732), + [anon_sym_PIPE_AMP] = ACTIONS(732), + [anon_sym_AMP_AMP] = ACTIONS(732), + [anon_sym_PIPE_PIPE] = ACTIONS(732), + [sym__special_characters] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_DOLLAR] = ACTIONS(732), + [sym_raw_string] = ACTIONS(732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(732), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(732), + [anon_sym_BQUOTE] = ACTIONS(732), + [anon_sym_LT_LPAREN] = ACTIONS(732), + [anon_sym_GT_LPAREN] = ACTIONS(732), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(732), + [sym_word] = ACTIONS(732), + [anon_sym_SEMI] = ACTIONS(732), + [anon_sym_LF] = ACTIONS(730), + [anon_sym_AMP] = ACTIONS(732), + }, + [2319] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(5760), + [sym_comment] = ACTIONS(54), + }, + [2320] = { + [sym_concatenation] = STATE(2485), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2485), + [anon_sym_RBRACE] = ACTIONS(5762), + [anon_sym_EQ] = ACTIONS(5764), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(5768), + [anon_sym_COLON] = ACTIONS(5764), + [anon_sym_COLON_QMARK] = ACTIONS(5764), + [anon_sym_COLON_DASH] = ACTIONS(5764), + [anon_sym_PERCENT] = ACTIONS(5764), + [anon_sym_DASH] = ACTIONS(5764), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2321] = { + [sym_subscript] = STATE(2489), + [sym_variable_name] = ACTIONS(5770), + [anon_sym_DOLLAR] = ACTIONS(5772), + [anon_sym_DASH] = ACTIONS(5772), + [sym_comment] = ACTIONS(54), + [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), + }, + [2322] = { + [sym_concatenation] = STATE(2492), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2492), + [anon_sym_RBRACE] = ACTIONS(5778), + [anon_sym_EQ] = ACTIONS(5780), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5782), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(5784), + [anon_sym_COLON] = ACTIONS(5780), + [anon_sym_COLON_QMARK] = ACTIONS(5780), + [anon_sym_COLON_DASH] = ACTIONS(5780), + [anon_sym_PERCENT] = ACTIONS(5780), + [anon_sym_DASH] = ACTIONS(5780), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2323] = { + [sym_concatenation] = STATE(2495), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2495), + [anon_sym_RBRACE] = ACTIONS(5786), + [anon_sym_EQ] = ACTIONS(5788), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(5792), + [anon_sym_COLON] = ACTIONS(5788), + [anon_sym_COLON_QMARK] = ACTIONS(5788), + [anon_sym_COLON_DASH] = ACTIONS(5788), + [anon_sym_PERCENT] = ACTIONS(5788), + [anon_sym_DASH] = ACTIONS(5788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2324] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(5794), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [2325] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(5794), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [2326] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(5794), + [sym_comment] = ACTIONS(54), + }, + [2327] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(5794), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [2328] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(5796), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [2329] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(5796), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [2330] = { + [sym_concatenation] = STATE(2330), + [sym_string] = STATE(2099), + [sym_simple_expansion] = STATE(2099), + [sym_string_expansion] = STATE(2099), + [sym_expansion] = STATE(2099), + [sym_command_substitution] = STATE(2099), + [sym_process_substitution] = STATE(2099), + [aux_sym_unset_command_repeat1] = STATE(2330), + [anon_sym_esac] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_SEMI_SEMI] = ACTIONS(1561), + [anon_sym_PIPE_AMP] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE_PIPE] = ACTIONS(1561), + [sym__special_characters] = ACTIONS(5798), + [anon_sym_DQUOTE] = ACTIONS(5801), + [anon_sym_DOLLAR] = ACTIONS(5804), + [sym_raw_string] = ACTIONS(5807), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5813), + [anon_sym_BQUOTE] = ACTIONS(5816), + [anon_sym_LT_LPAREN] = ACTIONS(5819), + [anon_sym_GT_LPAREN] = ACTIONS(5819), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5822), + [sym_word] = ACTIONS(5807), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_LF] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(1561), + }, + [2331] = { + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(1634), + [anon_sym_esac] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_EQ_TILDE] = ACTIONS(1636), + [anon_sym_EQ_EQ] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1636), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1636), + [anon_sym_LT_AMP] = ACTIONS(1636), + [anon_sym_GT_AMP] = ACTIONS(1636), + [anon_sym_LT_LT] = ACTIONS(1636), + [anon_sym_LT_LT_DASH] = ACTIONS(1636), + [anon_sym_LT_LT_LT] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [2332] = { + [aux_sym_concatenation_repeat1] = STATE(2332), + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(5825), + [anon_sym_esac] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_EQ_TILDE] = ACTIONS(1636), + [anon_sym_EQ_EQ] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1636), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1636), + [anon_sym_LT_AMP] = ACTIONS(1636), + [anon_sym_GT_AMP] = ACTIONS(1636), + [anon_sym_LT_LT] = ACTIONS(1636), + [anon_sym_LT_LT_DASH] = ACTIONS(1636), + [anon_sym_LT_LT_LT] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [2333] = { + [sym_file_descriptor] = ACTIONS(1683), + [sym__concat] = ACTIONS(1683), + [anon_sym_esac] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [anon_sym_EQ_TILDE] = ACTIONS(1685), + [anon_sym_EQ_EQ] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1685), + [anon_sym_AMP_GT] = ACTIONS(1685), + [anon_sym_AMP_GT_GT] = ACTIONS(1685), + [anon_sym_LT_AMP] = ACTIONS(1685), + [anon_sym_GT_AMP] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1685), + [anon_sym_LT_LT_DASH] = ACTIONS(1685), + [anon_sym_LT_LT_LT] = ACTIONS(1685), + [sym__special_characters] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_BQUOTE] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + }, + [2334] = { + [sym_concatenation] = STATE(2501), + [sym_string] = STATE(2500), + [sym_simple_expansion] = STATE(2500), + [sym_string_expansion] = STATE(2500), + [sym_expansion] = STATE(2500), + [sym_command_substitution] = STATE(2500), + [sym_process_substitution] = STATE(2500), + [anon_sym_RBRACE] = ACTIONS(5828), + [sym__special_characters] = ACTIONS(5830), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(5832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5832), + }, + [2335] = { + [sym_file_descriptor] = ACTIONS(1724), + [sym__concat] = ACTIONS(1724), + [anon_sym_esac] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_EQ_TILDE] = ACTIONS(1726), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1726), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1726), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1726), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1726), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LF] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1726), + }, + [2336] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(5834), + }, + [2337] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5836), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2338] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(5838), + [sym_comment] = ACTIONS(54), + }, + [2339] = { + [sym_concatenation] = STATE(2507), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2507), + [anon_sym_RBRACE] = ACTIONS(5840), + [anon_sym_EQ] = ACTIONS(5842), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5844), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(5846), + [anon_sym_COLON] = ACTIONS(5842), + [anon_sym_COLON_QMARK] = ACTIONS(5842), + [anon_sym_COLON_DASH] = ACTIONS(5842), + [anon_sym_PERCENT] = ACTIONS(5842), + [anon_sym_DASH] = ACTIONS(5842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2340] = { + [sym_concatenation] = STATE(2510), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2510), + [anon_sym_RBRACE] = ACTIONS(5848), + [anon_sym_EQ] = ACTIONS(5850), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(5854), + [anon_sym_COLON] = ACTIONS(5850), + [anon_sym_COLON_QMARK] = ACTIONS(5850), + [anon_sym_COLON_DASH] = ACTIONS(5850), + [anon_sym_PERCENT] = ACTIONS(5850), + [anon_sym_DASH] = ACTIONS(5850), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2341] = { + [sym_concatenation] = STATE(2512), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2512), + [anon_sym_RBRACE] = ACTIONS(5828), + [anon_sym_EQ] = ACTIONS(5856), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(5860), + [anon_sym_COLON] = ACTIONS(5856), + [anon_sym_COLON_QMARK] = ACTIONS(5856), + [anon_sym_COLON_DASH] = ACTIONS(5856), + [anon_sym_PERCENT] = ACTIONS(5856), + [anon_sym_DASH] = ACTIONS(5856), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2342] = { + [sym_file_descriptor] = ACTIONS(1790), + [sym__concat] = ACTIONS(1790), + [anon_sym_esac] = ACTIONS(1792), + [anon_sym_PIPE] = ACTIONS(1792), + [anon_sym_SEMI_SEMI] = ACTIONS(1792), + [anon_sym_PIPE_AMP] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_EQ_TILDE] = ACTIONS(1792), + [anon_sym_EQ_EQ] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1792), + [anon_sym_GT] = ACTIONS(1792), + [anon_sym_GT_GT] = ACTIONS(1792), + [anon_sym_AMP_GT] = ACTIONS(1792), + [anon_sym_AMP_GT_GT] = ACTIONS(1792), + [anon_sym_LT_AMP] = ACTIONS(1792), + [anon_sym_GT_AMP] = ACTIONS(1792), + [anon_sym_LT_LT] = ACTIONS(1792), + [anon_sym_LT_LT_DASH] = ACTIONS(1792), + [anon_sym_LT_LT_LT] = ACTIONS(1792), + [sym__special_characters] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1792), + [anon_sym_DOLLAR] = ACTIONS(1792), + [sym_raw_string] = ACTIONS(1792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1792), + [anon_sym_LT_LPAREN] = ACTIONS(1792), + [anon_sym_GT_LPAREN] = ACTIONS(1792), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1792), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_LF] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1792), + }, + [2343] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(5862), + }, + [2344] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5864), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2345] = { + [sym_file_descriptor] = ACTIONS(1798), + [sym__concat] = ACTIONS(1798), + [anon_sym_esac] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_SEMI_SEMI] = ACTIONS(1800), + [anon_sym_PIPE_AMP] = ACTIONS(1800), + [anon_sym_AMP_AMP] = ACTIONS(1800), + [anon_sym_PIPE_PIPE] = ACTIONS(1800), + [anon_sym_EQ_TILDE] = ACTIONS(1800), + [anon_sym_EQ_EQ] = ACTIONS(1800), + [anon_sym_LT] = ACTIONS(1800), + [anon_sym_GT] = ACTIONS(1800), + [anon_sym_GT_GT] = ACTIONS(1800), + [anon_sym_AMP_GT] = ACTIONS(1800), + [anon_sym_AMP_GT_GT] = ACTIONS(1800), + [anon_sym_LT_AMP] = ACTIONS(1800), + [anon_sym_GT_AMP] = ACTIONS(1800), + [anon_sym_LT_LT] = ACTIONS(1800), + [anon_sym_LT_LT_DASH] = ACTIONS(1800), + [anon_sym_LT_LT_LT] = ACTIONS(1800), + [sym__special_characters] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1800), + [sym_raw_string] = ACTIONS(1800), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1800), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1800), + [anon_sym_BQUOTE] = ACTIONS(1800), + [anon_sym_LT_LPAREN] = ACTIONS(1800), + [anon_sym_GT_LPAREN] = ACTIONS(1800), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_LF] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1800), + }, + [2346] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(5866), + }, + [2347] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5828), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2348] = { + [sym_file_descriptor] = ACTIONS(1936), + [sym__concat] = ACTIONS(1936), + [anon_sym_esac] = ACTIONS(1938), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_SEMI_SEMI] = ACTIONS(1938), + [anon_sym_PIPE_AMP] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_PIPE_PIPE] = ACTIONS(1938), + [anon_sym_EQ_TILDE] = ACTIONS(1938), + [anon_sym_EQ_EQ] = ACTIONS(1938), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1938), + [anon_sym_GT_GT] = ACTIONS(1938), + [anon_sym_AMP_GT] = ACTIONS(1938), + [anon_sym_AMP_GT_GT] = ACTIONS(1938), + [anon_sym_LT_AMP] = ACTIONS(1938), + [anon_sym_GT_AMP] = ACTIONS(1938), + [anon_sym_LT_LT] = ACTIONS(1938), + [anon_sym_LT_LT_DASH] = ACTIONS(1938), + [anon_sym_LT_LT_LT] = ACTIONS(1938), + [sym__special_characters] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_DOLLAR] = ACTIONS(1938), + [sym_raw_string] = ACTIONS(1938), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1938), + [anon_sym_BQUOTE] = ACTIONS(1938), + [anon_sym_LT_LPAREN] = ACTIONS(1938), + [anon_sym_GT_LPAREN] = ACTIONS(1938), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1938), + }, + [2349] = { + [sym_file_descriptor] = ACTIONS(2000), + [sym__concat] = ACTIONS(2000), + [anon_sym_esac] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [anon_sym_EQ_TILDE] = ACTIONS(2002), + [anon_sym_EQ_EQ] = ACTIONS(2002), + [anon_sym_LT] = ACTIONS(2002), + [anon_sym_GT] = ACTIONS(2002), + [anon_sym_GT_GT] = ACTIONS(2002), + [anon_sym_AMP_GT] = ACTIONS(2002), + [anon_sym_AMP_GT_GT] = ACTIONS(2002), + [anon_sym_LT_AMP] = ACTIONS(2002), + [anon_sym_GT_AMP] = ACTIONS(2002), + [anon_sym_LT_LT] = ACTIONS(2002), + [anon_sym_LT_LT_DASH] = ACTIONS(2002), + [anon_sym_LT_LT_LT] = ACTIONS(2002), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2002), + [anon_sym_BQUOTE] = ACTIONS(2002), + [anon_sym_LT_LPAREN] = ACTIONS(2002), + [anon_sym_GT_LPAREN] = ACTIONS(2002), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2002), + }, + [2350] = { + [sym_compound_statement] = STATE(2516), + [anon_sym_LBRACE] = ACTIONS(442), + [sym_comment] = ACTIONS(54), + }, + [2351] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_esac] = ACTIONS(2004), + [anon_sym_PIPE] = ACTIONS(2004), + [anon_sym_SEMI_SEMI] = ACTIONS(2004), + [anon_sym_PIPE_AMP] = ACTIONS(2004), + [anon_sym_AMP_AMP] = ACTIONS(2004), + [anon_sym_PIPE_PIPE] = ACTIONS(2004), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(2004), + [anon_sym_LF] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2004), + }, + [2352] = { + [anon_sym_esac] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_SEMI_SEMI] = ACTIONS(2008), + [anon_sym_PIPE_AMP] = ACTIONS(5003), + [anon_sym_AMP_AMP] = ACTIONS(2008), + [anon_sym_PIPE_PIPE] = ACTIONS(2008), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_LF] = ACTIONS(2010), + [anon_sym_AMP] = ACTIONS(2008), + }, + [2353] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_esac] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_SEMI_SEMI] = ACTIONS(2008), + [anon_sym_PIPE_AMP] = ACTIONS(5003), + [anon_sym_AMP_AMP] = ACTIONS(2008), + [anon_sym_PIPE_PIPE] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_LF] = ACTIONS(2010), + [anon_sym_AMP] = ACTIONS(2008), + }, + [2354] = { + [sym_concatenation] = STATE(950), + [sym_string] = STATE(2518), + [sym_simple_expansion] = STATE(2518), + [sym_string_expansion] = STATE(2518), + [sym_expansion] = STATE(2518), + [sym_command_substitution] = STATE(2518), + [sym_process_substitution] = STATE(2518), + [sym__special_characters] = ACTIONS(5868), + [anon_sym_DQUOTE] = ACTIONS(5492), + [anon_sym_DOLLAR] = ACTIONS(5494), + [sym_raw_string] = ACTIONS(5870), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5498), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5500), + [anon_sym_BQUOTE] = ACTIONS(5502), + [anon_sym_LT_LPAREN] = ACTIONS(5504), + [anon_sym_GT_LPAREN] = ACTIONS(5504), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5870), + }, + [2355] = { + [aux_sym_concatenation_repeat1] = STATE(2107), + [sym_file_descriptor] = ACTIONS(1265), + [sym__concat] = ACTIONS(4979), + [anon_sym_esac] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_SEMI_SEMI] = ACTIONS(1263), + [anon_sym_PIPE_AMP] = ACTIONS(1263), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1263), + [anon_sym_EQ_TILDE] = ACTIONS(1263), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_GT] = ACTIONS(1263), + [anon_sym_AMP_GT] = ACTIONS(1263), + [anon_sym_AMP_GT_GT] = ACTIONS(1263), + [anon_sym_LT_AMP] = ACTIONS(1263), + [anon_sym_GT_AMP] = ACTIONS(1263), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_LT_LT_DASH] = ACTIONS(1263), + [anon_sym_LT_LT_LT] = ACTIONS(1263), + [sym__special_characters] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1263), + [sym_raw_string] = ACTIONS(1263), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [anon_sym_LT_LPAREN] = ACTIONS(1263), + [anon_sym_GT_LPAREN] = ACTIONS(1263), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_LF] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1263), + }, + [2356] = { + [aux_sym_concatenation_repeat1] = STATE(2107), + [sym_file_descriptor] = ACTIONS(1269), + [sym__concat] = ACTIONS(4979), + [anon_sym_esac] = ACTIONS(1267), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_SEMI_SEMI] = ACTIONS(1267), + [anon_sym_PIPE_AMP] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_EQ_TILDE] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_AMP_GT] = ACTIONS(1267), + [anon_sym_AMP_GT_GT] = ACTIONS(1267), + [anon_sym_LT_AMP] = ACTIONS(1267), + [anon_sym_GT_AMP] = ACTIONS(1267), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_LT_LT_DASH] = ACTIONS(1267), + [anon_sym_LT_LT_LT] = ACTIONS(1267), + [sym__special_characters] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1267), + [sym_raw_string] = ACTIONS(1267), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1267), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1267), + [anon_sym_BQUOTE] = ACTIONS(1267), + [anon_sym_LT_LPAREN] = ACTIONS(1267), + [anon_sym_GT_LPAREN] = ACTIONS(1267), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_LF] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1267), + }, + [2357] = { + [sym_file_descriptor] = ACTIONS(1269), + [anon_sym_esac] = ACTIONS(1267), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_SEMI_SEMI] = ACTIONS(1267), + [anon_sym_PIPE_AMP] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_EQ_TILDE] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_AMP_GT] = ACTIONS(1267), + [anon_sym_AMP_GT_GT] = ACTIONS(1267), + [anon_sym_LT_AMP] = ACTIONS(1267), + [anon_sym_GT_AMP] = ACTIONS(1267), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_LT_LT_DASH] = ACTIONS(1267), + [anon_sym_LT_LT_LT] = ACTIONS(1267), + [sym__special_characters] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1267), + [sym_raw_string] = ACTIONS(1267), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1267), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1267), + [anon_sym_BQUOTE] = ACTIONS(1267), + [anon_sym_LT_LPAREN] = ACTIONS(1267), + [anon_sym_GT_LPAREN] = ACTIONS(1267), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_LF] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1267), + }, + [2358] = { + [aux_sym_concatenation_repeat1] = STATE(2520), + [sym_file_descriptor] = ACTIONS(656), + [sym__concat] = ACTIONS(5872), + [anon_sym_esac] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(660), + [anon_sym_SEMI_SEMI] = ACTIONS(660), + [anon_sym_PIPE_AMP] = ACTIONS(660), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_LT] = ACTIONS(660), + [anon_sym_GT] = ACTIONS(660), + [anon_sym_GT_GT] = ACTIONS(660), + [anon_sym_AMP_GT] = ACTIONS(660), + [anon_sym_AMP_GT_GT] = ACTIONS(660), + [anon_sym_LT_AMP] = ACTIONS(660), + [anon_sym_GT_AMP] = ACTIONS(660), + [anon_sym_LT_LT] = ACTIONS(660), + [anon_sym_LT_LT_DASH] = ACTIONS(660), + [anon_sym_LT_LT_LT] = ACTIONS(660), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(660), + [anon_sym_LF] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(660), + }, + [2359] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(2522), + [anon_sym_DQUOTE] = ACTIONS(5874), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [2360] = { + [sym_string] = STATE(2524), + [anon_sym_DQUOTE] = ACTIONS(5492), + [anon_sym_DOLLAR] = ACTIONS(5876), + [sym_raw_string] = ACTIONS(5878), + [anon_sym_POUND] = ACTIONS(5876), + [anon_sym_DASH] = ACTIONS(5876), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5880), + [anon_sym_STAR] = ACTIONS(5876), + [anon_sym_AT] = ACTIONS(5876), + [anon_sym_QMARK] = ACTIONS(5876), + [anon_sym_0] = ACTIONS(5882), + [anon_sym__] = ACTIONS(5882), + }, + [2361] = { + [aux_sym_concatenation_repeat1] = STATE(2520), + [sym_file_descriptor] = ACTIONS(672), + [sym__concat] = ACTIONS(5872), + [anon_sym_esac] = ACTIONS(674), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_SEMI_SEMI] = ACTIONS(674), + [anon_sym_PIPE_AMP] = ACTIONS(674), + [anon_sym_AMP_AMP] = ACTIONS(674), + [anon_sym_PIPE_PIPE] = ACTIONS(674), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(674), + [anon_sym_AMP_GT] = ACTIONS(674), + [anon_sym_AMP_GT_GT] = ACTIONS(674), + [anon_sym_LT_AMP] = ACTIONS(674), + [anon_sym_GT_AMP] = ACTIONS(674), + [anon_sym_LT_LT] = ACTIONS(674), + [anon_sym_LT_LT_DASH] = ACTIONS(674), + [anon_sym_LT_LT_LT] = ACTIONS(674), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(674), + [anon_sym_LF] = ACTIONS(672), + [anon_sym_AMP] = ACTIONS(674), + }, + [2362] = { + [sym_subscript] = STATE(2530), + [sym_variable_name] = ACTIONS(5884), + [anon_sym_DOLLAR] = ACTIONS(5886), + [anon_sym_POUND] = ACTIONS(5888), + [anon_sym_DASH] = ACTIONS(5886), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5890), + [anon_sym_STAR] = ACTIONS(5886), + [anon_sym_AT] = ACTIONS(5886), + [anon_sym_QMARK] = ACTIONS(5886), + [anon_sym_0] = ACTIONS(5892), + [anon_sym__] = ACTIONS(5892), + }, + [2363] = { + [sym_for_statement] = STATE(2531), + [sym_while_statement] = STATE(2531), + [sym_if_statement] = STATE(2531), + [sym_case_statement] = STATE(2531), + [sym_function_definition] = STATE(2531), + [sym_subshell] = STATE(2531), + [sym_pipeline] = STATE(2531), + [sym_list] = STATE(2531), + [sym_command] = STATE(2531), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(2531), + [sym_variable_assignment] = STATE(2532), + [sym_declaration_command] = STATE(2531), + [sym_unset_command] = STATE(2531), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [2364] = { + [sym_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_command] = STATE(2533), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(2533), + [sym_variable_assignment] = STATE(2534), + [sym_declaration_command] = STATE(2533), + [sym_unset_command] = STATE(2533), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), + }, + [2365] = { + [sym_for_statement] = STATE(2535), + [sym_while_statement] = STATE(2535), + [sym_if_statement] = STATE(2535), + [sym_case_statement] = STATE(2535), + [sym_function_definition] = STATE(2535), + [sym_subshell] = STATE(2535), + [sym_pipeline] = STATE(2535), + [sym_list] = STATE(2535), + [sym_command] = STATE(2535), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(2535), + [sym_variable_assignment] = STATE(2536), + [sym_declaration_command] = STATE(2535), + [sym_unset_command] = STATE(2535), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [2366] = { + [aux_sym_concatenation_repeat1] = STATE(2520), + [sym_file_descriptor] = ACTIONS(2032), + [sym__concat] = ACTIONS(5872), + [anon_sym_esac] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(2034), + [anon_sym_SEMI_SEMI] = ACTIONS(2034), + [anon_sym_PIPE_AMP] = ACTIONS(2034), + [anon_sym_AMP_AMP] = ACTIONS(2034), + [anon_sym_PIPE_PIPE] = ACTIONS(2034), + [anon_sym_LT] = ACTIONS(2034), + [anon_sym_GT] = ACTIONS(2034), + [anon_sym_GT_GT] = ACTIONS(2034), + [anon_sym_AMP_GT] = ACTIONS(2034), + [anon_sym_AMP_GT_GT] = ACTIONS(2034), + [anon_sym_LT_AMP] = ACTIONS(2034), + [anon_sym_GT_AMP] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(2034), + [anon_sym_LT_LT_DASH] = ACTIONS(2034), + [anon_sym_LT_LT_LT] = ACTIONS(2034), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_LF] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2034), + }, + [2367] = { + [aux_sym_concatenation_repeat1] = STATE(2520), + [sym_file_descriptor] = ACTIONS(2036), + [sym__concat] = ACTIONS(5872), + [anon_sym_esac] = ACTIONS(2038), + [anon_sym_PIPE] = ACTIONS(2038), + [anon_sym_SEMI_SEMI] = ACTIONS(2038), + [anon_sym_PIPE_AMP] = ACTIONS(2038), + [anon_sym_AMP_AMP] = ACTIONS(2038), + [anon_sym_PIPE_PIPE] = ACTIONS(2038), + [anon_sym_LT] = ACTIONS(2038), + [anon_sym_GT] = ACTIONS(2038), + [anon_sym_GT_GT] = ACTIONS(2038), + [anon_sym_AMP_GT] = ACTIONS(2038), + [anon_sym_AMP_GT_GT] = ACTIONS(2038), + [anon_sym_LT_AMP] = ACTIONS(2038), + [anon_sym_GT_AMP] = ACTIONS(2038), + [anon_sym_LT_LT] = ACTIONS(2038), + [anon_sym_LT_LT_DASH] = ACTIONS(2038), + [anon_sym_LT_LT_LT] = ACTIONS(2038), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2038), [anon_sym_LF] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - }, - [3383] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7691), - }, - [3384] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7663), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3385] = { - [sym__concat] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_SEMI_SEMI] = ACTIONS(2198), - [anon_sym_PIPE_AMP] = ACTIONS(2198), - [anon_sym_AMP_AMP] = ACTIONS(2198), - [anon_sym_PIPE_PIPE] = ACTIONS(2198), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - }, - [3386] = { - [sym__concat] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_RPAREN] = ACTIONS(2404), - [anon_sym_SEMI_SEMI] = ACTIONS(2404), - [anon_sym_PIPE_AMP] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LF] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - }, - [3387] = { - [sym__concat] = ACTIONS(6041), - [sym_variable_name] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_RPAREN] = ACTIONS(6043), - [anon_sym_SEMI_SEMI] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6043), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6043), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6043), - [sym_word] = ACTIONS(6043), - [anon_sym_SEMI] = ACTIONS(6043), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - }, - [3388] = { - [sym__concat] = ACTIONS(6045), - [sym_variable_name] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_RPAREN] = ACTIONS(6047), - [anon_sym_SEMI_SEMI] = ACTIONS(6047), - [anon_sym_PIPE_AMP] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6047), - [anon_sym_PIPE_PIPE] = ACTIONS(6047), - [sym__special_characters] = ACTIONS(6047), - [anon_sym_DQUOTE] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6047), - [sym_raw_string] = ACTIONS(6047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), - [anon_sym_BQUOTE] = ACTIONS(6047), - [anon_sym_LT_LPAREN] = ACTIONS(6047), - [anon_sym_GT_LPAREN] = ACTIONS(6047), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6047), - [sym_word] = ACTIONS(6047), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - }, - [3389] = { - [sym__concat] = ACTIONS(6049), - [sym_variable_name] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [sym__special_characters] = ACTIONS(6051), - [anon_sym_DQUOTE] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6051), - [sym_raw_string] = ACTIONS(6051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), - [anon_sym_BQUOTE] = ACTIONS(6051), - [anon_sym_LT_LPAREN] = ACTIONS(6051), - [anon_sym_GT_LPAREN] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6051), - [sym_word] = ACTIONS(6051), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [3390] = { - [sym__concat] = ACTIONS(6053), - [sym_variable_name] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6055), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6055), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6055), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6055), - [sym_word] = ACTIONS(6055), - [anon_sym_SEMI] = ACTIONS(6055), - [anon_sym_LF] = ACTIONS(6055), - [anon_sym_AMP] = ACTIONS(6055), - }, - [3391] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7693), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3392] = { - [sym__concat] = ACTIONS(6059), - [sym_variable_name] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_RPAREN] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [sym__special_characters] = ACTIONS(6061), - [anon_sym_DQUOTE] = ACTIONS(6061), - [anon_sym_DOLLAR] = ACTIONS(6061), - [sym_raw_string] = ACTIONS(6061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), - [anon_sym_BQUOTE] = ACTIONS(6061), - [anon_sym_LT_LPAREN] = ACTIONS(6061), - [anon_sym_GT_LPAREN] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6061), - [sym_word] = ACTIONS(6061), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [3393] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7695), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3394] = { - [sym__concat] = ACTIONS(6065), - [sym_variable_name] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6067), - [anon_sym_RPAREN] = ACTIONS(6067), - [anon_sym_SEMI_SEMI] = ACTIONS(6067), - [anon_sym_PIPE_AMP] = ACTIONS(6067), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [sym__special_characters] = ACTIONS(6067), - [anon_sym_DQUOTE] = ACTIONS(6067), - [anon_sym_DOLLAR] = ACTIONS(6067), - [sym_raw_string] = ACTIONS(6067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), - [anon_sym_BQUOTE] = ACTIONS(6067), - [anon_sym_LT_LPAREN] = ACTIONS(6067), - [anon_sym_GT_LPAREN] = ACTIONS(6067), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6067), - [sym_word] = ACTIONS(6067), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LF] = ACTIONS(6067), - [anon_sym_AMP] = ACTIONS(6067), - }, - [3395] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7697), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3396] = { - [sym__concat] = ACTIONS(6071), - [sym_variable_name] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_RPAREN] = ACTIONS(6073), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [anon_sym_PIPE_AMP] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6073), - [anon_sym_PIPE_PIPE] = ACTIONS(6073), - [sym__special_characters] = ACTIONS(6073), - [anon_sym_DQUOTE] = ACTIONS(6073), - [anon_sym_DOLLAR] = ACTIONS(6073), - [sym_raw_string] = ACTIONS(6073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), - [anon_sym_BQUOTE] = ACTIONS(6073), - [anon_sym_LT_LPAREN] = ACTIONS(6073), - [anon_sym_GT_LPAREN] = ACTIONS(6073), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6073), - [sym_word] = ACTIONS(6073), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LF] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - }, - [3397] = { - [sym__concat] = ACTIONS(6075), - [sym_variable_name] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_RPAREN] = ACTIONS(6077), - [anon_sym_SEMI_SEMI] = ACTIONS(6077), - [anon_sym_PIPE_AMP] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6077), - [anon_sym_PIPE_PIPE] = ACTIONS(6077), - [sym__special_characters] = ACTIONS(6077), - [anon_sym_DQUOTE] = ACTIONS(6077), - [anon_sym_DOLLAR] = ACTIONS(6077), - [sym_raw_string] = ACTIONS(6077), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), - [anon_sym_BQUOTE] = ACTIONS(6077), - [anon_sym_LT_LPAREN] = ACTIONS(6077), - [anon_sym_GT_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6077), - [sym_word] = ACTIONS(6077), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LF] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - }, - [3398] = { - [sym__concat] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_RPAREN] = ACTIONS(6043), - [anon_sym_SEMI_SEMI] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6043), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6043), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6043), - [sym_word] = ACTIONS(6043), - [anon_sym_SEMI] = ACTIONS(6043), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - }, - [3399] = { - [sym__concat] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_RPAREN] = ACTIONS(6047), - [anon_sym_SEMI_SEMI] = ACTIONS(6047), - [anon_sym_PIPE_AMP] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6047), - [anon_sym_PIPE_PIPE] = ACTIONS(6047), - [sym__special_characters] = ACTIONS(6047), - [anon_sym_DQUOTE] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6047), - [sym_raw_string] = ACTIONS(6047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), - [anon_sym_BQUOTE] = ACTIONS(6047), - [anon_sym_LT_LPAREN] = ACTIONS(6047), - [anon_sym_GT_LPAREN] = ACTIONS(6047), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6047), - [sym_word] = ACTIONS(6047), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - }, - [3400] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [sym__special_characters] = ACTIONS(6051), - [anon_sym_DQUOTE] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6051), - [sym_raw_string] = ACTIONS(6051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), - [anon_sym_BQUOTE] = ACTIONS(6051), - [anon_sym_LT_LPAREN] = ACTIONS(6051), - [anon_sym_GT_LPAREN] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6051), - [sym_word] = ACTIONS(6051), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [3401] = { - [sym__concat] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6055), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6055), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6055), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6055), - [sym_word] = ACTIONS(6055), - [anon_sym_SEMI] = ACTIONS(6055), - [anon_sym_LF] = ACTIONS(6055), - [anon_sym_AMP] = ACTIONS(6055), - }, - [3402] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7699), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3403] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_RPAREN] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [sym__special_characters] = ACTIONS(6061), - [anon_sym_DQUOTE] = ACTIONS(6061), - [anon_sym_DOLLAR] = ACTIONS(6061), - [sym_raw_string] = ACTIONS(6061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), - [anon_sym_BQUOTE] = ACTIONS(6061), - [anon_sym_LT_LPAREN] = ACTIONS(6061), - [anon_sym_GT_LPAREN] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6061), - [sym_word] = ACTIONS(6061), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [3404] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7701), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3405] = { - [sym__concat] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6067), - [anon_sym_RPAREN] = ACTIONS(6067), - [anon_sym_SEMI_SEMI] = ACTIONS(6067), - [anon_sym_PIPE_AMP] = ACTIONS(6067), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [sym__special_characters] = ACTIONS(6067), - [anon_sym_DQUOTE] = ACTIONS(6067), - [anon_sym_DOLLAR] = ACTIONS(6067), - [sym_raw_string] = ACTIONS(6067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), - [anon_sym_BQUOTE] = ACTIONS(6067), - [anon_sym_LT_LPAREN] = ACTIONS(6067), - [anon_sym_GT_LPAREN] = ACTIONS(6067), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6067), - [sym_word] = ACTIONS(6067), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LF] = ACTIONS(6067), - [anon_sym_AMP] = ACTIONS(6067), - }, - [3406] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7703), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3407] = { - [sym__concat] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_RPAREN] = ACTIONS(6073), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [anon_sym_PIPE_AMP] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6073), - [anon_sym_PIPE_PIPE] = ACTIONS(6073), - [sym__special_characters] = ACTIONS(6073), - [anon_sym_DQUOTE] = ACTIONS(6073), - [anon_sym_DOLLAR] = ACTIONS(6073), - [sym_raw_string] = ACTIONS(6073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), - [anon_sym_BQUOTE] = ACTIONS(6073), - [anon_sym_LT_LPAREN] = ACTIONS(6073), - [anon_sym_GT_LPAREN] = ACTIONS(6073), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6073), - [sym_word] = ACTIONS(6073), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LF] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - }, - [3408] = { - [sym__concat] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_RPAREN] = ACTIONS(6077), - [anon_sym_SEMI_SEMI] = ACTIONS(6077), - [anon_sym_PIPE_AMP] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6077), - [anon_sym_PIPE_PIPE] = ACTIONS(6077), - [sym__special_characters] = ACTIONS(6077), - [anon_sym_DQUOTE] = ACTIONS(6077), - [anon_sym_DOLLAR] = ACTIONS(6077), - [sym_raw_string] = ACTIONS(6077), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), - [anon_sym_BQUOTE] = ACTIONS(6077), - [anon_sym_LT_LPAREN] = ACTIONS(6077), - [anon_sym_GT_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6077), - [sym_word] = ACTIONS(6077), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LF] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - }, - [3409] = { - [sym_file_descriptor] = ACTIONS(7032), - [sym__concat] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7034), - [anon_sym_RPAREN] = ACTIONS(7034), - [anon_sym_SEMI_SEMI] = ACTIONS(7034), - [anon_sym_PIPE_AMP] = ACTIONS(7034), - [anon_sym_AMP_AMP] = ACTIONS(7034), - [anon_sym_PIPE_PIPE] = ACTIONS(7034), - [anon_sym_EQ_TILDE] = ACTIONS(7034), - [anon_sym_EQ_EQ] = ACTIONS(7034), - [anon_sym_LT] = ACTIONS(7034), - [anon_sym_GT] = ACTIONS(7034), - [anon_sym_GT_GT] = ACTIONS(7034), - [anon_sym_AMP_GT] = ACTIONS(7034), - [anon_sym_AMP_GT_GT] = ACTIONS(7034), - [anon_sym_LT_AMP] = ACTIONS(7034), - [anon_sym_GT_AMP] = ACTIONS(7034), - [anon_sym_LT_LT] = ACTIONS(7034), - [anon_sym_LT_LT_DASH] = ACTIONS(7034), - [anon_sym_LT_LT_LT] = ACTIONS(7034), - [sym__special_characters] = ACTIONS(7034), - [anon_sym_DQUOTE] = ACTIONS(7034), - [anon_sym_DOLLAR] = ACTIONS(7034), - [sym_raw_string] = ACTIONS(7034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), - [anon_sym_BQUOTE] = ACTIONS(7034), - [anon_sym_LT_LPAREN] = ACTIONS(7034), - [anon_sym_GT_LPAREN] = ACTIONS(7034), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7034), - [anon_sym_SEMI] = ACTIONS(7034), - [anon_sym_LF] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - }, - [3410] = { - [sym_file_descriptor] = ACTIONS(7036), - [sym__concat] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7038), - [anon_sym_RPAREN] = ACTIONS(7038), - [anon_sym_SEMI_SEMI] = ACTIONS(7038), - [anon_sym_PIPE_AMP] = ACTIONS(7038), - [anon_sym_AMP_AMP] = ACTIONS(7038), - [anon_sym_PIPE_PIPE] = ACTIONS(7038), - [anon_sym_EQ_TILDE] = ACTIONS(7038), - [anon_sym_EQ_EQ] = ACTIONS(7038), - [anon_sym_LT] = ACTIONS(7038), - [anon_sym_GT] = ACTIONS(7038), - [anon_sym_GT_GT] = ACTIONS(7038), - [anon_sym_AMP_GT] = ACTIONS(7038), - [anon_sym_AMP_GT_GT] = ACTIONS(7038), - [anon_sym_LT_AMP] = ACTIONS(7038), - [anon_sym_GT_AMP] = ACTIONS(7038), - [anon_sym_LT_LT] = ACTIONS(7038), - [anon_sym_LT_LT_DASH] = ACTIONS(7038), - [anon_sym_LT_LT_LT] = ACTIONS(7038), - [sym__special_characters] = ACTIONS(7038), - [anon_sym_DQUOTE] = ACTIONS(7038), - [anon_sym_DOLLAR] = ACTIONS(7038), - [sym_raw_string] = ACTIONS(7038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), - [anon_sym_BQUOTE] = ACTIONS(7038), - [anon_sym_LT_LPAREN] = ACTIONS(7038), - [anon_sym_GT_LPAREN] = ACTIONS(7038), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7038), - [anon_sym_SEMI] = ACTIONS(7038), - [anon_sym_LF] = ACTIONS(7038), - [anon_sym_AMP] = ACTIONS(7038), - }, - [3411] = { - [sym_file_descriptor] = ACTIONS(7040), - [sym__concat] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_RPAREN] = ACTIONS(7042), - [anon_sym_SEMI_SEMI] = ACTIONS(7042), - [anon_sym_PIPE_AMP] = ACTIONS(7042), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7042), - [anon_sym_EQ_TILDE] = ACTIONS(7042), - [anon_sym_EQ_EQ] = ACTIONS(7042), - [anon_sym_LT] = ACTIONS(7042), - [anon_sym_GT] = ACTIONS(7042), - [anon_sym_GT_GT] = ACTIONS(7042), - [anon_sym_AMP_GT] = ACTIONS(7042), - [anon_sym_AMP_GT_GT] = ACTIONS(7042), - [anon_sym_LT_AMP] = ACTIONS(7042), - [anon_sym_GT_AMP] = ACTIONS(7042), - [anon_sym_LT_LT] = ACTIONS(7042), - [anon_sym_LT_LT_DASH] = ACTIONS(7042), - [anon_sym_LT_LT_LT] = ACTIONS(7042), - [sym__special_characters] = ACTIONS(7042), - [anon_sym_DQUOTE] = ACTIONS(7042), - [anon_sym_DOLLAR] = ACTIONS(7042), - [sym_raw_string] = ACTIONS(7042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), - [anon_sym_BQUOTE] = ACTIONS(7042), - [anon_sym_LT_LPAREN] = ACTIONS(7042), - [anon_sym_GT_LPAREN] = ACTIONS(7042), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7042), - [anon_sym_SEMI] = ACTIONS(7042), - [anon_sym_LF] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - }, - [3412] = { - [sym_file_descriptor] = ACTIONS(4802), - [sym__concat] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_RPAREN] = ACTIONS(4804), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [anon_sym_PIPE_AMP] = ACTIONS(4804), - [anon_sym_AMP_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4804), - [anon_sym_LT] = ACTIONS(4804), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_GT_GT] = ACTIONS(4804), - [anon_sym_AMP_GT] = ACTIONS(4804), - [anon_sym_AMP_GT_GT] = ACTIONS(4804), - [anon_sym_LT_AMP] = ACTIONS(4804), - [anon_sym_GT_AMP] = ACTIONS(4804), - [anon_sym_LT_LT] = ACTIONS(4804), - [anon_sym_LT_LT_DASH] = ACTIONS(4804), - [anon_sym_LT_LT_LT] = ACTIONS(4804), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4804), - [anon_sym_LF] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4804), - }, - [3413] = { - [sym_file_descriptor] = ACTIONS(4808), - [sym__concat] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_RPAREN] = ACTIONS(4810), - [anon_sym_SEMI_SEMI] = ACTIONS(4810), - [anon_sym_PIPE_AMP] = ACTIONS(4810), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [anon_sym_LT] = ACTIONS(4810), - [anon_sym_GT] = ACTIONS(4810), - [anon_sym_GT_GT] = ACTIONS(4810), - [anon_sym_AMP_GT] = ACTIONS(4810), - [anon_sym_AMP_GT_GT] = ACTIONS(4810), - [anon_sym_LT_AMP] = ACTIONS(4810), - [anon_sym_GT_AMP] = ACTIONS(4810), - [anon_sym_LT_LT] = ACTIONS(4810), - [anon_sym_LT_LT_DASH] = ACTIONS(4810), - [anon_sym_LT_LT_LT] = ACTIONS(4810), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LF] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4810), - }, - [3414] = { - [sym_file_descriptor] = ACTIONS(4871), - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_RPAREN] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_GT_GT] = ACTIONS(4873), - [anon_sym_AMP_GT] = ACTIONS(4873), - [anon_sym_AMP_GT_GT] = ACTIONS(4873), - [anon_sym_LT_AMP] = ACTIONS(4873), - [anon_sym_GT_AMP] = ACTIONS(4873), - [anon_sym_LT_LT] = ACTIONS(4873), - [anon_sym_LT_LT_DASH] = ACTIONS(4873), - [anon_sym_LT_LT_LT] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [3415] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7705), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3416] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7707), - [sym_comment] = ACTIONS(56), - }, - [3417] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7709), - [sym_comment] = ACTIONS(56), - }, - [3418] = { - [anon_sym_RBRACE] = ACTIONS(7709), - [sym_comment] = ACTIONS(56), - }, - [3419] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3871), - [anon_sym_RBRACE] = ACTIONS(7711), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3420] = { - [sym_file_descriptor] = ACTIONS(4883), - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(4885), - [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(4885), - [anon_sym_GT] = ACTIONS(4885), - [anon_sym_GT_GT] = ACTIONS(4885), - [anon_sym_AMP_GT] = ACTIONS(4885), - [anon_sym_AMP_GT_GT] = ACTIONS(4885), - [anon_sym_LT_AMP] = ACTIONS(4885), - [anon_sym_GT_AMP] = ACTIONS(4885), - [anon_sym_LT_LT] = ACTIONS(4885), - [anon_sym_LT_LT_DASH] = ACTIONS(4885), - [anon_sym_LT_LT_LT] = ACTIONS(4885), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [3421] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3873), - [anon_sym_RBRACE] = ACTIONS(7713), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3422] = { - [sym_file_descriptor] = ACTIONS(4889), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_RPAREN] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [anon_sym_LT] = ACTIONS(4891), - [anon_sym_GT] = ACTIONS(4891), - [anon_sym_GT_GT] = ACTIONS(4891), - [anon_sym_AMP_GT] = ACTIONS(4891), - [anon_sym_AMP_GT_GT] = ACTIONS(4891), - [anon_sym_LT_AMP] = ACTIONS(4891), - [anon_sym_GT_AMP] = ACTIONS(4891), - [anon_sym_LT_LT] = ACTIONS(4891), - [anon_sym_LT_LT_DASH] = ACTIONS(4891), - [anon_sym_LT_LT_LT] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [3423] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3875), - [anon_sym_RBRACE] = ACTIONS(7715), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3424] = { - [sym_file_descriptor] = ACTIONS(4895), - [sym__concat] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_RPAREN] = ACTIONS(4897), - [anon_sym_SEMI_SEMI] = ACTIONS(4897), - [anon_sym_PIPE_AMP] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [anon_sym_LT] = ACTIONS(4897), - [anon_sym_GT] = ACTIONS(4897), - [anon_sym_GT_GT] = ACTIONS(4897), - [anon_sym_AMP_GT] = ACTIONS(4897), - [anon_sym_AMP_GT_GT] = ACTIONS(4897), - [anon_sym_LT_AMP] = ACTIONS(4897), - [anon_sym_GT_AMP] = ACTIONS(4897), - [anon_sym_LT_LT] = ACTIONS(4897), - [anon_sym_LT_LT_DASH] = ACTIONS(4897), - [anon_sym_LT_LT_LT] = ACTIONS(4897), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LF] = ACTIONS(4897), - [anon_sym_AMP] = ACTIONS(4897), - }, - [3425] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7717), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3426] = { - [sym_file_descriptor] = ACTIONS(4901), - [sym__concat] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(4903), - [anon_sym_RPAREN] = ACTIONS(4903), - [anon_sym_SEMI_SEMI] = ACTIONS(4903), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [anon_sym_LT] = ACTIONS(4903), - [anon_sym_GT] = ACTIONS(4903), - [anon_sym_GT_GT] = ACTIONS(4903), - [anon_sym_AMP_GT] = ACTIONS(4903), - [anon_sym_AMP_GT_GT] = ACTIONS(4903), - [anon_sym_LT_AMP] = ACTIONS(4903), - [anon_sym_GT_AMP] = ACTIONS(4903), - [anon_sym_LT_LT] = ACTIONS(4903), - [anon_sym_LT_LT_DASH] = ACTIONS(4903), - [anon_sym_LT_LT_LT] = ACTIONS(4903), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LF] = ACTIONS(4903), - [anon_sym_AMP] = ACTIONS(4903), - }, - [3427] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7719), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3428] = { - [sym__concat] = ACTIONS(7032), - [anon_sym_EQ_TILDE] = ACTIONS(7721), - [anon_sym_EQ_EQ] = ACTIONS(7721), - [anon_sym_RBRACK] = ACTIONS(7032), - [sym__special_characters] = ACTIONS(7034), - [anon_sym_DQUOTE] = ACTIONS(7032), - [anon_sym_DOLLAR] = ACTIONS(7721), - [sym_raw_string] = ACTIONS(7032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), - [anon_sym_BQUOTE] = ACTIONS(7032), - [anon_sym_LT_LPAREN] = ACTIONS(7032), - [anon_sym_GT_LPAREN] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7034), - }, - [3429] = { - [sym__concat] = ACTIONS(7036), - [anon_sym_EQ_TILDE] = ACTIONS(7723), - [anon_sym_EQ_EQ] = ACTIONS(7723), - [anon_sym_RBRACK] = ACTIONS(7036), - [sym__special_characters] = ACTIONS(7038), - [anon_sym_DQUOTE] = ACTIONS(7036), - [anon_sym_DOLLAR] = ACTIONS(7723), - [sym_raw_string] = ACTIONS(7036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), - [anon_sym_BQUOTE] = ACTIONS(7036), - [anon_sym_LT_LPAREN] = ACTIONS(7036), - [anon_sym_GT_LPAREN] = ACTIONS(7036), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7038), - }, - [3430] = { - [sym__concat] = ACTIONS(7040), - [anon_sym_EQ_TILDE] = ACTIONS(7725), - [anon_sym_EQ_EQ] = ACTIONS(7725), - [anon_sym_RBRACK] = ACTIONS(7040), - [sym__special_characters] = ACTIONS(7042), - [anon_sym_DQUOTE] = ACTIONS(7040), - [anon_sym_DOLLAR] = ACTIONS(7725), - [sym_raw_string] = ACTIONS(7040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), - [anon_sym_BQUOTE] = ACTIONS(7040), - [anon_sym_LT_LPAREN] = ACTIONS(7040), - [anon_sym_GT_LPAREN] = ACTIONS(7040), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7042), - }, - [3431] = { - [sym__concat] = ACTIONS(7032), - [anon_sym_EQ_TILDE] = ACTIONS(7721), - [anon_sym_EQ_EQ] = ACTIONS(7721), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7032), - [sym__special_characters] = ACTIONS(7034), - [anon_sym_DQUOTE] = ACTIONS(7032), - [anon_sym_DOLLAR] = ACTIONS(7721), - [sym_raw_string] = ACTIONS(7032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), - [anon_sym_BQUOTE] = ACTIONS(7032), - [anon_sym_LT_LPAREN] = ACTIONS(7032), - [anon_sym_GT_LPAREN] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7034), - }, - [3432] = { - [sym__concat] = ACTIONS(7036), - [anon_sym_EQ_TILDE] = ACTIONS(7723), - [anon_sym_EQ_EQ] = ACTIONS(7723), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7036), - [sym__special_characters] = ACTIONS(7038), - [anon_sym_DQUOTE] = ACTIONS(7036), - [anon_sym_DOLLAR] = ACTIONS(7723), - [sym_raw_string] = ACTIONS(7036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), - [anon_sym_BQUOTE] = ACTIONS(7036), - [anon_sym_LT_LPAREN] = ACTIONS(7036), - [anon_sym_GT_LPAREN] = ACTIONS(7036), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7038), - }, - [3433] = { - [sym__concat] = ACTIONS(7040), - [anon_sym_EQ_TILDE] = ACTIONS(7725), - [anon_sym_EQ_EQ] = ACTIONS(7725), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7040), - [sym__special_characters] = ACTIONS(7042), - [anon_sym_DQUOTE] = ACTIONS(7040), - [anon_sym_DOLLAR] = ACTIONS(7725), - [sym_raw_string] = ACTIONS(7040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), - [anon_sym_BQUOTE] = ACTIONS(7040), - [anon_sym_LT_LPAREN] = ACTIONS(7040), - [anon_sym_GT_LPAREN] = ACTIONS(7040), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7042), - }, - [3434] = { - [sym__concat] = ACTIONS(7032), - [sym_variable_name] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7034), - [anon_sym_SEMI_SEMI] = ACTIONS(7034), - [anon_sym_PIPE_AMP] = ACTIONS(7034), - [anon_sym_AMP_AMP] = ACTIONS(7034), - [anon_sym_PIPE_PIPE] = ACTIONS(7034), - [sym__special_characters] = ACTIONS(7034), - [anon_sym_DQUOTE] = ACTIONS(7034), - [anon_sym_DOLLAR] = ACTIONS(7034), - [sym_raw_string] = ACTIONS(7034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), - [anon_sym_BQUOTE] = ACTIONS(7034), - [anon_sym_LT_LPAREN] = ACTIONS(7034), - [anon_sym_GT_LPAREN] = ACTIONS(7034), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7034), - [sym_word] = ACTIONS(7034), - [anon_sym_SEMI] = ACTIONS(7034), - [anon_sym_LF] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - }, - [3435] = { - [sym__concat] = ACTIONS(7036), - [sym_variable_name] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7038), - [anon_sym_SEMI_SEMI] = ACTIONS(7038), - [anon_sym_PIPE_AMP] = ACTIONS(7038), - [anon_sym_AMP_AMP] = ACTIONS(7038), - [anon_sym_PIPE_PIPE] = ACTIONS(7038), - [sym__special_characters] = ACTIONS(7038), - [anon_sym_DQUOTE] = ACTIONS(7038), - [anon_sym_DOLLAR] = ACTIONS(7038), - [sym_raw_string] = ACTIONS(7038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), - [anon_sym_BQUOTE] = ACTIONS(7038), - [anon_sym_LT_LPAREN] = ACTIONS(7038), - [anon_sym_GT_LPAREN] = ACTIONS(7038), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7038), - [sym_word] = ACTIONS(7038), - [anon_sym_SEMI] = ACTIONS(7038), - [anon_sym_LF] = ACTIONS(7038), - [anon_sym_AMP] = ACTIONS(7038), - }, - [3436] = { - [sym__concat] = ACTIONS(7040), - [sym_variable_name] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_SEMI_SEMI] = ACTIONS(7042), - [anon_sym_PIPE_AMP] = ACTIONS(7042), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7042), - [sym__special_characters] = ACTIONS(7042), - [anon_sym_DQUOTE] = ACTIONS(7042), - [anon_sym_DOLLAR] = ACTIONS(7042), - [sym_raw_string] = ACTIONS(7042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), - [anon_sym_BQUOTE] = ACTIONS(7042), - [anon_sym_LT_LPAREN] = ACTIONS(7042), - [anon_sym_GT_LPAREN] = ACTIONS(7042), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7042), - [sym_word] = ACTIONS(7042), - [anon_sym_SEMI] = ACTIONS(7042), - [anon_sym_LF] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - }, - [3437] = { - [sym__concat] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7034), - [anon_sym_SEMI_SEMI] = ACTIONS(7034), - [anon_sym_PIPE_AMP] = ACTIONS(7034), - [anon_sym_AMP_AMP] = ACTIONS(7034), - [anon_sym_PIPE_PIPE] = ACTIONS(7034), - [sym__special_characters] = ACTIONS(7034), - [anon_sym_DQUOTE] = ACTIONS(7034), - [anon_sym_DOLLAR] = ACTIONS(7034), - [sym_raw_string] = ACTIONS(7034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), - [anon_sym_BQUOTE] = ACTIONS(7034), - [anon_sym_LT_LPAREN] = ACTIONS(7034), - [anon_sym_GT_LPAREN] = ACTIONS(7034), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7034), - [sym_word] = ACTIONS(7034), - [anon_sym_SEMI] = ACTIONS(7034), - [anon_sym_LF] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - }, - [3438] = { - [sym__concat] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7038), - [anon_sym_SEMI_SEMI] = ACTIONS(7038), - [anon_sym_PIPE_AMP] = ACTIONS(7038), - [anon_sym_AMP_AMP] = ACTIONS(7038), - [anon_sym_PIPE_PIPE] = ACTIONS(7038), - [sym__special_characters] = ACTIONS(7038), - [anon_sym_DQUOTE] = ACTIONS(7038), - [anon_sym_DOLLAR] = ACTIONS(7038), - [sym_raw_string] = ACTIONS(7038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), - [anon_sym_BQUOTE] = ACTIONS(7038), - [anon_sym_LT_LPAREN] = ACTIONS(7038), - [anon_sym_GT_LPAREN] = ACTIONS(7038), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7038), - [sym_word] = ACTIONS(7038), - [anon_sym_SEMI] = ACTIONS(7038), - [anon_sym_LF] = ACTIONS(7038), - [anon_sym_AMP] = ACTIONS(7038), - }, - [3439] = { - [sym__concat] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_SEMI_SEMI] = ACTIONS(7042), - [anon_sym_PIPE_AMP] = ACTIONS(7042), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7042), - [sym__special_characters] = ACTIONS(7042), - [anon_sym_DQUOTE] = ACTIONS(7042), - [anon_sym_DOLLAR] = ACTIONS(7042), - [sym_raw_string] = ACTIONS(7042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), - [anon_sym_BQUOTE] = ACTIONS(7042), - [anon_sym_LT_LPAREN] = ACTIONS(7042), - [anon_sym_GT_LPAREN] = ACTIONS(7042), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7042), - [sym_word] = ACTIONS(7042), - [anon_sym_SEMI] = ACTIONS(7042), - [anon_sym_LF] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - }, - [3440] = { - [sym_file_descriptor] = ACTIONS(7032), - [sym__concat] = ACTIONS(7032), - [sym_variable_name] = ACTIONS(7032), - [anon_sym_LT] = ACTIONS(7721), - [anon_sym_GT] = ACTIONS(7721), - [anon_sym_GT_GT] = ACTIONS(7032), - [anon_sym_AMP_GT] = ACTIONS(7721), - [anon_sym_AMP_GT_GT] = ACTIONS(7032), - [anon_sym_LT_AMP] = ACTIONS(7032), - [anon_sym_GT_AMP] = ACTIONS(7032), - [sym__special_characters] = ACTIONS(7721), - [anon_sym_DQUOTE] = ACTIONS(7032), - [anon_sym_DOLLAR] = ACTIONS(7721), - [sym_raw_string] = ACTIONS(7032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), - [anon_sym_BQUOTE] = ACTIONS(7032), - [anon_sym_LT_LPAREN] = ACTIONS(7032), - [anon_sym_GT_LPAREN] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7721), - }, - [3441] = { - [sym_file_descriptor] = ACTIONS(7036), - [sym__concat] = ACTIONS(7036), - [sym_variable_name] = ACTIONS(7036), - [anon_sym_LT] = ACTIONS(7723), - [anon_sym_GT] = ACTIONS(7723), - [anon_sym_GT_GT] = ACTIONS(7036), - [anon_sym_AMP_GT] = ACTIONS(7723), - [anon_sym_AMP_GT_GT] = ACTIONS(7036), - [anon_sym_LT_AMP] = ACTIONS(7036), - [anon_sym_GT_AMP] = ACTIONS(7036), - [sym__special_characters] = ACTIONS(7723), - [anon_sym_DQUOTE] = ACTIONS(7036), - [anon_sym_DOLLAR] = ACTIONS(7723), - [sym_raw_string] = ACTIONS(7036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), - [anon_sym_BQUOTE] = ACTIONS(7036), - [anon_sym_LT_LPAREN] = ACTIONS(7036), - [anon_sym_GT_LPAREN] = ACTIONS(7036), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7723), - }, - [3442] = { - [sym_file_descriptor] = ACTIONS(7040), - [sym__concat] = ACTIONS(7040), - [sym_variable_name] = ACTIONS(7040), - [anon_sym_LT] = ACTIONS(7725), - [anon_sym_GT] = ACTIONS(7725), - [anon_sym_GT_GT] = ACTIONS(7040), - [anon_sym_AMP_GT] = ACTIONS(7725), - [anon_sym_AMP_GT_GT] = ACTIONS(7040), - [anon_sym_LT_AMP] = ACTIONS(7040), - [anon_sym_GT_AMP] = ACTIONS(7040), - [sym__special_characters] = ACTIONS(7725), - [anon_sym_DQUOTE] = ACTIONS(7040), - [anon_sym_DOLLAR] = ACTIONS(7725), - [sym_raw_string] = ACTIONS(7040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), - [anon_sym_BQUOTE] = ACTIONS(7040), - [anon_sym_LT_LPAREN] = ACTIONS(7040), - [anon_sym_GT_LPAREN] = ACTIONS(7040), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7725), - }, - [3443] = { - [sym__concat] = ACTIONS(7032), - [anon_sym_DQUOTE] = ACTIONS(7034), - [anon_sym_DOLLAR] = ACTIONS(7034), - [sym__string_content] = ACTIONS(7721), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), - [anon_sym_BQUOTE] = ACTIONS(7034), - [sym_comment] = ACTIONS(182), - }, - [3444] = { - [sym__concat] = ACTIONS(7036), - [anon_sym_DQUOTE] = ACTIONS(7038), - [anon_sym_DOLLAR] = ACTIONS(7038), - [sym__string_content] = ACTIONS(7723), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), - [anon_sym_BQUOTE] = ACTIONS(7038), - [sym_comment] = ACTIONS(182), - }, - [3445] = { - [sym__concat] = ACTIONS(7040), - [anon_sym_DQUOTE] = ACTIONS(7042), - [anon_sym_DOLLAR] = ACTIONS(7042), - [sym__string_content] = ACTIONS(7725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), - [anon_sym_BQUOTE] = ACTIONS(7042), - [sym_comment] = ACTIONS(182), - }, - [3446] = { - [sym__concat] = ACTIONS(4802), - [anon_sym_RBRACE] = ACTIONS(4802), - [sym_comment] = ACTIONS(56), - }, - [3447] = { - [sym__concat] = ACTIONS(4808), - [anon_sym_RBRACE] = ACTIONS(4808), - [sym_comment] = ACTIONS(56), - }, - [3448] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_RBRACE] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - }, - [3449] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7727), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3450] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7729), - [sym_comment] = ACTIONS(56), - }, - [3451] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7731), - [sym_comment] = ACTIONS(56), - }, - [3452] = { - [anon_sym_RBRACE] = ACTIONS(7731), - [sym_comment] = ACTIONS(56), - }, - [3453] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3882), - [anon_sym_RBRACE] = ACTIONS(7733), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3454] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_RBRACE] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - }, - [3455] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3884), - [anon_sym_RBRACE] = ACTIONS(7735), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3456] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_RBRACE] = ACTIONS(4889), - [sym_comment] = ACTIONS(56), - }, - [3457] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3886), - [anon_sym_RBRACE] = ACTIONS(7737), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3458] = { - [sym__concat] = ACTIONS(4895), - [anon_sym_RBRACE] = ACTIONS(4895), - [sym_comment] = ACTIONS(56), - }, - [3459] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7739), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3460] = { - [sym__concat] = ACTIONS(4901), - [anon_sym_RBRACE] = ACTIONS(4901), - [sym_comment] = ACTIONS(56), - }, - [3461] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7741), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3462] = { - [sym__concat] = ACTIONS(6041), - [anon_sym_RBRACE] = ACTIONS(6041), - [anon_sym_EQ] = ACTIONS(6930), - [sym__special_characters] = ACTIONS(6043), - [anon_sym_DQUOTE] = ACTIONS(6041), - [anon_sym_DOLLAR] = ACTIONS(6930), - [sym_raw_string] = ACTIONS(6041), - [anon_sym_POUND] = ACTIONS(6041), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), - [anon_sym_COLON] = ACTIONS(6930), - [anon_sym_COLON_QMARK] = ACTIONS(6930), - [anon_sym_COLON_DASH] = ACTIONS(6930), - [anon_sym_PERCENT] = ACTIONS(6930), - [anon_sym_DASH] = ACTIONS(6930), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), - [anon_sym_BQUOTE] = ACTIONS(6041), - [anon_sym_LT_LPAREN] = ACTIONS(6041), - [anon_sym_GT_LPAREN] = ACTIONS(6041), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6043), - }, - [3463] = { - [sym__concat] = ACTIONS(6045), - [anon_sym_RBRACE] = ACTIONS(6045), - [anon_sym_EQ] = ACTIONS(6932), - [sym__special_characters] = ACTIONS(6047), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6932), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_POUND] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_COLON] = ACTIONS(6932), - [anon_sym_COLON_QMARK] = ACTIONS(6932), - [anon_sym_COLON_DASH] = ACTIONS(6932), - [anon_sym_PERCENT] = ACTIONS(6932), - [anon_sym_DASH] = ACTIONS(6932), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6047), - }, - [3464] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_RBRACE] = ACTIONS(6049), - [anon_sym_EQ] = ACTIONS(6934), - [sym__special_characters] = ACTIONS(6051), - [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6049), - [anon_sym_POUND] = ACTIONS(6049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), - [anon_sym_COLON] = ACTIONS(6934), - [anon_sym_COLON_QMARK] = ACTIONS(6934), - [anon_sym_COLON_DASH] = ACTIONS(6934), - [anon_sym_PERCENT] = ACTIONS(6934), - [anon_sym_DASH] = ACTIONS(6934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), - [anon_sym_BQUOTE] = ACTIONS(6049), - [anon_sym_LT_LPAREN] = ACTIONS(6049), - [anon_sym_GT_LPAREN] = ACTIONS(6049), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6051), - }, - [3465] = { - [sym__concat] = ACTIONS(6053), - [anon_sym_RBRACE] = ACTIONS(6053), - [anon_sym_EQ] = ACTIONS(6936), - [sym__special_characters] = ACTIONS(6055), - [anon_sym_DQUOTE] = ACTIONS(6053), - [anon_sym_DOLLAR] = ACTIONS(6936), - [sym_raw_string] = ACTIONS(6053), - [anon_sym_POUND] = ACTIONS(6053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), - [anon_sym_COLON] = ACTIONS(6936), - [anon_sym_COLON_QMARK] = ACTIONS(6936), - [anon_sym_COLON_DASH] = ACTIONS(6936), - [anon_sym_PERCENT] = ACTIONS(6936), - [anon_sym_DASH] = ACTIONS(6936), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), - [anon_sym_BQUOTE] = ACTIONS(6053), - [anon_sym_LT_LPAREN] = ACTIONS(6053), - [anon_sym_GT_LPAREN] = ACTIONS(6053), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6055), - }, - [3466] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7743), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3467] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_RBRACE] = ACTIONS(6059), - [anon_sym_EQ] = ACTIONS(6940), - [sym__special_characters] = ACTIONS(6061), - [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6940), - [sym_raw_string] = ACTIONS(6059), + [anon_sym_AMP] = ACTIONS(2038), + }, + [2368] = { + [sym_file_redirect] = STATE(2368), + [sym_heredoc_redirect] = STATE(2368), + [sym_herestring_redirect] = STATE(2368), + [aux_sym_while_statement_repeat1] = STATE(2368), + [sym_file_descriptor] = ACTIONS(5894), + [anon_sym_esac] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_SEMI_SEMI] = ACTIONS(2043), + [anon_sym_PIPE_AMP] = ACTIONS(2043), + [anon_sym_AMP_AMP] = ACTIONS(2043), + [anon_sym_PIPE_PIPE] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(5897), + [anon_sym_GT] = ACTIONS(5897), + [anon_sym_GT_GT] = ACTIONS(5897), + [anon_sym_AMP_GT] = ACTIONS(5897), + [anon_sym_AMP_GT_GT] = ACTIONS(5897), + [anon_sym_LT_AMP] = ACTIONS(5897), + [anon_sym_GT_AMP] = ACTIONS(5897), + [anon_sym_LT_LT] = ACTIONS(2048), + [anon_sym_LT_LT_DASH] = ACTIONS(2048), + [anon_sym_LT_LT_LT] = ACTIONS(5900), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2043), + [anon_sym_LF] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2043), + }, + [2369] = { + [sym_file_redirect] = STATE(2368), + [sym_heredoc_redirect] = STATE(2368), + [sym_herestring_redirect] = STATE(2368), + [aux_sym_while_statement_repeat1] = STATE(2368), + [sym_file_descriptor] = ACTIONS(5013), + [anon_sym_esac] = ACTIONS(2056), + [anon_sym_PIPE] = ACTIONS(2056), + [anon_sym_SEMI_SEMI] = ACTIONS(2056), + [anon_sym_PIPE_AMP] = ACTIONS(2056), + [anon_sym_AMP_AMP] = ACTIONS(2056), + [anon_sym_PIPE_PIPE] = ACTIONS(2056), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_GT_GT] = ACTIONS(5017), + [anon_sym_AMP_GT] = ACTIONS(5017), + [anon_sym_AMP_GT_GT] = ACTIONS(5017), + [anon_sym_LT_AMP] = ACTIONS(5017), + [anon_sym_GT_AMP] = ACTIONS(5017), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(5019), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_LF] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2056), + }, + [2370] = { + [sym_concatenation] = STATE(2135), + [sym_string] = STATE(2134), + [sym_simple_expansion] = STATE(2134), + [sym_string_expansion] = STATE(2134), + [sym_expansion] = STATE(2134), + [sym_command_substitution] = STATE(2134), + [sym_process_substitution] = STATE(2134), + [aux_sym_command_repeat2] = STATE(2370), + [sym_file_descriptor] = ACTIONS(1269), + [anon_sym_esac] = ACTIONS(1267), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_SEMI_SEMI] = ACTIONS(1267), + [anon_sym_PIPE_AMP] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_EQ_TILDE] = ACTIONS(5903), + [anon_sym_EQ_EQ] = ACTIONS(5903), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_AMP_GT] = ACTIONS(1267), + [anon_sym_AMP_GT_GT] = ACTIONS(1267), + [anon_sym_LT_AMP] = ACTIONS(1267), + [anon_sym_GT_AMP] = ACTIONS(1267), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_LT_LT_DASH] = ACTIONS(1267), + [anon_sym_LT_LT_LT] = ACTIONS(1267), + [sym__special_characters] = ACTIONS(5906), + [anon_sym_DQUOTE] = ACTIONS(5909), + [anon_sym_DOLLAR] = ACTIONS(5912), + [sym_raw_string] = ACTIONS(5915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5918), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5921), + [anon_sym_BQUOTE] = ACTIONS(5924), + [anon_sym_LT_LPAREN] = ACTIONS(5927), + [anon_sym_GT_LPAREN] = ACTIONS(5927), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5915), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_LF] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1267), + }, + [2371] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_esac] = ACTIONS(5930), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(5932), + [anon_sym_DQUOTE] = ACTIONS(5934), + [anon_sym_DOLLAR] = ACTIONS(5932), + [sym_raw_string] = ACTIONS(5934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5934), + [anon_sym_BQUOTE] = ACTIONS(5934), + [anon_sym_LT_LPAREN] = ACTIONS(5934), + [anon_sym_GT_LPAREN] = ACTIONS(5934), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5932), + }, + [2372] = { + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(5009), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(5009), + [anon_sym_LF] = ACTIONS(5011), + [anon_sym_AMP] = ACTIONS(5009), + }, + [2373] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(5009), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(5009), + [anon_sym_LF] = ACTIONS(5011), + [anon_sym_AMP] = ACTIONS(5009), + }, + [2374] = { + [sym_file_redirect] = STATE(2537), + [sym_heredoc_redirect] = STATE(2537), + [sym_herestring_redirect] = STATE(2537), + [sym_concatenation] = STATE(2135), + [sym_string] = STATE(2134), + [sym_simple_expansion] = STATE(2134), + [sym_string_expansion] = STATE(2134), + [sym_expansion] = STATE(2134), + [sym_command_substitution] = STATE(2134), + [sym_process_substitution] = STATE(2134), + [aux_sym_while_statement_repeat1] = STATE(2537), + [aux_sym_command_repeat2] = STATE(2370), + [sym_file_descriptor] = ACTIONS(5013), + [anon_sym_esac] = ACTIONS(2056), + [anon_sym_PIPE] = ACTIONS(2056), + [anon_sym_SEMI_SEMI] = ACTIONS(2056), + [anon_sym_PIPE_AMP] = ACTIONS(2056), + [anon_sym_AMP_AMP] = ACTIONS(2056), + [anon_sym_PIPE_PIPE] = ACTIONS(2056), + [anon_sym_EQ_TILDE] = ACTIONS(5015), + [anon_sym_EQ_EQ] = ACTIONS(5015), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_GT_GT] = ACTIONS(5017), + [anon_sym_AMP_GT] = ACTIONS(5017), + [anon_sym_AMP_GT_GT] = ACTIONS(5017), + [anon_sym_LT_AMP] = ACTIONS(5017), + [anon_sym_GT_AMP] = ACTIONS(5017), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(5019), + [sym__special_characters] = ACTIONS(5021), + [anon_sym_DQUOTE] = ACTIONS(5023), + [anon_sym_DOLLAR] = ACTIONS(4264), + [sym_raw_string] = ACTIONS(5025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5029), + [anon_sym_BQUOTE] = ACTIONS(5031), + [anon_sym_LT_LPAREN] = ACTIONS(5033), + [anon_sym_GT_LPAREN] = ACTIONS(5033), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5025), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_LF] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2056), + }, + [2375] = { + [anon_sym_esac] = ACTIONS(5930), + [sym__special_characters] = ACTIONS(5934), + [anon_sym_DQUOTE] = ACTIONS(5934), + [anon_sym_DOLLAR] = ACTIONS(5932), + [sym_raw_string] = ACTIONS(5934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5934), + [anon_sym_BQUOTE] = ACTIONS(5934), + [anon_sym_LT_LPAREN] = ACTIONS(5934), + [anon_sym_GT_LPAREN] = ACTIONS(5934), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5932), + }, + [2376] = { + [anon_sym_esac] = ACTIONS(5930), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_SEMI_SEMI] = ACTIONS(5936), + [anon_sym_PIPE_AMP] = ACTIONS(5003), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(5009), + [anon_sym_LF] = ACTIONS(5011), + [anon_sym_AMP] = ACTIONS(5009), + }, + [2377] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_esac] = ACTIONS(5930), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_SEMI_SEMI] = ACTIONS(5936), + [anon_sym_PIPE_AMP] = ACTIONS(5003), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(5009), + [anon_sym_LF] = ACTIONS(5011), + [anon_sym_AMP] = ACTIONS(5009), + }, + [2378] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_esac] = ACTIONS(5938), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(5940), + [anon_sym_DQUOTE] = ACTIONS(5942), + [anon_sym_DOLLAR] = ACTIONS(5940), + [sym_raw_string] = ACTIONS(5942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5942), + [anon_sym_BQUOTE] = ACTIONS(5942), + [anon_sym_LT_LPAREN] = ACTIONS(5942), + [anon_sym_GT_LPAREN] = ACTIONS(5942), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5940), + }, + [2379] = { + [anon_sym_esac] = ACTIONS(5938), + [sym__special_characters] = ACTIONS(5942), + [anon_sym_DQUOTE] = ACTIONS(5942), + [anon_sym_DOLLAR] = ACTIONS(5940), + [sym_raw_string] = ACTIONS(5942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5942), + [anon_sym_BQUOTE] = ACTIONS(5942), + [anon_sym_LT_LPAREN] = ACTIONS(5942), + [anon_sym_GT_LPAREN] = ACTIONS(5942), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5940), + }, + [2380] = { + [anon_sym_esac] = ACTIONS(5938), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_SEMI_SEMI] = ACTIONS(5944), + [anon_sym_PIPE_AMP] = ACTIONS(5003), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(5009), + [anon_sym_LF] = ACTIONS(5011), + [anon_sym_AMP] = ACTIONS(5009), + }, + [2381] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_esac] = ACTIONS(5938), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_SEMI_SEMI] = ACTIONS(5944), + [anon_sym_PIPE_AMP] = ACTIONS(5003), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(5009), + [anon_sym_LF] = ACTIONS(5011), + [anon_sym_AMP] = ACTIONS(5009), + }, + [2382] = { + [sym__special_characters] = ACTIONS(4935), + [anon_sym_DQUOTE] = ACTIONS(4935), + [anon_sym_DOLLAR] = ACTIONS(4937), + [sym_raw_string] = ACTIONS(4935), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4935), + [anon_sym_BQUOTE] = ACTIONS(4935), + [anon_sym_LT_LPAREN] = ACTIONS(4935), + [anon_sym_GT_LPAREN] = ACTIONS(4935), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(4935), + }, + [2383] = { + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(5946), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LF] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(316), + }, + [2384] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(5946), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LF] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(316), + }, + [2385] = { + [sym__terminated_statement] = STATE(2544), + [sym_for_statement] = STATE(2542), + [sym_while_statement] = STATE(2542), + [sym_if_statement] = STATE(2542), + [sym_case_statement] = STATE(2542), + [sym_function_definition] = STATE(2542), + [sym_subshell] = STATE(2542), + [sym_pipeline] = STATE(2542), + [sym_list] = STATE(2542), + [sym_command] = STATE(2542), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(2542), + [sym_variable_assignment] = STATE(2543), + [sym_declaration_command] = STATE(2542), + [sym_unset_command] = STATE(2542), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(2544), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_SEMI_SEMI] = ACTIONS(5948), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [2386] = { + [sym__terminated_statement] = STATE(2545), + [sym_for_statement] = STATE(2542), + [sym_while_statement] = STATE(2542), + [sym_if_statement] = STATE(2542), + [sym_case_statement] = STATE(2542), + [sym_function_definition] = STATE(2542), + [sym_subshell] = STATE(2542), + [sym_pipeline] = STATE(2542), + [sym_list] = STATE(2542), + [sym_command] = STATE(2542), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(2542), + [sym_variable_assignment] = STATE(2543), + [sym_declaration_command] = STATE(2542), + [sym_unset_command] = STATE(2542), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(2545), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_SEMI_SEMI] = ACTIONS(5948), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [2387] = { + [sym__special_characters] = ACTIONS(5044), + [anon_sym_DQUOTE] = ACTIONS(5044), + [anon_sym_DOLLAR] = ACTIONS(5046), + [sym_raw_string] = ACTIONS(5044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5044), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5044), + [anon_sym_BQUOTE] = ACTIONS(5044), + [anon_sym_LT_LPAREN] = ACTIONS(5044), + [anon_sym_GT_LPAREN] = ACTIONS(5044), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5044), + }, + [2388] = { + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(5950), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LF] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(316), + }, + [2389] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(5950), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LF] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(316), + }, + [2390] = { + [sym__terminated_statement] = STATE(2544), + [sym_for_statement] = STATE(2548), + [sym_while_statement] = STATE(2548), + [sym_if_statement] = STATE(2548), + [sym_case_statement] = STATE(2548), + [sym_function_definition] = STATE(2548), + [sym_subshell] = STATE(2548), + [sym_pipeline] = STATE(2548), + [sym_list] = STATE(2548), + [sym_command] = STATE(2548), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(2548), + [sym_variable_assignment] = STATE(2549), + [sym_declaration_command] = STATE(2548), + [sym_unset_command] = STATE(2548), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(2544), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_SEMI_SEMI] = ACTIONS(5952), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [2391] = { + [sym__terminated_statement] = STATE(2550), + [sym_for_statement] = STATE(2548), + [sym_while_statement] = STATE(2548), + [sym_if_statement] = STATE(2548), + [sym_case_statement] = STATE(2548), + [sym_function_definition] = STATE(2548), + [sym_subshell] = STATE(2548), + [sym_pipeline] = STATE(2548), + [sym_list] = STATE(2548), + [sym_command] = STATE(2548), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(2548), + [sym_variable_assignment] = STATE(2549), + [sym_declaration_command] = STATE(2548), + [sym_unset_command] = STATE(2548), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(2550), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_SEMI_SEMI] = ACTIONS(5952), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [2392] = { + [sym__concat] = ACTIONS(4621), + [anon_sym_RBRACE] = ACTIONS(4621), + [sym_comment] = ACTIONS(54), + }, + [2393] = { + [sym__concat] = ACTIONS(4625), + [anon_sym_RBRACE] = ACTIONS(4625), + [sym_comment] = ACTIONS(54), + }, + [2394] = { + [sym__concat] = ACTIONS(4629), + [anon_sym_RBRACE] = ACTIONS(4629), + [sym_comment] = ACTIONS(54), + }, + [2395] = { + [sym__concat] = ACTIONS(4633), + [anon_sym_RBRACE] = ACTIONS(4633), + [sym_comment] = ACTIONS(54), + }, + [2396] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5954), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2397] = { + [sym__concat] = ACTIONS(4639), + [anon_sym_RBRACE] = ACTIONS(4639), + [sym_comment] = ACTIONS(54), + }, + [2398] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5956), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2399] = { + [sym__concat] = ACTIONS(4645), + [anon_sym_RBRACE] = ACTIONS(4645), + [sym_comment] = ACTIONS(54), + }, + [2400] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5958), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2401] = { + [sym__concat] = ACTIONS(4651), + [anon_sym_RBRACE] = ACTIONS(4651), + [sym_comment] = ACTIONS(54), + }, + [2402] = { + [sym__concat] = ACTIONS(4655), + [anon_sym_RBRACE] = ACTIONS(4655), + [sym_comment] = ACTIONS(54), + }, + [2403] = { + [sym__concat] = ACTIONS(5178), + [anon_sym_RBRACE] = ACTIONS(5178), + [anon_sym_EQ] = ACTIONS(5180), + [sym__special_characters] = ACTIONS(5180), + [anon_sym_DQUOTE] = ACTIONS(5178), + [anon_sym_DOLLAR] = ACTIONS(5180), + [sym_raw_string] = ACTIONS(5178), + [anon_sym_POUND] = ACTIONS(5178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5178), + [anon_sym_COLON] = ACTIONS(5180), + [anon_sym_COLON_QMARK] = ACTIONS(5180), + [anon_sym_COLON_DASH] = ACTIONS(5180), + [anon_sym_PERCENT] = ACTIONS(5180), + [anon_sym_DASH] = ACTIONS(5180), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5178), + [anon_sym_BQUOTE] = ACTIONS(5178), + [anon_sym_LT_LPAREN] = ACTIONS(5178), + [anon_sym_GT_LPAREN] = ACTIONS(5178), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5180), + }, + [2404] = { + [sym__concat] = ACTIONS(5182), + [anon_sym_RBRACE] = ACTIONS(5182), + [anon_sym_EQ] = ACTIONS(5184), + [sym__special_characters] = ACTIONS(5184), + [anon_sym_DQUOTE] = ACTIONS(5182), + [anon_sym_DOLLAR] = ACTIONS(5184), + [sym_raw_string] = ACTIONS(5182), + [anon_sym_POUND] = ACTIONS(5182), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5182), + [anon_sym_COLON] = ACTIONS(5184), + [anon_sym_COLON_QMARK] = ACTIONS(5184), + [anon_sym_COLON_DASH] = ACTIONS(5184), + [anon_sym_PERCENT] = ACTIONS(5184), + [anon_sym_DASH] = ACTIONS(5184), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5182), + [anon_sym_BQUOTE] = ACTIONS(5182), + [anon_sym_LT_LPAREN] = ACTIONS(5182), + [anon_sym_GT_LPAREN] = ACTIONS(5182), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5184), + }, + [2405] = { + [sym__concat] = ACTIONS(5186), + [anon_sym_RBRACE] = ACTIONS(5186), + [anon_sym_EQ] = ACTIONS(5188), + [sym__special_characters] = ACTIONS(5188), + [anon_sym_DQUOTE] = ACTIONS(5186), + [anon_sym_DOLLAR] = ACTIONS(5188), + [sym_raw_string] = ACTIONS(5186), + [anon_sym_POUND] = ACTIONS(5186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5186), + [anon_sym_COLON] = ACTIONS(5188), + [anon_sym_COLON_QMARK] = ACTIONS(5188), + [anon_sym_COLON_DASH] = ACTIONS(5188), + [anon_sym_PERCENT] = ACTIONS(5188), + [anon_sym_DASH] = ACTIONS(5188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5186), + [anon_sym_BQUOTE] = ACTIONS(5186), + [anon_sym_LT_LPAREN] = ACTIONS(5186), + [anon_sym_GT_LPAREN] = ACTIONS(5186), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5188), + }, + [2406] = { + [anon_sym_PIPE] = ACTIONS(5532), + [anon_sym_RPAREN] = ACTIONS(5534), + [anon_sym_PIPE_AMP] = ACTIONS(5534), + [anon_sym_AMP_AMP] = ACTIONS(5534), + [anon_sym_PIPE_PIPE] = ACTIONS(5534), + [anon_sym_BQUOTE] = ACTIONS(5534), + [sym_comment] = ACTIONS(54), + }, + [2407] = { + [anon_sym_PIPE] = ACTIONS(5536), + [anon_sym_RPAREN] = ACTIONS(5538), + [anon_sym_PIPE_AMP] = ACTIONS(5538), + [anon_sym_AMP_AMP] = ACTIONS(5538), + [anon_sym_PIPE_PIPE] = ACTIONS(5538), + [anon_sym_BQUOTE] = ACTIONS(5538), + [sym_comment] = ACTIONS(54), + }, + [2408] = { + [sym__concat] = ACTIONS(5178), + [sym_variable_name] = ACTIONS(5178), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_RPAREN] = ACTIONS(5178), + [anon_sym_PIPE_AMP] = ACTIONS(5178), + [anon_sym_AMP_AMP] = ACTIONS(5178), + [anon_sym_PIPE_PIPE] = ACTIONS(5178), + [sym__special_characters] = ACTIONS(5178), + [anon_sym_DQUOTE] = ACTIONS(5178), + [anon_sym_DOLLAR] = ACTIONS(5180), + [sym_raw_string] = ACTIONS(5178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5178), + [anon_sym_BQUOTE] = ACTIONS(5178), + [anon_sym_LT_LPAREN] = ACTIONS(5178), + [anon_sym_GT_LPAREN] = ACTIONS(5178), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5180), + [sym_word] = ACTIONS(5180), + }, + [2409] = { + [sym__concat] = ACTIONS(5182), + [sym_variable_name] = ACTIONS(5182), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_RPAREN] = ACTIONS(5182), + [anon_sym_PIPE_AMP] = ACTIONS(5182), + [anon_sym_AMP_AMP] = ACTIONS(5182), + [anon_sym_PIPE_PIPE] = ACTIONS(5182), + [sym__special_characters] = ACTIONS(5182), + [anon_sym_DQUOTE] = ACTIONS(5182), + [anon_sym_DOLLAR] = ACTIONS(5184), + [sym_raw_string] = ACTIONS(5182), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5182), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5182), + [anon_sym_BQUOTE] = ACTIONS(5182), + [anon_sym_LT_LPAREN] = ACTIONS(5182), + [anon_sym_GT_LPAREN] = ACTIONS(5182), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5184), + [sym_word] = ACTIONS(5184), + }, + [2410] = { + [sym__concat] = ACTIONS(5186), + [sym_variable_name] = ACTIONS(5186), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_RPAREN] = ACTIONS(5186), + [anon_sym_PIPE_AMP] = ACTIONS(5186), + [anon_sym_AMP_AMP] = ACTIONS(5186), + [anon_sym_PIPE_PIPE] = ACTIONS(5186), + [sym__special_characters] = ACTIONS(5186), + [anon_sym_DQUOTE] = ACTIONS(5186), + [anon_sym_DOLLAR] = ACTIONS(5188), + [sym_raw_string] = ACTIONS(5186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5186), + [anon_sym_BQUOTE] = ACTIONS(5186), + [anon_sym_LT_LPAREN] = ACTIONS(5186), + [anon_sym_GT_LPAREN] = ACTIONS(5186), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5188), + [sym_word] = ACTIONS(5188), + }, + [2411] = { + [sym__concat] = ACTIONS(5178), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_RPAREN] = ACTIONS(5178), + [anon_sym_PIPE_AMP] = ACTIONS(5178), + [anon_sym_AMP_AMP] = ACTIONS(5178), + [anon_sym_PIPE_PIPE] = ACTIONS(5178), + [sym__special_characters] = ACTIONS(5178), + [anon_sym_DQUOTE] = ACTIONS(5178), + [anon_sym_DOLLAR] = ACTIONS(5180), + [sym_raw_string] = ACTIONS(5178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5178), + [anon_sym_BQUOTE] = ACTIONS(5178), + [anon_sym_LT_LPAREN] = ACTIONS(5178), + [anon_sym_GT_LPAREN] = ACTIONS(5178), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5180), + [sym_word] = ACTIONS(5180), + }, + [2412] = { + [sym__concat] = ACTIONS(5182), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_RPAREN] = ACTIONS(5182), + [anon_sym_PIPE_AMP] = ACTIONS(5182), + [anon_sym_AMP_AMP] = ACTIONS(5182), + [anon_sym_PIPE_PIPE] = ACTIONS(5182), + [sym__special_characters] = ACTIONS(5182), + [anon_sym_DQUOTE] = ACTIONS(5182), + [anon_sym_DOLLAR] = ACTIONS(5184), + [sym_raw_string] = ACTIONS(5182), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5182), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5182), + [anon_sym_BQUOTE] = ACTIONS(5182), + [anon_sym_LT_LPAREN] = ACTIONS(5182), + [anon_sym_GT_LPAREN] = ACTIONS(5182), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5184), + [sym_word] = ACTIONS(5184), + }, + [2413] = { + [sym__concat] = ACTIONS(5186), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_RPAREN] = ACTIONS(5186), + [anon_sym_PIPE_AMP] = ACTIONS(5186), + [anon_sym_AMP_AMP] = ACTIONS(5186), + [anon_sym_PIPE_PIPE] = ACTIONS(5186), + [sym__special_characters] = ACTIONS(5186), + [anon_sym_DQUOTE] = ACTIONS(5186), + [anon_sym_DOLLAR] = ACTIONS(5188), + [sym_raw_string] = ACTIONS(5186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5186), + [anon_sym_BQUOTE] = ACTIONS(5186), + [anon_sym_LT_LPAREN] = ACTIONS(5186), + [anon_sym_GT_LPAREN] = ACTIONS(5186), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5188), + [sym_word] = ACTIONS(5188), + }, + [2414] = { + [sym__heredoc_middle] = ACTIONS(4621), + [sym__heredoc_end] = ACTIONS(4621), + [anon_sym_DOLLAR] = ACTIONS(4623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4621), + [sym_comment] = ACTIONS(54), + }, + [2415] = { + [sym__heredoc_middle] = ACTIONS(4625), + [sym__heredoc_end] = ACTIONS(4625), + [anon_sym_DOLLAR] = ACTIONS(4627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4625), + [sym_comment] = ACTIONS(54), + }, + [2416] = { + [sym__heredoc_middle] = ACTIONS(4629), + [sym__heredoc_end] = ACTIONS(4629), + [anon_sym_DOLLAR] = ACTIONS(4631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4629), + [sym_comment] = ACTIONS(54), + }, + [2417] = { + [sym__heredoc_middle] = ACTIONS(4633), + [sym__heredoc_end] = ACTIONS(4633), + [anon_sym_DOLLAR] = ACTIONS(4635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4633), + [sym_comment] = ACTIONS(54), + }, + [2418] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5960), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2419] = { + [sym__heredoc_middle] = ACTIONS(4639), + [sym__heredoc_end] = ACTIONS(4639), + [anon_sym_DOLLAR] = ACTIONS(4641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4639), + [sym_comment] = ACTIONS(54), + }, + [2420] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5962), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2421] = { + [sym__heredoc_middle] = ACTIONS(4645), + [sym__heredoc_end] = ACTIONS(4645), + [anon_sym_DOLLAR] = ACTIONS(4647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4645), + [sym_comment] = ACTIONS(54), + }, + [2422] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(5964), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2423] = { + [sym__heredoc_middle] = ACTIONS(4651), + [sym__heredoc_end] = ACTIONS(4651), + [anon_sym_DOLLAR] = ACTIONS(4653), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4651), + [sym_comment] = ACTIONS(54), + }, + [2424] = { + [sym__heredoc_middle] = ACTIONS(4655), + [sym__heredoc_end] = ACTIONS(4655), + [anon_sym_DOLLAR] = ACTIONS(4657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4655), + [sym_comment] = ACTIONS(54), + }, + [2425] = { + [sym__concat] = ACTIONS(5178), + [anon_sym_RPAREN] = ACTIONS(5178), + [sym__special_characters] = ACTIONS(5178), + [anon_sym_DQUOTE] = ACTIONS(5178), + [anon_sym_DOLLAR] = ACTIONS(5180), + [sym_raw_string] = ACTIONS(5178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5178), + [anon_sym_BQUOTE] = ACTIONS(5178), + [anon_sym_LT_LPAREN] = ACTIONS(5178), + [anon_sym_GT_LPAREN] = ACTIONS(5178), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5178), + }, + [2426] = { + [sym__concat] = ACTIONS(5182), + [anon_sym_RPAREN] = ACTIONS(5182), + [sym__special_characters] = ACTIONS(5182), + [anon_sym_DQUOTE] = ACTIONS(5182), + [anon_sym_DOLLAR] = ACTIONS(5184), + [sym_raw_string] = ACTIONS(5182), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5182), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5182), + [anon_sym_BQUOTE] = ACTIONS(5182), + [anon_sym_LT_LPAREN] = ACTIONS(5182), + [anon_sym_GT_LPAREN] = ACTIONS(5182), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5182), + }, + [2427] = { + [sym__concat] = ACTIONS(5186), + [anon_sym_RPAREN] = ACTIONS(5186), + [sym__special_characters] = ACTIONS(5186), + [anon_sym_DQUOTE] = ACTIONS(5186), + [anon_sym_DOLLAR] = ACTIONS(5188), + [sym_raw_string] = ACTIONS(5186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5186), + [anon_sym_BQUOTE] = ACTIONS(5186), + [anon_sym_LT_LPAREN] = ACTIONS(5186), + [anon_sym_GT_LPAREN] = ACTIONS(5186), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5186), + }, + [2428] = { + [sym__concat] = ACTIONS(5178), + [anon_sym_SEMI_SEMI] = ACTIONS(5180), + [sym__special_characters] = ACTIONS(5180), + [anon_sym_DQUOTE] = ACTIONS(5180), + [anon_sym_DOLLAR] = ACTIONS(5180), + [sym_raw_string] = ACTIONS(5180), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5180), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5180), + [anon_sym_BQUOTE] = ACTIONS(5180), + [anon_sym_LT_LPAREN] = ACTIONS(5180), + [anon_sym_GT_LPAREN] = ACTIONS(5180), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5180), + [anon_sym_LF] = ACTIONS(5178), + [anon_sym_AMP] = ACTIONS(5180), + }, + [2429] = { + [sym__concat] = ACTIONS(5182), + [anon_sym_SEMI_SEMI] = ACTIONS(5184), + [sym__special_characters] = ACTIONS(5184), + [anon_sym_DQUOTE] = ACTIONS(5184), + [anon_sym_DOLLAR] = ACTIONS(5184), + [sym_raw_string] = ACTIONS(5184), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5184), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5184), + [anon_sym_BQUOTE] = ACTIONS(5184), + [anon_sym_LT_LPAREN] = ACTIONS(5184), + [anon_sym_GT_LPAREN] = ACTIONS(5184), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5184), + [anon_sym_SEMI] = ACTIONS(5184), + [anon_sym_LF] = ACTIONS(5182), + [anon_sym_AMP] = ACTIONS(5184), + }, + [2430] = { + [sym__concat] = ACTIONS(5186), + [anon_sym_SEMI_SEMI] = ACTIONS(5188), + [sym__special_characters] = ACTIONS(5188), + [anon_sym_DQUOTE] = ACTIONS(5188), + [anon_sym_DOLLAR] = ACTIONS(5188), + [sym_raw_string] = ACTIONS(5188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5188), + [anon_sym_BQUOTE] = ACTIONS(5188), + [anon_sym_LT_LPAREN] = ACTIONS(5188), + [anon_sym_GT_LPAREN] = ACTIONS(5188), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5188), + [anon_sym_SEMI] = ACTIONS(5188), + [anon_sym_LF] = ACTIONS(5186), + [anon_sym_AMP] = ACTIONS(5188), + }, + [2431] = { + [sym_file_descriptor] = ACTIONS(2105), + [sym_variable_name] = ACTIONS(2105), + [anon_sym_esac] = ACTIONS(2107), + [anon_sym_PIPE] = ACTIONS(2107), + [anon_sym_SEMI_SEMI] = ACTIONS(2107), + [anon_sym_PIPE_AMP] = ACTIONS(2107), + [anon_sym_AMP_AMP] = ACTIONS(2107), + [anon_sym_PIPE_PIPE] = ACTIONS(2107), + [anon_sym_LT] = ACTIONS(2107), + [anon_sym_GT] = ACTIONS(2107), + [anon_sym_GT_GT] = ACTIONS(2107), + [anon_sym_AMP_GT] = ACTIONS(2107), + [anon_sym_AMP_GT_GT] = ACTIONS(2107), + [anon_sym_LT_AMP] = ACTIONS(2107), + [anon_sym_GT_AMP] = ACTIONS(2107), + [sym__special_characters] = ACTIONS(2107), + [anon_sym_DQUOTE] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(2107), + [sym_raw_string] = ACTIONS(2107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2107), + [anon_sym_LT_LPAREN] = ACTIONS(2107), + [anon_sym_GT_LPAREN] = ACTIONS(2107), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_LF] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2107), + }, + [2432] = { + [sym_concatenation] = STATE(984), + [sym_string] = STATE(549), + [sym_simple_expansion] = STATE(549), + [sym_string_expansion] = STATE(549), + [sym_expansion] = STATE(549), + [sym_command_substitution] = STATE(549), + [sym_process_substitution] = STATE(549), + [aux_sym_for_statement_repeat1] = STATE(984), + [anon_sym_RPAREN] = ACTIONS(5966), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(1089), + [sym_raw_string] = ACTIONS(1091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1095), + [anon_sym_BQUOTE] = ACTIONS(1097), + [anon_sym_LT_LPAREN] = ACTIONS(1099), + [anon_sym_GT_LPAREN] = ACTIONS(1099), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1091), + }, + [2433] = { + [sym_string] = STATE(2558), + [sym_simple_expansion] = STATE(2558), + [sym_string_expansion] = STATE(2558), + [sym_expansion] = STATE(2558), + [sym_command_substitution] = STATE(2558), + [sym_process_substitution] = STATE(2558), + [sym__special_characters] = ACTIONS(5968), + [anon_sym_DQUOTE] = ACTIONS(5362), + [anon_sym_DOLLAR] = ACTIONS(5364), + [sym_raw_string] = ACTIONS(5968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5370), + [anon_sym_BQUOTE] = ACTIONS(5372), + [anon_sym_LT_LPAREN] = ACTIONS(5374), + [anon_sym_GT_LPAREN] = ACTIONS(5374), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5968), + }, + [2434] = { + [aux_sym_concatenation_repeat1] = STATE(2559), + [sym_file_descriptor] = ACTIONS(688), + [sym__concat] = ACTIONS(5632), + [sym_variable_name] = ACTIONS(688), + [anon_sym_esac] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(690), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [sym__special_characters] = ACTIONS(690), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(690), + [anon_sym_BQUOTE] = ACTIONS(690), + [anon_sym_LT_LPAREN] = ACTIONS(690), + [anon_sym_GT_LPAREN] = ACTIONS(690), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(690), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), + }, + [2435] = { + [sym_file_descriptor] = ACTIONS(692), + [sym__concat] = ACTIONS(692), + [sym_variable_name] = ACTIONS(692), + [anon_sym_esac] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_SEMI_SEMI] = ACTIONS(694), + [anon_sym_PIPE_AMP] = ACTIONS(694), + [anon_sym_AMP_AMP] = ACTIONS(694), + [anon_sym_PIPE_PIPE] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_AMP_GT] = ACTIONS(694), + [anon_sym_AMP_GT_GT] = ACTIONS(694), + [anon_sym_LT_AMP] = ACTIONS(694), + [anon_sym_GT_AMP] = ACTIONS(694), + [sym__special_characters] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(694), + [sym_raw_string] = ACTIONS(694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(694), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LT_LPAREN] = ACTIONS(694), + [anon_sym_GT_LPAREN] = ACTIONS(694), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), + }, + [2436] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(5970), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [2437] = { + [sym_file_descriptor] = ACTIONS(722), + [sym__concat] = ACTIONS(722), + [sym_variable_name] = ACTIONS(722), + [anon_sym_esac] = ACTIONS(724), + [anon_sym_PIPE] = ACTIONS(724), + [anon_sym_SEMI_SEMI] = ACTIONS(724), + [anon_sym_PIPE_AMP] = ACTIONS(724), + [anon_sym_AMP_AMP] = ACTIONS(724), + [anon_sym_PIPE_PIPE] = ACTIONS(724), + [anon_sym_LT] = ACTIONS(724), + [anon_sym_GT] = ACTIONS(724), + [anon_sym_GT_GT] = ACTIONS(724), + [anon_sym_AMP_GT] = ACTIONS(724), + [anon_sym_AMP_GT_GT] = ACTIONS(724), + [anon_sym_LT_AMP] = ACTIONS(724), + [anon_sym_GT_AMP] = ACTIONS(724), + [sym__special_characters] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(724), + [sym_raw_string] = ACTIONS(724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(724), + [anon_sym_BQUOTE] = ACTIONS(724), + [anon_sym_LT_LPAREN] = ACTIONS(724), + [anon_sym_GT_LPAREN] = ACTIONS(724), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(724), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LF] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(724), + }, + [2438] = { + [sym_file_descriptor] = ACTIONS(726), + [sym__concat] = ACTIONS(726), + [sym_variable_name] = ACTIONS(726), + [anon_sym_esac] = ACTIONS(728), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_SEMI_SEMI] = ACTIONS(728), + [anon_sym_PIPE_AMP] = ACTIONS(728), + [anon_sym_AMP_AMP] = ACTIONS(728), + [anon_sym_PIPE_PIPE] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(728), + [anon_sym_GT] = ACTIONS(728), + [anon_sym_GT_GT] = ACTIONS(728), + [anon_sym_AMP_GT] = ACTIONS(728), + [anon_sym_AMP_GT_GT] = ACTIONS(728), + [anon_sym_LT_AMP] = ACTIONS(728), + [anon_sym_GT_AMP] = ACTIONS(728), + [sym__special_characters] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(728), + [anon_sym_DOLLAR] = ACTIONS(728), + [sym_raw_string] = ACTIONS(728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(728), + [anon_sym_BQUOTE] = ACTIONS(728), + [anon_sym_LT_LPAREN] = ACTIONS(728), + [anon_sym_GT_LPAREN] = ACTIONS(728), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(728), + [anon_sym_SEMI] = ACTIONS(728), + [anon_sym_LF] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(728), + }, + [2439] = { + [sym_file_descriptor] = ACTIONS(730), + [sym__concat] = ACTIONS(730), + [sym_variable_name] = ACTIONS(730), + [anon_sym_esac] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(732), + [anon_sym_SEMI_SEMI] = ACTIONS(732), + [anon_sym_PIPE_AMP] = ACTIONS(732), + [anon_sym_AMP_AMP] = ACTIONS(732), + [anon_sym_PIPE_PIPE] = ACTIONS(732), + [anon_sym_LT] = ACTIONS(732), + [anon_sym_GT] = ACTIONS(732), + [anon_sym_GT_GT] = ACTIONS(732), + [anon_sym_AMP_GT] = ACTIONS(732), + [anon_sym_AMP_GT_GT] = ACTIONS(732), + [anon_sym_LT_AMP] = ACTIONS(732), + [anon_sym_GT_AMP] = ACTIONS(732), + [sym__special_characters] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_DOLLAR] = ACTIONS(732), + [sym_raw_string] = ACTIONS(732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(732), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(732), + [anon_sym_BQUOTE] = ACTIONS(732), + [anon_sym_LT_LPAREN] = ACTIONS(732), + [anon_sym_GT_LPAREN] = ACTIONS(732), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(732), + [anon_sym_SEMI] = ACTIONS(732), + [anon_sym_LF] = ACTIONS(730), + [anon_sym_AMP] = ACTIONS(732), + }, + [2440] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(5972), + [sym_comment] = ACTIONS(54), + }, + [2441] = { + [sym_concatenation] = STATE(2564), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2564), + [anon_sym_RBRACE] = ACTIONS(5974), + [anon_sym_EQ] = ACTIONS(5976), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5978), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(5976), + [anon_sym_COLON_QMARK] = ACTIONS(5976), + [anon_sym_COLON_DASH] = ACTIONS(5976), + [anon_sym_PERCENT] = ACTIONS(5976), + [anon_sym_DASH] = ACTIONS(5976), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2442] = { + [sym_subscript] = STATE(2568), + [sym_variable_name] = ACTIONS(5982), + [anon_sym_DOLLAR] = ACTIONS(5984), + [anon_sym_DASH] = ACTIONS(5984), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5986), + [anon_sym_STAR] = ACTIONS(5984), + [anon_sym_AT] = ACTIONS(5984), + [anon_sym_QMARK] = ACTIONS(5984), + [anon_sym_0] = ACTIONS(5988), + [anon_sym__] = ACTIONS(5988), + }, + [2443] = { + [sym_concatenation] = STATE(2571), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2571), + [anon_sym_RBRACE] = ACTIONS(5990), + [anon_sym_EQ] = ACTIONS(5992), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(5994), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(5996), + [anon_sym_COLON] = ACTIONS(5992), + [anon_sym_COLON_QMARK] = ACTIONS(5992), + [anon_sym_COLON_DASH] = ACTIONS(5992), + [anon_sym_PERCENT] = ACTIONS(5992), + [anon_sym_DASH] = ACTIONS(5992), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2444] = { + [sym_concatenation] = STATE(2574), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2574), + [anon_sym_RBRACE] = ACTIONS(5998), + [anon_sym_EQ] = ACTIONS(6000), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6004), + [anon_sym_COLON] = ACTIONS(6000), + [anon_sym_COLON_QMARK] = ACTIONS(6000), + [anon_sym_COLON_DASH] = ACTIONS(6000), + [anon_sym_PERCENT] = ACTIONS(6000), + [anon_sym_DASH] = ACTIONS(6000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2445] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(6006), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [2446] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(6006), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [2447] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(6006), + [sym_comment] = ACTIONS(54), + }, + [2448] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(6006), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [2449] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(6008), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [2450] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(6008), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [2451] = { + [sym_file_redirect] = STATE(2368), + [sym_heredoc_redirect] = STATE(2368), + [sym_herestring_redirect] = STATE(2368), + [aux_sym_while_statement_repeat1] = STATE(2368), + [sym_file_descriptor] = ACTIONS(5013), + [anon_sym_esac] = ACTIONS(2239), + [anon_sym_PIPE] = ACTIONS(2239), + [anon_sym_SEMI_SEMI] = ACTIONS(2239), + [anon_sym_PIPE_AMP] = ACTIONS(2239), + [anon_sym_AMP_AMP] = ACTIONS(2239), + [anon_sym_PIPE_PIPE] = ACTIONS(2239), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_GT_GT] = ACTIONS(5017), + [anon_sym_AMP_GT] = ACTIONS(5017), + [anon_sym_AMP_GT_GT] = ACTIONS(5017), + [anon_sym_LT_AMP] = ACTIONS(5017), + [anon_sym_GT_AMP] = ACTIONS(5017), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(5019), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_LF] = ACTIONS(2241), + [anon_sym_AMP] = ACTIONS(2239), + }, + [2452] = { + [sym_compound_statement] = STATE(2577), + [anon_sym_LBRACE] = ACTIONS(442), + [sym_comment] = ACTIONS(54), + }, + [2453] = { + [anon_sym_LT] = ACTIONS(6010), + [anon_sym_GT] = ACTIONS(6010), + [anon_sym_GT_GT] = ACTIONS(6012), + [anon_sym_AMP_GT] = ACTIONS(6010), + [anon_sym_AMP_GT_GT] = ACTIONS(6012), + [anon_sym_LT_AMP] = ACTIONS(6012), + [anon_sym_GT_AMP] = ACTIONS(6012), + [sym_comment] = ACTIONS(54), + }, + [2454] = { + [sym_concatenation] = STATE(1075), + [sym_string] = STATE(2582), + [sym_simple_expansion] = STATE(2582), + [sym_string_expansion] = STATE(2582), + [sym_expansion] = STATE(2582), + [sym_command_substitution] = STATE(2582), + [sym_process_substitution] = STATE(2582), + [sym__special_characters] = ACTIONS(6014), + [anon_sym_DQUOTE] = ACTIONS(6016), + [anon_sym_DOLLAR] = ACTIONS(6018), + [sym_raw_string] = ACTIONS(6020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6024), + [anon_sym_BQUOTE] = ACTIONS(6026), + [anon_sym_LT_LPAREN] = ACTIONS(6028), + [anon_sym_GT_LPAREN] = ACTIONS(6028), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(6020), + }, + [2455] = { + [sym_file_redirect] = STATE(2368), + [sym_heredoc_redirect] = STATE(2368), + [sym_herestring_redirect] = STATE(2368), + [aux_sym_while_statement_repeat1] = STATE(2368), + [sym_file_descriptor] = ACTIONS(5013), + [anon_sym_esac] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_SEMI_SEMI] = ACTIONS(2440), + [anon_sym_PIPE_AMP] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_GT_GT] = ACTIONS(5017), + [anon_sym_AMP_GT] = ACTIONS(5017), + [anon_sym_AMP_GT_GT] = ACTIONS(5017), + [anon_sym_LT_AMP] = ACTIONS(5017), + [anon_sym_GT_AMP] = ACTIONS(5017), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(5019), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_LF] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2440), + }, + [2456] = { + [sym_variable_name] = ACTIONS(1079), + [anon_sym_esac] = ACTIONS(1081), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1081), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1081), + [sym_word] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1081), + [anon_sym_LF] = ACTIONS(1079), + [anon_sym_AMP] = ACTIONS(1081), + }, + [2457] = { + [sym_concatenation] = STATE(2588), + [sym_string] = STATE(549), + [sym_simple_expansion] = STATE(549), + [sym_string_expansion] = STATE(549), + [sym_expansion] = STATE(549), + [sym_command_substitution] = STATE(549), + [sym_process_substitution] = STATE(549), + [aux_sym_for_statement_repeat1] = STATE(2588), + [anon_sym_RPAREN] = ACTIONS(6030), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(1089), + [sym_raw_string] = ACTIONS(1091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1095), + [anon_sym_BQUOTE] = ACTIONS(1097), + [anon_sym_LT_LPAREN] = ACTIONS(1099), + [anon_sym_GT_LPAREN] = ACTIONS(1099), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1091), + }, + [2458] = { + [aux_sym_concatenation_repeat1] = STATE(2294), + [sym__concat] = ACTIONS(5382), + [sym_variable_name] = ACTIONS(1101), + [anon_sym_esac] = ACTIONS(1105), + [anon_sym_PIPE] = ACTIONS(1105), + [anon_sym_SEMI_SEMI] = ACTIONS(1105), + [anon_sym_PIPE_AMP] = ACTIONS(1105), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE_PIPE] = ACTIONS(1105), + [sym__special_characters] = ACTIONS(1105), + [anon_sym_DQUOTE] = ACTIONS(1105), + [anon_sym_DOLLAR] = ACTIONS(1105), + [sym_raw_string] = ACTIONS(1105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1105), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1105), + [anon_sym_BQUOTE] = ACTIONS(1105), + [anon_sym_LT_LPAREN] = ACTIONS(1105), + [anon_sym_GT_LPAREN] = ACTIONS(1105), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1105), + [sym_word] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(1105), + [anon_sym_LF] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1105), + }, + [2459] = { + [aux_sym_concatenation_repeat1] = STATE(2294), + [sym__concat] = ACTIONS(5382), + [sym_variable_name] = ACTIONS(1079), + [anon_sym_esac] = ACTIONS(1081), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_SEMI_SEMI] = ACTIONS(1081), + [anon_sym_PIPE_AMP] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1081), + [anon_sym_PIPE_PIPE] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1081), + [sym_raw_string] = ACTIONS(1081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LT_LPAREN] = ACTIONS(1081), + [anon_sym_GT_LPAREN] = ACTIONS(1081), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1081), + [sym_word] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1081), + [anon_sym_LF] = ACTIONS(1079), + [anon_sym_AMP] = ACTIONS(1081), + }, + [2460] = { + [sym__concat] = ACTIONS(1634), + [sym_variable_name] = ACTIONS(1634), + [anon_sym_esac] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1636), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [2461] = { + [aux_sym_concatenation_repeat1] = STATE(2461), + [sym__concat] = ACTIONS(6032), + [sym_variable_name] = ACTIONS(1634), + [anon_sym_esac] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1636), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [2462] = { + [sym__concat] = ACTIONS(1683), + [sym_variable_name] = ACTIONS(1683), + [anon_sym_esac] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [sym__special_characters] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_BQUOTE] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1685), + [sym_word] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + }, + [2463] = { + [sym_concatenation] = STATE(2592), + [sym_string] = STATE(2591), + [sym_simple_expansion] = STATE(2591), + [sym_string_expansion] = STATE(2591), + [sym_expansion] = STATE(2591), + [sym_command_substitution] = STATE(2591), + [sym_process_substitution] = STATE(2591), + [anon_sym_RBRACE] = ACTIONS(6035), + [sym__special_characters] = ACTIONS(6037), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(6039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(6039), + }, + [2464] = { + [sym__concat] = ACTIONS(1724), + [sym_variable_name] = ACTIONS(1724), + [anon_sym_esac] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1726), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1726), + [sym_word] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LF] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1726), + }, + [2465] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6041), + }, + [2466] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6043), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2467] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(6045), + [sym_comment] = ACTIONS(54), + }, + [2468] = { + [sym_concatenation] = STATE(2598), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2598), + [anon_sym_RBRACE] = ACTIONS(6047), + [anon_sym_EQ] = ACTIONS(6049), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6053), + [anon_sym_COLON] = ACTIONS(6049), + [anon_sym_COLON_QMARK] = ACTIONS(6049), + [anon_sym_COLON_DASH] = ACTIONS(6049), + [anon_sym_PERCENT] = ACTIONS(6049), + [anon_sym_DASH] = ACTIONS(6049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2469] = { + [sym_concatenation] = STATE(2601), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2601), + [anon_sym_RBRACE] = ACTIONS(6055), + [anon_sym_EQ] = ACTIONS(6057), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), [anon_sym_POUND] = ACTIONS(6059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), - [anon_sym_COLON] = ACTIONS(6940), - [anon_sym_COLON_QMARK] = ACTIONS(6940), - [anon_sym_COLON_DASH] = ACTIONS(6940), - [anon_sym_PERCENT] = ACTIONS(6940), - [anon_sym_DASH] = ACTIONS(6940), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), - [anon_sym_BQUOTE] = ACTIONS(6059), - [anon_sym_LT_LPAREN] = ACTIONS(6059), - [anon_sym_GT_LPAREN] = ACTIONS(6059), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6061), + [anon_sym_COLON] = ACTIONS(6057), + [anon_sym_COLON_QMARK] = ACTIONS(6057), + [anon_sym_COLON_DASH] = ACTIONS(6057), + [anon_sym_PERCENT] = ACTIONS(6057), + [anon_sym_DASH] = ACTIONS(6057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [3468] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7745), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3469] = { - [sym__concat] = ACTIONS(6065), - [anon_sym_RBRACE] = ACTIONS(6065), - [anon_sym_EQ] = ACTIONS(6944), - [sym__special_characters] = ACTIONS(6067), - [anon_sym_DQUOTE] = ACTIONS(6065), - [anon_sym_DOLLAR] = ACTIONS(6944), - [sym_raw_string] = ACTIONS(6065), + [2470] = { + [sym_concatenation] = STATE(2603), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2603), + [anon_sym_RBRACE] = ACTIONS(6035), + [anon_sym_EQ] = ACTIONS(6063), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), [anon_sym_POUND] = ACTIONS(6065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), - [anon_sym_COLON] = ACTIONS(6944), - [anon_sym_COLON_QMARK] = ACTIONS(6944), - [anon_sym_COLON_DASH] = ACTIONS(6944), - [anon_sym_PERCENT] = ACTIONS(6944), - [anon_sym_DASH] = ACTIONS(6944), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), - [anon_sym_BQUOTE] = ACTIONS(6065), - [anon_sym_LT_LPAREN] = ACTIONS(6065), - [anon_sym_GT_LPAREN] = ACTIONS(6065), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6067), + [anon_sym_COLON] = ACTIONS(6063), + [anon_sym_COLON_QMARK] = ACTIONS(6063), + [anon_sym_COLON_DASH] = ACTIONS(6063), + [anon_sym_PERCENT] = ACTIONS(6063), + [anon_sym_DASH] = ACTIONS(6063), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [3470] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7747), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), + [2471] = { + [sym__concat] = ACTIONS(1790), + [sym_variable_name] = ACTIONS(1790), + [anon_sym_esac] = ACTIONS(1792), + [anon_sym_PIPE] = ACTIONS(1792), + [anon_sym_SEMI_SEMI] = ACTIONS(1792), + [anon_sym_PIPE_AMP] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [sym__special_characters] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1792), + [anon_sym_DOLLAR] = ACTIONS(1792), + [sym_raw_string] = ACTIONS(1792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1792), + [anon_sym_LT_LPAREN] = ACTIONS(1792), + [anon_sym_GT_LPAREN] = ACTIONS(1792), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1792), + [sym_word] = ACTIONS(1792), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_LF] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1792), }, - [3471] = { - [sym__concat] = ACTIONS(6071), + [2472] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6069), + }, + [2473] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), [anon_sym_RBRACE] = ACTIONS(6071), - [anon_sym_EQ] = ACTIONS(6948), - [sym__special_characters] = ACTIONS(6073), - [anon_sym_DQUOTE] = ACTIONS(6071), - [anon_sym_DOLLAR] = ACTIONS(6948), - [sym_raw_string] = ACTIONS(6071), - [anon_sym_POUND] = ACTIONS(6071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), - [anon_sym_COLON] = ACTIONS(6948), - [anon_sym_COLON_QMARK] = ACTIONS(6948), - [anon_sym_COLON_DASH] = ACTIONS(6948), - [anon_sym_PERCENT] = ACTIONS(6948), - [anon_sym_DASH] = ACTIONS(6948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), - [anon_sym_BQUOTE] = ACTIONS(6071), - [anon_sym_LT_LPAREN] = ACTIONS(6071), - [anon_sym_GT_LPAREN] = ACTIONS(6071), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6073), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), }, - [3472] = { + [2474] = { + [sym__concat] = ACTIONS(1798), + [sym_variable_name] = ACTIONS(1798), + [anon_sym_esac] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_SEMI_SEMI] = ACTIONS(1800), + [anon_sym_PIPE_AMP] = ACTIONS(1800), + [anon_sym_AMP_AMP] = ACTIONS(1800), + [anon_sym_PIPE_PIPE] = ACTIONS(1800), + [sym__special_characters] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1800), + [sym_raw_string] = ACTIONS(1800), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1800), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1800), + [anon_sym_BQUOTE] = ACTIONS(1800), + [anon_sym_LT_LPAREN] = ACTIONS(1800), + [anon_sym_GT_LPAREN] = ACTIONS(1800), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1800), + [sym_word] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_LF] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1800), + }, + [2475] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6073), + }, + [2476] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6035), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2477] = { + [sym__concat] = ACTIONS(1936), + [sym_variable_name] = ACTIONS(1936), + [anon_sym_esac] = ACTIONS(1938), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_SEMI_SEMI] = ACTIONS(1938), + [anon_sym_PIPE_AMP] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_PIPE_PIPE] = ACTIONS(1938), + [sym__special_characters] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_DOLLAR] = ACTIONS(1938), + [sym_raw_string] = ACTIONS(1938), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1938), + [anon_sym_BQUOTE] = ACTIONS(1938), + [anon_sym_LT_LPAREN] = ACTIONS(1938), + [anon_sym_GT_LPAREN] = ACTIONS(1938), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1938), + [sym_word] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1938), + }, + [2478] = { + [sym__concat] = ACTIONS(2000), + [sym_variable_name] = ACTIONS(2000), + [anon_sym_esac] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2002), + [anon_sym_BQUOTE] = ACTIONS(2002), + [anon_sym_LT_LPAREN] = ACTIONS(2002), + [anon_sym_GT_LPAREN] = ACTIONS(2002), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2002), + [sym_word] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2002), + }, + [2479] = { + [sym__concat] = ACTIONS(1634), + [anon_sym_esac] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1636), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [2480] = { + [aux_sym_concatenation_repeat1] = STATE(2480), [sym__concat] = ACTIONS(6075), - [anon_sym_RBRACE] = ACTIONS(6075), - [anon_sym_EQ] = ACTIONS(6950), - [sym__special_characters] = ACTIONS(6077), - [anon_sym_DQUOTE] = ACTIONS(6075), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6075), - [anon_sym_POUND] = ACTIONS(6075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), - [anon_sym_COLON] = ACTIONS(6950), - [anon_sym_COLON_QMARK] = ACTIONS(6950), - [anon_sym_COLON_DASH] = ACTIONS(6950), - [anon_sym_PERCENT] = ACTIONS(6950), - [anon_sym_DASH] = ACTIONS(6950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), - [anon_sym_BQUOTE] = ACTIONS(6075), - [anon_sym_LT_LPAREN] = ACTIONS(6075), - [anon_sym_GT_LPAREN] = ACTIONS(6075), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6077), - }, - [3473] = { - [sym_file_descriptor] = ACTIONS(4802), - [sym__concat] = ACTIONS(4802), - [sym_variable_name] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_RPAREN] = ACTIONS(4802), - [anon_sym_PIPE_AMP] = ACTIONS(4802), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_GT_GT] = ACTIONS(4802), - [anon_sym_AMP_GT] = ACTIONS(5860), - [anon_sym_AMP_GT_GT] = ACTIONS(4802), - [anon_sym_LT_AMP] = ACTIONS(4802), - [anon_sym_GT_AMP] = ACTIONS(4802), - [sym__special_characters] = ACTIONS(5860), - [anon_sym_DQUOTE] = ACTIONS(4802), - [anon_sym_DOLLAR] = ACTIONS(5860), - [sym_raw_string] = ACTIONS(4802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), - [anon_sym_BQUOTE] = ACTIONS(4802), - [anon_sym_LT_LPAREN] = ACTIONS(4802), - [anon_sym_GT_LPAREN] = ACTIONS(4802), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5860), - }, - [3474] = { - [sym_file_descriptor] = ACTIONS(4808), - [sym__concat] = ACTIONS(4808), - [sym_variable_name] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(4808), - [anon_sym_PIPE_AMP] = ACTIONS(4808), - [anon_sym_AMP_AMP] = ACTIONS(4808), - [anon_sym_PIPE_PIPE] = ACTIONS(4808), - [anon_sym_LT] = ACTIONS(5862), - [anon_sym_GT] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(4808), - [anon_sym_AMP_GT] = ACTIONS(5862), - [anon_sym_AMP_GT_GT] = ACTIONS(4808), - [anon_sym_LT_AMP] = ACTIONS(4808), - [anon_sym_GT_AMP] = ACTIONS(4808), - [sym__special_characters] = ACTIONS(5862), - [anon_sym_DQUOTE] = ACTIONS(4808), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4808), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), - [anon_sym_BQUOTE] = ACTIONS(4808), - [anon_sym_LT_LPAREN] = ACTIONS(4808), - [anon_sym_GT_LPAREN] = ACTIONS(4808), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5862), - }, - [3475] = { - [sym_file_descriptor] = ACTIONS(4871), - [sym__concat] = ACTIONS(4871), - [sym_variable_name] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_RPAREN] = ACTIONS(4871), - [anon_sym_PIPE_AMP] = ACTIONS(4871), - [anon_sym_AMP_AMP] = ACTIONS(4871), - [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_GT_GT] = ACTIONS(4871), - [anon_sym_AMP_GT] = ACTIONS(5864), - [anon_sym_AMP_GT_GT] = ACTIONS(4871), - [anon_sym_LT_AMP] = ACTIONS(4871), - [anon_sym_GT_AMP] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(5864), - [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5864), - [sym_raw_string] = ACTIONS(4871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), - [anon_sym_BQUOTE] = ACTIONS(4871), - [anon_sym_LT_LPAREN] = ACTIONS(4871), - [anon_sym_GT_LPAREN] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5864), - }, - [3476] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7749), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3477] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7751), - [sym_comment] = ACTIONS(56), - }, - [3478] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7753), - [sym_comment] = ACTIONS(56), - }, - [3479] = { - [anon_sym_RBRACE] = ACTIONS(7753), - [sym_comment] = ACTIONS(56), - }, - [3480] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3896), - [anon_sym_RBRACE] = ACTIONS(7755), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3481] = { - [sym_file_descriptor] = ACTIONS(4883), - [sym__concat] = ACTIONS(4883), - [sym_variable_name] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5874), - [anon_sym_RPAREN] = ACTIONS(4883), - [anon_sym_PIPE_AMP] = ACTIONS(4883), - [anon_sym_AMP_AMP] = ACTIONS(4883), - [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [anon_sym_LT] = ACTIONS(5874), - [anon_sym_GT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(4883), - [anon_sym_AMP_GT] = ACTIONS(5874), - [anon_sym_AMP_GT_GT] = ACTIONS(4883), - [anon_sym_LT_AMP] = ACTIONS(4883), - [anon_sym_GT_AMP] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(5874), - [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5874), - [sym_raw_string] = ACTIONS(4883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(4883), - [anon_sym_LT_LPAREN] = ACTIONS(4883), - [anon_sym_GT_LPAREN] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5874), - }, - [3482] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3898), - [anon_sym_RBRACE] = ACTIONS(7757), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3483] = { - [sym_file_descriptor] = ACTIONS(4889), - [sym__concat] = ACTIONS(4889), - [sym_variable_name] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5878), - [anon_sym_RPAREN] = ACTIONS(4889), - [anon_sym_PIPE_AMP] = ACTIONS(4889), - [anon_sym_AMP_AMP] = ACTIONS(4889), - [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [anon_sym_LT] = ACTIONS(5878), - [anon_sym_GT] = ACTIONS(5878), - [anon_sym_GT_GT] = ACTIONS(4889), - [anon_sym_AMP_GT] = ACTIONS(5878), - [anon_sym_AMP_GT_GT] = ACTIONS(4889), - [anon_sym_LT_AMP] = ACTIONS(4889), - [anon_sym_GT_AMP] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(5878), - [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5878), - [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(56), - [sym_word] = ACTIONS(5878), - }, - [3484] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3900), - [anon_sym_RBRACE] = ACTIONS(7759), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3485] = { - [sym_file_descriptor] = ACTIONS(4895), - [sym__concat] = ACTIONS(4895), - [sym_variable_name] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(5882), - [anon_sym_RPAREN] = ACTIONS(4895), - [anon_sym_PIPE_AMP] = ACTIONS(4895), - [anon_sym_AMP_AMP] = ACTIONS(4895), - [anon_sym_PIPE_PIPE] = ACTIONS(4895), - [anon_sym_LT] = ACTIONS(5882), - [anon_sym_GT] = ACTIONS(5882), - [anon_sym_GT_GT] = ACTIONS(4895), - [anon_sym_AMP_GT] = ACTIONS(5882), - [anon_sym_AMP_GT_GT] = ACTIONS(4895), - [anon_sym_LT_AMP] = ACTIONS(4895), - [anon_sym_GT_AMP] = ACTIONS(4895), - [sym__special_characters] = ACTIONS(5882), - [anon_sym_DQUOTE] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(5882), - [sym_raw_string] = ACTIONS(4895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), - [anon_sym_BQUOTE] = ACTIONS(4895), - [anon_sym_LT_LPAREN] = ACTIONS(4895), - [anon_sym_GT_LPAREN] = ACTIONS(4895), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5882), - }, - [3486] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7761), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3487] = { - [sym_file_descriptor] = ACTIONS(4901), - [sym__concat] = ACTIONS(4901), - [sym_variable_name] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(5886), - [anon_sym_RPAREN] = ACTIONS(4901), - [anon_sym_PIPE_AMP] = ACTIONS(4901), - [anon_sym_AMP_AMP] = ACTIONS(4901), - [anon_sym_PIPE_PIPE] = ACTIONS(4901), - [anon_sym_LT] = ACTIONS(5886), - [anon_sym_GT] = ACTIONS(5886), - [anon_sym_GT_GT] = ACTIONS(4901), - [anon_sym_AMP_GT] = ACTIONS(5886), - [anon_sym_AMP_GT_GT] = ACTIONS(4901), - [anon_sym_LT_AMP] = ACTIONS(4901), - [anon_sym_GT_AMP] = ACTIONS(4901), - [sym__special_characters] = ACTIONS(5886), - [anon_sym_DQUOTE] = ACTIONS(4901), - [anon_sym_DOLLAR] = ACTIONS(5886), - [sym_raw_string] = ACTIONS(4901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), - [anon_sym_BQUOTE] = ACTIONS(4901), - [anon_sym_LT_LPAREN] = ACTIONS(4901), - [anon_sym_GT_LPAREN] = ACTIONS(4901), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5886), - }, - [3488] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7763), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3489] = { - [anon_sym_PIPE] = ACTIONS(7765), - [anon_sym_RPAREN] = ACTIONS(7767), - [anon_sym_PIPE_AMP] = ACTIONS(7767), - [anon_sym_AMP_AMP] = ACTIONS(7767), - [anon_sym_PIPE_PIPE] = ACTIONS(7767), - [anon_sym_BQUOTE] = ACTIONS(7767), - [sym_comment] = ACTIONS(56), - }, - [3490] = { - [anon_sym_PIPE] = ACTIONS(7769), - [anon_sym_RPAREN] = ACTIONS(7771), - [anon_sym_PIPE_AMP] = ACTIONS(7771), - [anon_sym_AMP_AMP] = ACTIONS(7771), - [anon_sym_PIPE_PIPE] = ACTIONS(7771), - [anon_sym_BQUOTE] = ACTIONS(7771), - [sym_comment] = ACTIONS(56), - }, - [3491] = { - [anon_sym_esac] = ACTIONS(7773), - [sym_comment] = ACTIONS(56), - }, - [3492] = { - [anon_sym_PIPE] = ACTIONS(7775), - [anon_sym_RPAREN] = ACTIONS(7777), - [anon_sym_PIPE_AMP] = ACTIONS(7777), - [anon_sym_AMP_AMP] = ACTIONS(7777), - [anon_sym_PIPE_PIPE] = ACTIONS(7777), - [anon_sym_BQUOTE] = ACTIONS(7777), - [sym_comment] = ACTIONS(56), - }, - [3493] = { - [anon_sym_esac] = ACTIONS(7779), - [sym_comment] = ACTIONS(56), - }, - [3494] = { - [sym__concat] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_RPAREN] = ACTIONS(1890), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - }, - [3495] = { - [aux_sym_concatenation_repeat1] = STATE(3495), - [sym__concat] = ACTIONS(7781), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_RPAREN] = ACTIONS(1890), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - }, - [3496] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_PIPE_AMP] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [sym_comment] = ACTIONS(56), - }, - [3497] = { - [sym_concatenation] = STATE(3908), - [sym_string] = STATE(3907), - [sym_simple_expansion] = STATE(3907), - [sym_string_expansion] = STATE(3907), - [sym_expansion] = STATE(3907), - [sym_command_substitution] = STATE(3907), - [sym_process_substitution] = STATE(3907), - [anon_sym_RBRACE] = ACTIONS(7784), - [sym__special_characters] = ACTIONS(7786), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(7788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7790), - }, - [3498] = { - [sym__concat] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [sym_comment] = ACTIONS(56), - }, - [3499] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7792), - }, - [3500] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7794), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3501] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(7796), - [sym_comment] = ACTIONS(56), - }, - [3502] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3914), - [anon_sym_RBRACE] = ACTIONS(7798), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(7800), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3503] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3917), - [anon_sym_RBRACE] = ACTIONS(7802), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(7804), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3504] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3919), - [anon_sym_RBRACE] = ACTIONS(7784), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(7806), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3505] = { - [sym__concat] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(2026), - [anon_sym_PIPE_AMP] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [sym_comment] = ACTIONS(56), - }, - [3506] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7808), - }, - [3507] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7810), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3508] = { - [sym__concat] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_RPAREN] = ACTIONS(2034), - [anon_sym_PIPE_AMP] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [sym_comment] = ACTIONS(56), - }, - [3509] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7812), - }, - [3510] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7784), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3511] = { - [sym__concat] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_RPAREN] = ACTIONS(2196), - [anon_sym_PIPE_AMP] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [sym_comment] = ACTIONS(56), - }, - [3512] = { - [sym__concat] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_RPAREN] = ACTIONS(2402), - [anon_sym_PIPE_AMP] = ACTIONS(2402), - [anon_sym_AMP_AMP] = ACTIONS(2402), - [anon_sym_PIPE_PIPE] = ACTIONS(2402), - [sym_comment] = ACTIONS(56), - }, - [3513] = { - [sym__concat] = ACTIONS(6041), - [sym_variable_name] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6930), - [anon_sym_RPAREN] = ACTIONS(6041), - [anon_sym_PIPE_AMP] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6041), - [anon_sym_PIPE_PIPE] = ACTIONS(6041), - [sym__special_characters] = ACTIONS(6930), - [anon_sym_DQUOTE] = ACTIONS(6041), - [anon_sym_DOLLAR] = ACTIONS(6930), - [sym_raw_string] = ACTIONS(6041), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), - [anon_sym_BQUOTE] = ACTIONS(6041), - [anon_sym_LT_LPAREN] = ACTIONS(6041), - [anon_sym_GT_LPAREN] = ACTIONS(6041), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6930), - [sym_word] = ACTIONS(6043), - }, - [3514] = { - [sym__concat] = ACTIONS(6045), - [sym_variable_name] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6932), - [anon_sym_RPAREN] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6932), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6932), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6932), - [sym_word] = ACTIONS(6047), - }, - [3515] = { - [sym__concat] = ACTIONS(6049), - [sym_variable_name] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_RPAREN] = ACTIONS(6049), - [anon_sym_PIPE_AMP] = ACTIONS(6049), - [anon_sym_AMP_AMP] = ACTIONS(6049), - [anon_sym_PIPE_PIPE] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6934), - [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), - [anon_sym_BQUOTE] = ACTIONS(6049), - [anon_sym_LT_LPAREN] = ACTIONS(6049), - [anon_sym_GT_LPAREN] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6934), - [sym_word] = ACTIONS(6051), - }, - [3516] = { - [sym__concat] = ACTIONS(6053), - [sym_variable_name] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6936), - [anon_sym_RPAREN] = ACTIONS(6053), - [anon_sym_PIPE_AMP] = ACTIONS(6053), - [anon_sym_AMP_AMP] = ACTIONS(6053), - [anon_sym_PIPE_PIPE] = ACTIONS(6053), - [sym__special_characters] = ACTIONS(6936), - [anon_sym_DQUOTE] = ACTIONS(6053), - [anon_sym_DOLLAR] = ACTIONS(6936), - [sym_raw_string] = ACTIONS(6053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), - [anon_sym_BQUOTE] = ACTIONS(6053), - [anon_sym_LT_LPAREN] = ACTIONS(6053), - [anon_sym_GT_LPAREN] = ACTIONS(6053), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6936), - [sym_word] = ACTIONS(6055), - }, - [3517] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7814), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3518] = { - [sym__concat] = ACTIONS(6059), - [sym_variable_name] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6940), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_PIPE_AMP] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6940), - [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6940), - [sym_raw_string] = ACTIONS(6059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), - [anon_sym_BQUOTE] = ACTIONS(6059), - [anon_sym_LT_LPAREN] = ACTIONS(6059), - [anon_sym_GT_LPAREN] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6940), - [sym_word] = ACTIONS(6061), - }, - [3519] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7816), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3520] = { - [sym__concat] = ACTIONS(6065), - [sym_variable_name] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6944), - [anon_sym_RPAREN] = ACTIONS(6065), - [anon_sym_PIPE_AMP] = ACTIONS(6065), - [anon_sym_AMP_AMP] = ACTIONS(6065), - [anon_sym_PIPE_PIPE] = ACTIONS(6065), - [sym__special_characters] = ACTIONS(6944), - [anon_sym_DQUOTE] = ACTIONS(6065), - [anon_sym_DOLLAR] = ACTIONS(6944), - [sym_raw_string] = ACTIONS(6065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), - [anon_sym_BQUOTE] = ACTIONS(6065), - [anon_sym_LT_LPAREN] = ACTIONS(6065), - [anon_sym_GT_LPAREN] = ACTIONS(6065), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6944), - [sym_word] = ACTIONS(6067), - }, - [3521] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7818), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3522] = { - [sym__concat] = ACTIONS(6071), - [sym_variable_name] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6948), - [anon_sym_RPAREN] = ACTIONS(6071), - [anon_sym_PIPE_AMP] = ACTIONS(6071), - [anon_sym_AMP_AMP] = ACTIONS(6071), - [anon_sym_PIPE_PIPE] = ACTIONS(6071), - [sym__special_characters] = ACTIONS(6948), - [anon_sym_DQUOTE] = ACTIONS(6071), - [anon_sym_DOLLAR] = ACTIONS(6948), - [sym_raw_string] = ACTIONS(6071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), - [anon_sym_BQUOTE] = ACTIONS(6071), - [anon_sym_LT_LPAREN] = ACTIONS(6071), - [anon_sym_GT_LPAREN] = ACTIONS(6071), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6948), - [sym_word] = ACTIONS(6073), - }, - [3523] = { - [sym__concat] = ACTIONS(6075), - [sym_variable_name] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_RPAREN] = ACTIONS(6075), - [anon_sym_PIPE_AMP] = ACTIONS(6075), - [anon_sym_AMP_AMP] = ACTIONS(6075), - [anon_sym_PIPE_PIPE] = ACTIONS(6075), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6075), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), - [anon_sym_BQUOTE] = ACTIONS(6075), - [anon_sym_LT_LPAREN] = ACTIONS(6075), - [anon_sym_GT_LPAREN] = ACTIONS(6075), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6950), - [sym_word] = ACTIONS(6077), - }, - [3524] = { - [sym__concat] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6930), - [anon_sym_RPAREN] = ACTIONS(6041), - [anon_sym_PIPE_AMP] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6041), - [anon_sym_PIPE_PIPE] = ACTIONS(6041), - [sym__special_characters] = ACTIONS(6930), - [anon_sym_DQUOTE] = ACTIONS(6041), - [anon_sym_DOLLAR] = ACTIONS(6930), - [sym_raw_string] = ACTIONS(6041), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), - [anon_sym_BQUOTE] = ACTIONS(6041), - [anon_sym_LT_LPAREN] = ACTIONS(6041), - [anon_sym_GT_LPAREN] = ACTIONS(6041), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6930), - [sym_word] = ACTIONS(6043), - }, - [3525] = { - [sym__concat] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6932), - [anon_sym_RPAREN] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6932), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6932), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6932), - [sym_word] = ACTIONS(6047), - }, - [3526] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_RPAREN] = ACTIONS(6049), - [anon_sym_PIPE_AMP] = ACTIONS(6049), - [anon_sym_AMP_AMP] = ACTIONS(6049), - [anon_sym_PIPE_PIPE] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6934), - [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), - [anon_sym_BQUOTE] = ACTIONS(6049), - [anon_sym_LT_LPAREN] = ACTIONS(6049), - [anon_sym_GT_LPAREN] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6934), - [sym_word] = ACTIONS(6051), - }, - [3527] = { - [sym__concat] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6936), - [anon_sym_RPAREN] = ACTIONS(6053), - [anon_sym_PIPE_AMP] = ACTIONS(6053), - [anon_sym_AMP_AMP] = ACTIONS(6053), - [anon_sym_PIPE_PIPE] = ACTIONS(6053), - [sym__special_characters] = ACTIONS(6936), - [anon_sym_DQUOTE] = ACTIONS(6053), - [anon_sym_DOLLAR] = ACTIONS(6936), - [sym_raw_string] = ACTIONS(6053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), - [anon_sym_BQUOTE] = ACTIONS(6053), - [anon_sym_LT_LPAREN] = ACTIONS(6053), - [anon_sym_GT_LPAREN] = ACTIONS(6053), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6936), - [sym_word] = ACTIONS(6055), - }, - [3528] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7820), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3529] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6940), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_PIPE_AMP] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6940), - [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6940), - [sym_raw_string] = ACTIONS(6059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), - [anon_sym_BQUOTE] = ACTIONS(6059), - [anon_sym_LT_LPAREN] = ACTIONS(6059), - [anon_sym_GT_LPAREN] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6940), - [sym_word] = ACTIONS(6061), - }, - [3530] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7822), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3531] = { - [sym__concat] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6944), - [anon_sym_RPAREN] = ACTIONS(6065), - [anon_sym_PIPE_AMP] = ACTIONS(6065), - [anon_sym_AMP_AMP] = ACTIONS(6065), - [anon_sym_PIPE_PIPE] = ACTIONS(6065), - [sym__special_characters] = ACTIONS(6944), - [anon_sym_DQUOTE] = ACTIONS(6065), - [anon_sym_DOLLAR] = ACTIONS(6944), - [sym_raw_string] = ACTIONS(6065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), - [anon_sym_BQUOTE] = ACTIONS(6065), - [anon_sym_LT_LPAREN] = ACTIONS(6065), - [anon_sym_GT_LPAREN] = ACTIONS(6065), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6944), - [sym_word] = ACTIONS(6067), - }, - [3532] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7824), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3533] = { - [sym__concat] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6948), - [anon_sym_RPAREN] = ACTIONS(6071), - [anon_sym_PIPE_AMP] = ACTIONS(6071), - [anon_sym_AMP_AMP] = ACTIONS(6071), - [anon_sym_PIPE_PIPE] = ACTIONS(6071), - [sym__special_characters] = ACTIONS(6948), - [anon_sym_DQUOTE] = ACTIONS(6071), - [anon_sym_DOLLAR] = ACTIONS(6948), - [sym_raw_string] = ACTIONS(6071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), - [anon_sym_BQUOTE] = ACTIONS(6071), - [anon_sym_LT_LPAREN] = ACTIONS(6071), - [anon_sym_GT_LPAREN] = ACTIONS(6071), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6948), - [sym_word] = ACTIONS(6073), - }, - [3534] = { - [sym__concat] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_RPAREN] = ACTIONS(6075), - [anon_sym_PIPE_AMP] = ACTIONS(6075), - [anon_sym_AMP_AMP] = ACTIONS(6075), - [anon_sym_PIPE_PIPE] = ACTIONS(6075), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6075), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), - [anon_sym_BQUOTE] = ACTIONS(6075), - [anon_sym_LT_LPAREN] = ACTIONS(6075), - [anon_sym_GT_LPAREN] = ACTIONS(6075), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6950), - [sym_word] = ACTIONS(6077), - }, - [3535] = { - [sym_file_descriptor] = ACTIONS(7032), - [sym__concat] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7721), - [anon_sym_RPAREN] = ACTIONS(7032), - [anon_sym_PIPE_AMP] = ACTIONS(7032), - [anon_sym_AMP_AMP] = ACTIONS(7032), - [anon_sym_PIPE_PIPE] = ACTIONS(7032), - [anon_sym_EQ_TILDE] = ACTIONS(7721), - [anon_sym_EQ_EQ] = ACTIONS(7721), - [anon_sym_LT] = ACTIONS(7721), - [anon_sym_GT] = ACTIONS(7721), - [anon_sym_GT_GT] = ACTIONS(7032), - [anon_sym_AMP_GT] = ACTIONS(7721), - [anon_sym_AMP_GT_GT] = ACTIONS(7032), - [anon_sym_LT_AMP] = ACTIONS(7032), - [anon_sym_GT_AMP] = ACTIONS(7032), - [anon_sym_LT_LT] = ACTIONS(7721), - [anon_sym_LT_LT_DASH] = ACTIONS(7032), - [anon_sym_LT_LT_LT] = ACTIONS(7032), - [sym__special_characters] = ACTIONS(7721), - [anon_sym_DQUOTE] = ACTIONS(7032), - [anon_sym_DOLLAR] = ACTIONS(7721), - [sym_raw_string] = ACTIONS(7032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), - [anon_sym_BQUOTE] = ACTIONS(7032), - [anon_sym_LT_LPAREN] = ACTIONS(7032), - [anon_sym_GT_LPAREN] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7034), - }, - [3536] = { - [sym_file_descriptor] = ACTIONS(7036), - [sym__concat] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7723), - [anon_sym_RPAREN] = ACTIONS(7036), - [anon_sym_PIPE_AMP] = ACTIONS(7036), - [anon_sym_AMP_AMP] = ACTIONS(7036), - [anon_sym_PIPE_PIPE] = ACTIONS(7036), - [anon_sym_EQ_TILDE] = ACTIONS(7723), - [anon_sym_EQ_EQ] = ACTIONS(7723), - [anon_sym_LT] = ACTIONS(7723), - [anon_sym_GT] = ACTIONS(7723), - [anon_sym_GT_GT] = ACTIONS(7036), - [anon_sym_AMP_GT] = ACTIONS(7723), - [anon_sym_AMP_GT_GT] = ACTIONS(7036), - [anon_sym_LT_AMP] = ACTIONS(7036), - [anon_sym_GT_AMP] = ACTIONS(7036), - [anon_sym_LT_LT] = ACTIONS(7723), - [anon_sym_LT_LT_DASH] = ACTIONS(7036), - [anon_sym_LT_LT_LT] = ACTIONS(7036), - [sym__special_characters] = ACTIONS(7723), - [anon_sym_DQUOTE] = ACTIONS(7036), - [anon_sym_DOLLAR] = ACTIONS(7723), - [sym_raw_string] = ACTIONS(7036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), - [anon_sym_BQUOTE] = ACTIONS(7036), - [anon_sym_LT_LPAREN] = ACTIONS(7036), - [anon_sym_GT_LPAREN] = ACTIONS(7036), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7038), - }, - [3537] = { - [sym_file_descriptor] = ACTIONS(7040), - [sym__concat] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7725), - [anon_sym_RPAREN] = ACTIONS(7040), - [anon_sym_PIPE_AMP] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(7040), - [anon_sym_PIPE_PIPE] = ACTIONS(7040), - [anon_sym_EQ_TILDE] = ACTIONS(7725), - [anon_sym_EQ_EQ] = ACTIONS(7725), - [anon_sym_LT] = ACTIONS(7725), - [anon_sym_GT] = ACTIONS(7725), - [anon_sym_GT_GT] = ACTIONS(7040), - [anon_sym_AMP_GT] = ACTIONS(7725), - [anon_sym_AMP_GT_GT] = ACTIONS(7040), - [anon_sym_LT_AMP] = ACTIONS(7040), - [anon_sym_GT_AMP] = ACTIONS(7040), - [anon_sym_LT_LT] = ACTIONS(7725), - [anon_sym_LT_LT_DASH] = ACTIONS(7040), - [anon_sym_LT_LT_LT] = ACTIONS(7040), - [sym__special_characters] = ACTIONS(7725), - [anon_sym_DQUOTE] = ACTIONS(7040), - [anon_sym_DOLLAR] = ACTIONS(7725), - [sym_raw_string] = ACTIONS(7040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), - [anon_sym_BQUOTE] = ACTIONS(7040), - [anon_sym_LT_LPAREN] = ACTIONS(7040), - [anon_sym_GT_LPAREN] = ACTIONS(7040), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7042), - }, - [3538] = { - [sym_file_descriptor] = ACTIONS(4802), - [sym__concat] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_RPAREN] = ACTIONS(4802), - [anon_sym_PIPE_AMP] = ACTIONS(4802), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_GT_GT] = ACTIONS(4802), - [anon_sym_AMP_GT] = ACTIONS(5860), - [anon_sym_AMP_GT_GT] = ACTIONS(4802), - [anon_sym_LT_AMP] = ACTIONS(4802), - [anon_sym_GT_AMP] = ACTIONS(4802), - [anon_sym_LT_LT] = ACTIONS(5860), - [anon_sym_LT_LT_DASH] = ACTIONS(4802), - [anon_sym_LT_LT_LT] = ACTIONS(4802), - [sym_comment] = ACTIONS(56), - }, - [3539] = { - [sym_file_descriptor] = ACTIONS(4808), - [sym__concat] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(4808), - [anon_sym_PIPE_AMP] = ACTIONS(4808), - [anon_sym_AMP_AMP] = ACTIONS(4808), - [anon_sym_PIPE_PIPE] = ACTIONS(4808), - [anon_sym_LT] = ACTIONS(5862), - [anon_sym_GT] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(4808), - [anon_sym_AMP_GT] = ACTIONS(5862), - [anon_sym_AMP_GT_GT] = ACTIONS(4808), - [anon_sym_LT_AMP] = ACTIONS(4808), - [anon_sym_GT_AMP] = ACTIONS(4808), - [anon_sym_LT_LT] = ACTIONS(5862), - [anon_sym_LT_LT_DASH] = ACTIONS(4808), - [anon_sym_LT_LT_LT] = ACTIONS(4808), - [sym_comment] = ACTIONS(56), - }, - [3540] = { - [sym_file_descriptor] = ACTIONS(4871), - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_RPAREN] = ACTIONS(4871), - [anon_sym_PIPE_AMP] = ACTIONS(4871), - [anon_sym_AMP_AMP] = ACTIONS(4871), - [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_GT_GT] = ACTIONS(4871), - [anon_sym_AMP_GT] = ACTIONS(5864), - [anon_sym_AMP_GT_GT] = ACTIONS(4871), - [anon_sym_LT_AMP] = ACTIONS(4871), - [anon_sym_GT_AMP] = ACTIONS(4871), - [anon_sym_LT_LT] = ACTIONS(5864), - [anon_sym_LT_LT_DASH] = ACTIONS(4871), - [anon_sym_LT_LT_LT] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - }, - [3541] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7826), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3542] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7828), - [sym_comment] = ACTIONS(56), - }, - [3543] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7830), - [sym_comment] = ACTIONS(56), - }, - [3544] = { - [anon_sym_RBRACE] = ACTIONS(7830), - [sym_comment] = ACTIONS(56), - }, - [3545] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3933), - [anon_sym_RBRACE] = ACTIONS(7832), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3546] = { - [sym_file_descriptor] = ACTIONS(4883), - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5874), - [anon_sym_RPAREN] = ACTIONS(4883), - [anon_sym_PIPE_AMP] = ACTIONS(4883), - [anon_sym_AMP_AMP] = ACTIONS(4883), - [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [anon_sym_LT] = ACTIONS(5874), - [anon_sym_GT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(4883), - [anon_sym_AMP_GT] = ACTIONS(5874), - [anon_sym_AMP_GT_GT] = ACTIONS(4883), - [anon_sym_LT_AMP] = ACTIONS(4883), - [anon_sym_GT_AMP] = ACTIONS(4883), - [anon_sym_LT_LT] = ACTIONS(5874), - [anon_sym_LT_LT_DASH] = ACTIONS(4883), - [anon_sym_LT_LT_LT] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - }, - [3547] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3935), - [anon_sym_RBRACE] = ACTIONS(7834), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3548] = { - [sym_file_descriptor] = ACTIONS(4889), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5878), - [anon_sym_RPAREN] = ACTIONS(4889), - [anon_sym_PIPE_AMP] = ACTIONS(4889), - [anon_sym_AMP_AMP] = ACTIONS(4889), - [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [anon_sym_LT] = ACTIONS(5878), - [anon_sym_GT] = ACTIONS(5878), - [anon_sym_GT_GT] = ACTIONS(4889), - [anon_sym_AMP_GT] = ACTIONS(5878), - [anon_sym_AMP_GT_GT] = ACTIONS(4889), - [anon_sym_LT_AMP] = ACTIONS(4889), - [anon_sym_GT_AMP] = ACTIONS(4889), - [anon_sym_LT_LT] = ACTIONS(5878), - [anon_sym_LT_LT_DASH] = ACTIONS(4889), - [anon_sym_LT_LT_LT] = ACTIONS(4889), - [sym_comment] = ACTIONS(56), - }, - [3549] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3937), - [anon_sym_RBRACE] = ACTIONS(7836), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3550] = { - [sym_file_descriptor] = ACTIONS(4895), - [sym__concat] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(5882), - [anon_sym_RPAREN] = ACTIONS(4895), - [anon_sym_PIPE_AMP] = ACTIONS(4895), - [anon_sym_AMP_AMP] = ACTIONS(4895), - [anon_sym_PIPE_PIPE] = ACTIONS(4895), - [anon_sym_LT] = ACTIONS(5882), - [anon_sym_GT] = ACTIONS(5882), - [anon_sym_GT_GT] = ACTIONS(4895), - [anon_sym_AMP_GT] = ACTIONS(5882), - [anon_sym_AMP_GT_GT] = ACTIONS(4895), - [anon_sym_LT_AMP] = ACTIONS(4895), - [anon_sym_GT_AMP] = ACTIONS(4895), - [anon_sym_LT_LT] = ACTIONS(5882), - [anon_sym_LT_LT_DASH] = ACTIONS(4895), - [anon_sym_LT_LT_LT] = ACTIONS(4895), - [sym_comment] = ACTIONS(56), - }, - [3551] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7838), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3552] = { - [sym_file_descriptor] = ACTIONS(4901), - [sym__concat] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(5886), - [anon_sym_RPAREN] = ACTIONS(4901), - [anon_sym_PIPE_AMP] = ACTIONS(4901), - [anon_sym_AMP_AMP] = ACTIONS(4901), - [anon_sym_PIPE_PIPE] = ACTIONS(4901), - [anon_sym_LT] = ACTIONS(5886), - [anon_sym_GT] = ACTIONS(5886), - [anon_sym_GT_GT] = ACTIONS(4901), - [anon_sym_AMP_GT] = ACTIONS(5886), - [anon_sym_AMP_GT_GT] = ACTIONS(4901), - [anon_sym_LT_AMP] = ACTIONS(4901), - [anon_sym_GT_AMP] = ACTIONS(4901), - [anon_sym_LT_LT] = ACTIONS(5886), - [anon_sym_LT_LT_DASH] = ACTIONS(4901), - [anon_sym_LT_LT_LT] = ACTIONS(4901), - [sym_comment] = ACTIONS(56), - }, - [3553] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7840), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3554] = { - [sym_file_descriptor] = ACTIONS(4802), - [sym__concat] = ACTIONS(4802), - [sym_variable_name] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_PIPE_AMP] = ACTIONS(4802), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_GT_GT] = ACTIONS(4802), - [anon_sym_AMP_GT] = ACTIONS(5860), - [anon_sym_AMP_GT_GT] = ACTIONS(4802), - [anon_sym_LT_AMP] = ACTIONS(4802), - [anon_sym_GT_AMP] = ACTIONS(4802), - [sym__special_characters] = ACTIONS(5860), - [anon_sym_DQUOTE] = ACTIONS(4802), - [anon_sym_DOLLAR] = ACTIONS(5860), - [sym_raw_string] = ACTIONS(4802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), - [anon_sym_BQUOTE] = ACTIONS(4802), - [anon_sym_LT_LPAREN] = ACTIONS(4802), - [anon_sym_GT_LPAREN] = ACTIONS(4802), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5860), - }, - [3555] = { - [sym_file_descriptor] = ACTIONS(4808), - [sym__concat] = ACTIONS(4808), - [sym_variable_name] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_PIPE_AMP] = ACTIONS(4808), - [anon_sym_AMP_AMP] = ACTIONS(4808), - [anon_sym_PIPE_PIPE] = ACTIONS(4808), - [anon_sym_LT] = ACTIONS(5862), - [anon_sym_GT] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(4808), - [anon_sym_AMP_GT] = ACTIONS(5862), - [anon_sym_AMP_GT_GT] = ACTIONS(4808), - [anon_sym_LT_AMP] = ACTIONS(4808), - [anon_sym_GT_AMP] = ACTIONS(4808), - [sym__special_characters] = ACTIONS(5862), - [anon_sym_DQUOTE] = ACTIONS(4808), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4808), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), - [anon_sym_BQUOTE] = ACTIONS(4808), - [anon_sym_LT_LPAREN] = ACTIONS(4808), - [anon_sym_GT_LPAREN] = ACTIONS(4808), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5862), - }, - [3556] = { - [sym_file_descriptor] = ACTIONS(4871), - [sym__concat] = ACTIONS(4871), - [sym_variable_name] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_PIPE_AMP] = ACTIONS(4871), - [anon_sym_AMP_AMP] = ACTIONS(4871), - [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_GT_GT] = ACTIONS(4871), - [anon_sym_AMP_GT] = ACTIONS(5864), - [anon_sym_AMP_GT_GT] = ACTIONS(4871), - [anon_sym_LT_AMP] = ACTIONS(4871), - [anon_sym_GT_AMP] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(5864), - [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5864), - [sym_raw_string] = ACTIONS(4871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), - [anon_sym_BQUOTE] = ACTIONS(4871), - [anon_sym_LT_LPAREN] = ACTIONS(4871), - [anon_sym_GT_LPAREN] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5864), - }, - [3557] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7842), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3558] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7844), - [sym_comment] = ACTIONS(56), - }, - [3559] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7846), - [sym_comment] = ACTIONS(56), - }, - [3560] = { - [anon_sym_RBRACE] = ACTIONS(7846), - [sym_comment] = ACTIONS(56), - }, - [3561] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3944), - [anon_sym_RBRACE] = ACTIONS(7848), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3562] = { - [sym_file_descriptor] = ACTIONS(4883), - [sym__concat] = ACTIONS(4883), - [sym_variable_name] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5874), - [anon_sym_PIPE_AMP] = ACTIONS(4883), - [anon_sym_AMP_AMP] = ACTIONS(4883), - [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [anon_sym_LT] = ACTIONS(5874), - [anon_sym_GT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(4883), - [anon_sym_AMP_GT] = ACTIONS(5874), - [anon_sym_AMP_GT_GT] = ACTIONS(4883), - [anon_sym_LT_AMP] = ACTIONS(4883), - [anon_sym_GT_AMP] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(5874), - [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5874), - [sym_raw_string] = ACTIONS(4883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(4883), - [anon_sym_LT_LPAREN] = ACTIONS(4883), - [anon_sym_GT_LPAREN] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5874), - }, - [3563] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3946), - [anon_sym_RBRACE] = ACTIONS(7850), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3564] = { - [sym_file_descriptor] = ACTIONS(4889), - [sym__concat] = ACTIONS(4889), - [sym_variable_name] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5878), - [anon_sym_PIPE_AMP] = ACTIONS(4889), - [anon_sym_AMP_AMP] = ACTIONS(4889), - [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [anon_sym_LT] = ACTIONS(5878), - [anon_sym_GT] = ACTIONS(5878), - [anon_sym_GT_GT] = ACTIONS(4889), - [anon_sym_AMP_GT] = ACTIONS(5878), - [anon_sym_AMP_GT_GT] = ACTIONS(4889), - [anon_sym_LT_AMP] = ACTIONS(4889), - [anon_sym_GT_AMP] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(5878), - [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5878), - [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(56), - [sym_word] = ACTIONS(5878), - }, - [3565] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3948), - [anon_sym_RBRACE] = ACTIONS(7852), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3566] = { - [sym_file_descriptor] = ACTIONS(4895), - [sym__concat] = ACTIONS(4895), - [sym_variable_name] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(5882), - [anon_sym_PIPE_AMP] = ACTIONS(4895), - [anon_sym_AMP_AMP] = ACTIONS(4895), - [anon_sym_PIPE_PIPE] = ACTIONS(4895), - [anon_sym_LT] = ACTIONS(5882), - [anon_sym_GT] = ACTIONS(5882), - [anon_sym_GT_GT] = ACTIONS(4895), - [anon_sym_AMP_GT] = ACTIONS(5882), - [anon_sym_AMP_GT_GT] = ACTIONS(4895), - [anon_sym_LT_AMP] = ACTIONS(4895), - [anon_sym_GT_AMP] = ACTIONS(4895), - [sym__special_characters] = ACTIONS(5882), - [anon_sym_DQUOTE] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(5882), - [sym_raw_string] = ACTIONS(4895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), - [anon_sym_BQUOTE] = ACTIONS(4895), - [anon_sym_LT_LPAREN] = ACTIONS(4895), - [anon_sym_GT_LPAREN] = ACTIONS(4895), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5882), - }, - [3567] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7854), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3568] = { - [sym_file_descriptor] = ACTIONS(4901), - [sym__concat] = ACTIONS(4901), - [sym_variable_name] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(5886), - [anon_sym_PIPE_AMP] = ACTIONS(4901), - [anon_sym_AMP_AMP] = ACTIONS(4901), - [anon_sym_PIPE_PIPE] = ACTIONS(4901), - [anon_sym_LT] = ACTIONS(5886), - [anon_sym_GT] = ACTIONS(5886), - [anon_sym_GT_GT] = ACTIONS(4901), - [anon_sym_AMP_GT] = ACTIONS(5886), - [anon_sym_AMP_GT_GT] = ACTIONS(4901), - [anon_sym_LT_AMP] = ACTIONS(4901), - [anon_sym_GT_AMP] = ACTIONS(4901), - [sym__special_characters] = ACTIONS(5886), - [anon_sym_DQUOTE] = ACTIONS(4901), - [anon_sym_DOLLAR] = ACTIONS(5886), - [sym_raw_string] = ACTIONS(4901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), - [anon_sym_BQUOTE] = ACTIONS(4901), - [anon_sym_LT_LPAREN] = ACTIONS(4901), - [anon_sym_GT_LPAREN] = ACTIONS(4901), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5886), - }, - [3569] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7856), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3570] = { - [sym__concat] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - }, - [3571] = { - [aux_sym_concatenation_repeat1] = STATE(3571), - [sym__concat] = ACTIONS(7858), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [sym_comment] = ACTIONS(56), - }, - [3572] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [anon_sym_BQUOTE] = ACTIONS(1927), - [sym_comment] = ACTIONS(56), - }, - [3573] = { - [sym_concatenation] = STATE(3954), - [sym_string] = STATE(3953), - [sym_simple_expansion] = STATE(3953), - [sym_string_expansion] = STATE(3953), - [sym_expansion] = STATE(3953), - [sym_command_substitution] = STATE(3953), - [sym_process_substitution] = STATE(3953), - [anon_sym_RBRACE] = ACTIONS(7861), - [sym__special_characters] = ACTIONS(7863), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(7865), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7867), - }, - [3574] = { - [sym__concat] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1972), - [sym_comment] = ACTIONS(56), - }, - [3575] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7869), - }, - [3576] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7871), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3577] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(7873), - [sym_comment] = ACTIONS(56), - }, - [3578] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3960), - [anon_sym_RBRACE] = ACTIONS(7875), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(7877), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3579] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3963), - [anon_sym_RBRACE] = ACTIONS(7879), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(7881), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3580] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3965), - [anon_sym_RBRACE] = ACTIONS(7861), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(7883), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3581] = { - [sym__concat] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PIPE_AMP] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_BQUOTE] = ACTIONS(2026), - [sym_comment] = ACTIONS(56), - }, - [3582] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7885), - }, - [3583] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7887), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3584] = { - [sym__concat] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_PIPE_AMP] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_BQUOTE] = ACTIONS(2034), - [sym_comment] = ACTIONS(56), - }, - [3585] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7889), - }, - [3586] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7861), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3587] = { - [sym__concat] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_PIPE_AMP] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [anon_sym_BQUOTE] = ACTIONS(2196), - [sym_comment] = ACTIONS(56), - }, - [3588] = { - [sym__concat] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_PIPE_AMP] = ACTIONS(2402), - [anon_sym_AMP_AMP] = ACTIONS(2402), - [anon_sym_PIPE_PIPE] = ACTIONS(2402), - [anon_sym_BQUOTE] = ACTIONS(2402), - [sym_comment] = ACTIONS(56), - }, - [3589] = { - [sym__concat] = ACTIONS(6041), - [sym_variable_name] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6930), - [anon_sym_PIPE_AMP] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6041), - [anon_sym_PIPE_PIPE] = ACTIONS(6041), - [sym__special_characters] = ACTIONS(6930), - [anon_sym_DQUOTE] = ACTIONS(6041), - [anon_sym_DOLLAR] = ACTIONS(6930), - [sym_raw_string] = ACTIONS(6041), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), - [anon_sym_BQUOTE] = ACTIONS(6041), - [anon_sym_LT_LPAREN] = ACTIONS(6041), - [anon_sym_GT_LPAREN] = ACTIONS(6041), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6930), - [sym_word] = ACTIONS(6043), - }, - [3590] = { - [sym__concat] = ACTIONS(6045), - [sym_variable_name] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6932), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6932), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6932), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6932), - [sym_word] = ACTIONS(6047), - }, - [3591] = { - [sym__concat] = ACTIONS(6049), - [sym_variable_name] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_PIPE_AMP] = ACTIONS(6049), - [anon_sym_AMP_AMP] = ACTIONS(6049), - [anon_sym_PIPE_PIPE] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6934), - [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), - [anon_sym_BQUOTE] = ACTIONS(6049), - [anon_sym_LT_LPAREN] = ACTIONS(6049), - [anon_sym_GT_LPAREN] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6934), - [sym_word] = ACTIONS(6051), - }, - [3592] = { - [sym__concat] = ACTIONS(6053), - [sym_variable_name] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6936), - [anon_sym_PIPE_AMP] = ACTIONS(6053), - [anon_sym_AMP_AMP] = ACTIONS(6053), - [anon_sym_PIPE_PIPE] = ACTIONS(6053), - [sym__special_characters] = ACTIONS(6936), - [anon_sym_DQUOTE] = ACTIONS(6053), - [anon_sym_DOLLAR] = ACTIONS(6936), - [sym_raw_string] = ACTIONS(6053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), - [anon_sym_BQUOTE] = ACTIONS(6053), - [anon_sym_LT_LPAREN] = ACTIONS(6053), - [anon_sym_GT_LPAREN] = ACTIONS(6053), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6936), - [sym_word] = ACTIONS(6055), - }, - [3593] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7891), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3594] = { - [sym__concat] = ACTIONS(6059), - [sym_variable_name] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6940), - [anon_sym_PIPE_AMP] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6940), - [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6940), - [sym_raw_string] = ACTIONS(6059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), - [anon_sym_BQUOTE] = ACTIONS(6059), - [anon_sym_LT_LPAREN] = ACTIONS(6059), - [anon_sym_GT_LPAREN] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6940), - [sym_word] = ACTIONS(6061), - }, - [3595] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7893), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3596] = { - [sym__concat] = ACTIONS(6065), - [sym_variable_name] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6944), - [anon_sym_PIPE_AMP] = ACTIONS(6065), - [anon_sym_AMP_AMP] = ACTIONS(6065), - [anon_sym_PIPE_PIPE] = ACTIONS(6065), - [sym__special_characters] = ACTIONS(6944), - [anon_sym_DQUOTE] = ACTIONS(6065), - [anon_sym_DOLLAR] = ACTIONS(6944), - [sym_raw_string] = ACTIONS(6065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), - [anon_sym_BQUOTE] = ACTIONS(6065), - [anon_sym_LT_LPAREN] = ACTIONS(6065), - [anon_sym_GT_LPAREN] = ACTIONS(6065), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6944), - [sym_word] = ACTIONS(6067), - }, - [3597] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7895), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3598] = { - [sym__concat] = ACTIONS(6071), - [sym_variable_name] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6948), - [anon_sym_PIPE_AMP] = ACTIONS(6071), - [anon_sym_AMP_AMP] = ACTIONS(6071), - [anon_sym_PIPE_PIPE] = ACTIONS(6071), - [sym__special_characters] = ACTIONS(6948), - [anon_sym_DQUOTE] = ACTIONS(6071), - [anon_sym_DOLLAR] = ACTIONS(6948), - [sym_raw_string] = ACTIONS(6071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), - [anon_sym_BQUOTE] = ACTIONS(6071), - [anon_sym_LT_LPAREN] = ACTIONS(6071), - [anon_sym_GT_LPAREN] = ACTIONS(6071), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6948), - [sym_word] = ACTIONS(6073), - }, - [3599] = { - [sym__concat] = ACTIONS(6075), - [sym_variable_name] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6075), - [anon_sym_AMP_AMP] = ACTIONS(6075), - [anon_sym_PIPE_PIPE] = ACTIONS(6075), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6075), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), - [anon_sym_BQUOTE] = ACTIONS(6075), - [anon_sym_LT_LPAREN] = ACTIONS(6075), - [anon_sym_GT_LPAREN] = ACTIONS(6075), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6950), - [sym_word] = ACTIONS(6077), - }, - [3600] = { - [sym__concat] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6930), - [anon_sym_PIPE_AMP] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6041), - [anon_sym_PIPE_PIPE] = ACTIONS(6041), - [sym__special_characters] = ACTIONS(6930), - [anon_sym_DQUOTE] = ACTIONS(6041), - [anon_sym_DOLLAR] = ACTIONS(6930), - [sym_raw_string] = ACTIONS(6041), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), - [anon_sym_BQUOTE] = ACTIONS(6041), - [anon_sym_LT_LPAREN] = ACTIONS(6041), - [anon_sym_GT_LPAREN] = ACTIONS(6041), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6930), - [sym_word] = ACTIONS(6043), - }, - [3601] = { - [sym__concat] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6932), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6932), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6932), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6932), - [sym_word] = ACTIONS(6047), - }, - [3602] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_PIPE_AMP] = ACTIONS(6049), - [anon_sym_AMP_AMP] = ACTIONS(6049), - [anon_sym_PIPE_PIPE] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6934), - [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), - [anon_sym_BQUOTE] = ACTIONS(6049), - [anon_sym_LT_LPAREN] = ACTIONS(6049), - [anon_sym_GT_LPAREN] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6934), - [sym_word] = ACTIONS(6051), - }, - [3603] = { - [sym__concat] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6936), - [anon_sym_PIPE_AMP] = ACTIONS(6053), - [anon_sym_AMP_AMP] = ACTIONS(6053), - [anon_sym_PIPE_PIPE] = ACTIONS(6053), - [sym__special_characters] = ACTIONS(6936), - [anon_sym_DQUOTE] = ACTIONS(6053), - [anon_sym_DOLLAR] = ACTIONS(6936), - [sym_raw_string] = ACTIONS(6053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), - [anon_sym_BQUOTE] = ACTIONS(6053), - [anon_sym_LT_LPAREN] = ACTIONS(6053), - [anon_sym_GT_LPAREN] = ACTIONS(6053), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6936), - [sym_word] = ACTIONS(6055), - }, - [3604] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7897), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3605] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6940), - [anon_sym_PIPE_AMP] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6940), - [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6940), - [sym_raw_string] = ACTIONS(6059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), - [anon_sym_BQUOTE] = ACTIONS(6059), - [anon_sym_LT_LPAREN] = ACTIONS(6059), - [anon_sym_GT_LPAREN] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6940), - [sym_word] = ACTIONS(6061), - }, - [3606] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7899), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3607] = { - [sym__concat] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6944), - [anon_sym_PIPE_AMP] = ACTIONS(6065), - [anon_sym_AMP_AMP] = ACTIONS(6065), - [anon_sym_PIPE_PIPE] = ACTIONS(6065), - [sym__special_characters] = ACTIONS(6944), - [anon_sym_DQUOTE] = ACTIONS(6065), - [anon_sym_DOLLAR] = ACTIONS(6944), - [sym_raw_string] = ACTIONS(6065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), - [anon_sym_BQUOTE] = ACTIONS(6065), - [anon_sym_LT_LPAREN] = ACTIONS(6065), - [anon_sym_GT_LPAREN] = ACTIONS(6065), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6944), - [sym_word] = ACTIONS(6067), - }, - [3608] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7901), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3609] = { - [sym__concat] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6948), - [anon_sym_PIPE_AMP] = ACTIONS(6071), - [anon_sym_AMP_AMP] = ACTIONS(6071), - [anon_sym_PIPE_PIPE] = ACTIONS(6071), - [sym__special_characters] = ACTIONS(6948), - [anon_sym_DQUOTE] = ACTIONS(6071), - [anon_sym_DOLLAR] = ACTIONS(6948), - [sym_raw_string] = ACTIONS(6071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), - [anon_sym_BQUOTE] = ACTIONS(6071), - [anon_sym_LT_LPAREN] = ACTIONS(6071), - [anon_sym_GT_LPAREN] = ACTIONS(6071), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6948), - [sym_word] = ACTIONS(6073), - }, - [3610] = { - [sym__concat] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6075), - [anon_sym_AMP_AMP] = ACTIONS(6075), - [anon_sym_PIPE_PIPE] = ACTIONS(6075), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6075), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), - [anon_sym_BQUOTE] = ACTIONS(6075), - [anon_sym_LT_LPAREN] = ACTIONS(6075), - [anon_sym_GT_LPAREN] = ACTIONS(6075), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6950), - [sym_word] = ACTIONS(6077), - }, - [3611] = { - [sym_file_descriptor] = ACTIONS(7032), - [sym__concat] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7721), - [anon_sym_PIPE_AMP] = ACTIONS(7032), - [anon_sym_AMP_AMP] = ACTIONS(7032), - [anon_sym_PIPE_PIPE] = ACTIONS(7032), - [anon_sym_EQ_TILDE] = ACTIONS(7721), - [anon_sym_EQ_EQ] = ACTIONS(7721), - [anon_sym_LT] = ACTIONS(7721), - [anon_sym_GT] = ACTIONS(7721), - [anon_sym_GT_GT] = ACTIONS(7032), - [anon_sym_AMP_GT] = ACTIONS(7721), - [anon_sym_AMP_GT_GT] = ACTIONS(7032), - [anon_sym_LT_AMP] = ACTIONS(7032), - [anon_sym_GT_AMP] = ACTIONS(7032), - [anon_sym_LT_LT] = ACTIONS(7721), - [anon_sym_LT_LT_DASH] = ACTIONS(7032), - [anon_sym_LT_LT_LT] = ACTIONS(7032), - [sym__special_characters] = ACTIONS(7721), - [anon_sym_DQUOTE] = ACTIONS(7032), - [anon_sym_DOLLAR] = ACTIONS(7721), - [sym_raw_string] = ACTIONS(7032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), - [anon_sym_BQUOTE] = ACTIONS(7032), - [anon_sym_LT_LPAREN] = ACTIONS(7032), - [anon_sym_GT_LPAREN] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7034), - }, - [3612] = { - [sym_file_descriptor] = ACTIONS(7036), - [sym__concat] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7723), - [anon_sym_PIPE_AMP] = ACTIONS(7036), - [anon_sym_AMP_AMP] = ACTIONS(7036), - [anon_sym_PIPE_PIPE] = ACTIONS(7036), - [anon_sym_EQ_TILDE] = ACTIONS(7723), - [anon_sym_EQ_EQ] = ACTIONS(7723), - [anon_sym_LT] = ACTIONS(7723), - [anon_sym_GT] = ACTIONS(7723), - [anon_sym_GT_GT] = ACTIONS(7036), - [anon_sym_AMP_GT] = ACTIONS(7723), - [anon_sym_AMP_GT_GT] = ACTIONS(7036), - [anon_sym_LT_AMP] = ACTIONS(7036), - [anon_sym_GT_AMP] = ACTIONS(7036), - [anon_sym_LT_LT] = ACTIONS(7723), - [anon_sym_LT_LT_DASH] = ACTIONS(7036), - [anon_sym_LT_LT_LT] = ACTIONS(7036), - [sym__special_characters] = ACTIONS(7723), - [anon_sym_DQUOTE] = ACTIONS(7036), - [anon_sym_DOLLAR] = ACTIONS(7723), - [sym_raw_string] = ACTIONS(7036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), - [anon_sym_BQUOTE] = ACTIONS(7036), - [anon_sym_LT_LPAREN] = ACTIONS(7036), - [anon_sym_GT_LPAREN] = ACTIONS(7036), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7038), - }, - [3613] = { - [sym_file_descriptor] = ACTIONS(7040), - [sym__concat] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7725), - [anon_sym_PIPE_AMP] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(7040), - [anon_sym_PIPE_PIPE] = ACTIONS(7040), - [anon_sym_EQ_TILDE] = ACTIONS(7725), - [anon_sym_EQ_EQ] = ACTIONS(7725), - [anon_sym_LT] = ACTIONS(7725), - [anon_sym_GT] = ACTIONS(7725), - [anon_sym_GT_GT] = ACTIONS(7040), - [anon_sym_AMP_GT] = ACTIONS(7725), - [anon_sym_AMP_GT_GT] = ACTIONS(7040), - [anon_sym_LT_AMP] = ACTIONS(7040), - [anon_sym_GT_AMP] = ACTIONS(7040), - [anon_sym_LT_LT] = ACTIONS(7725), - [anon_sym_LT_LT_DASH] = ACTIONS(7040), - [anon_sym_LT_LT_LT] = ACTIONS(7040), - [sym__special_characters] = ACTIONS(7725), - [anon_sym_DQUOTE] = ACTIONS(7040), - [anon_sym_DOLLAR] = ACTIONS(7725), - [sym_raw_string] = ACTIONS(7040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), - [anon_sym_BQUOTE] = ACTIONS(7040), - [anon_sym_LT_LPAREN] = ACTIONS(7040), - [anon_sym_GT_LPAREN] = ACTIONS(7040), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7042), - }, - [3614] = { - [sym_file_descriptor] = ACTIONS(4802), - [sym__concat] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_PIPE_AMP] = ACTIONS(4802), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_GT_GT] = ACTIONS(4802), - [anon_sym_AMP_GT] = ACTIONS(5860), - [anon_sym_AMP_GT_GT] = ACTIONS(4802), - [anon_sym_LT_AMP] = ACTIONS(4802), - [anon_sym_GT_AMP] = ACTIONS(4802), - [anon_sym_LT_LT] = ACTIONS(5860), - [anon_sym_LT_LT_DASH] = ACTIONS(4802), - [anon_sym_LT_LT_LT] = ACTIONS(4802), - [anon_sym_BQUOTE] = ACTIONS(4802), - [sym_comment] = ACTIONS(56), - }, - [3615] = { - [sym_file_descriptor] = ACTIONS(4808), - [sym__concat] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_PIPE_AMP] = ACTIONS(4808), - [anon_sym_AMP_AMP] = ACTIONS(4808), - [anon_sym_PIPE_PIPE] = ACTIONS(4808), - [anon_sym_LT] = ACTIONS(5862), - [anon_sym_GT] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(4808), - [anon_sym_AMP_GT] = ACTIONS(5862), - [anon_sym_AMP_GT_GT] = ACTIONS(4808), - [anon_sym_LT_AMP] = ACTIONS(4808), - [anon_sym_GT_AMP] = ACTIONS(4808), - [anon_sym_LT_LT] = ACTIONS(5862), - [anon_sym_LT_LT_DASH] = ACTIONS(4808), - [anon_sym_LT_LT_LT] = ACTIONS(4808), - [anon_sym_BQUOTE] = ACTIONS(4808), - [sym_comment] = ACTIONS(56), - }, - [3616] = { - [sym_file_descriptor] = ACTIONS(4871), - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_PIPE_AMP] = ACTIONS(4871), - [anon_sym_AMP_AMP] = ACTIONS(4871), - [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_GT_GT] = ACTIONS(4871), - [anon_sym_AMP_GT] = ACTIONS(5864), - [anon_sym_AMP_GT_GT] = ACTIONS(4871), - [anon_sym_LT_AMP] = ACTIONS(4871), - [anon_sym_GT_AMP] = ACTIONS(4871), - [anon_sym_LT_LT] = ACTIONS(5864), - [anon_sym_LT_LT_DASH] = ACTIONS(4871), - [anon_sym_LT_LT_LT] = ACTIONS(4871), - [anon_sym_BQUOTE] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - }, - [3617] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7903), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3618] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7905), - [sym_comment] = ACTIONS(56), - }, - [3619] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7907), - [sym_comment] = ACTIONS(56), - }, - [3620] = { - [anon_sym_RBRACE] = ACTIONS(7907), - [sym_comment] = ACTIONS(56), - }, - [3621] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3979), - [anon_sym_RBRACE] = ACTIONS(7909), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3622] = { - [sym_file_descriptor] = ACTIONS(4883), - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5874), - [anon_sym_PIPE_AMP] = ACTIONS(4883), - [anon_sym_AMP_AMP] = ACTIONS(4883), - [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [anon_sym_LT] = ACTIONS(5874), - [anon_sym_GT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(4883), - [anon_sym_AMP_GT] = ACTIONS(5874), - [anon_sym_AMP_GT_GT] = ACTIONS(4883), - [anon_sym_LT_AMP] = ACTIONS(4883), - [anon_sym_GT_AMP] = ACTIONS(4883), - [anon_sym_LT_LT] = ACTIONS(5874), - [anon_sym_LT_LT_DASH] = ACTIONS(4883), - [anon_sym_LT_LT_LT] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - }, - [3623] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3981), - [anon_sym_RBRACE] = ACTIONS(7911), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3624] = { - [sym_file_descriptor] = ACTIONS(4889), - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5878), - [anon_sym_PIPE_AMP] = ACTIONS(4889), - [anon_sym_AMP_AMP] = ACTIONS(4889), - [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [anon_sym_LT] = ACTIONS(5878), - [anon_sym_GT] = ACTIONS(5878), - [anon_sym_GT_GT] = ACTIONS(4889), - [anon_sym_AMP_GT] = ACTIONS(5878), - [anon_sym_AMP_GT_GT] = ACTIONS(4889), - [anon_sym_LT_AMP] = ACTIONS(4889), - [anon_sym_GT_AMP] = ACTIONS(4889), - [anon_sym_LT_LT] = ACTIONS(5878), - [anon_sym_LT_LT_DASH] = ACTIONS(4889), - [anon_sym_LT_LT_LT] = ACTIONS(4889), - [anon_sym_BQUOTE] = ACTIONS(4889), - [sym_comment] = ACTIONS(56), - }, - [3625] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3983), - [anon_sym_RBRACE] = ACTIONS(7913), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3626] = { - [sym_file_descriptor] = ACTIONS(4895), - [sym__concat] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(5882), - [anon_sym_PIPE_AMP] = ACTIONS(4895), - [anon_sym_AMP_AMP] = ACTIONS(4895), - [anon_sym_PIPE_PIPE] = ACTIONS(4895), - [anon_sym_LT] = ACTIONS(5882), - [anon_sym_GT] = ACTIONS(5882), - [anon_sym_GT_GT] = ACTIONS(4895), - [anon_sym_AMP_GT] = ACTIONS(5882), - [anon_sym_AMP_GT_GT] = ACTIONS(4895), - [anon_sym_LT_AMP] = ACTIONS(4895), - [anon_sym_GT_AMP] = ACTIONS(4895), - [anon_sym_LT_LT] = ACTIONS(5882), - [anon_sym_LT_LT_DASH] = ACTIONS(4895), - [anon_sym_LT_LT_LT] = ACTIONS(4895), - [anon_sym_BQUOTE] = ACTIONS(4895), - [sym_comment] = ACTIONS(56), - }, - [3627] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7915), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3628] = { - [sym_file_descriptor] = ACTIONS(4901), - [sym__concat] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(5886), - [anon_sym_PIPE_AMP] = ACTIONS(4901), - [anon_sym_AMP_AMP] = ACTIONS(4901), - [anon_sym_PIPE_PIPE] = ACTIONS(4901), - [anon_sym_LT] = ACTIONS(5886), - [anon_sym_GT] = ACTIONS(5886), - [anon_sym_GT_GT] = ACTIONS(4901), - [anon_sym_AMP_GT] = ACTIONS(5886), - [anon_sym_AMP_GT_GT] = ACTIONS(4901), - [anon_sym_LT_AMP] = ACTIONS(4901), - [anon_sym_GT_AMP] = ACTIONS(4901), - [anon_sym_LT_LT] = ACTIONS(5886), - [anon_sym_LT_LT_DASH] = ACTIONS(4901), - [anon_sym_LT_LT_LT] = ACTIONS(4901), - [anon_sym_BQUOTE] = ACTIONS(4901), - [sym_comment] = ACTIONS(56), - }, - [3629] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7917), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3630] = { - [sym_file_descriptor] = ACTIONS(6041), - [sym__concat] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_SEMI_SEMI] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6043), - [anon_sym_GT] = ACTIONS(6043), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_AMP_GT] = ACTIONS(6043), - [anon_sym_AMP_GT_GT] = ACTIONS(6043), - [anon_sym_LT_AMP] = ACTIONS(6043), - [anon_sym_GT_AMP] = ACTIONS(6043), - [anon_sym_LT_LT] = ACTIONS(6043), - [anon_sym_LT_LT_DASH] = ACTIONS(6043), - [anon_sym_LT_LT_LT] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6043), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - }, - [3631] = { - [sym_file_descriptor] = ACTIONS(6045), - [sym__concat] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_SEMI_SEMI] = ACTIONS(6047), - [anon_sym_PIPE_AMP] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6047), - [anon_sym_PIPE_PIPE] = ACTIONS(6047), - [anon_sym_LT] = ACTIONS(6047), - [anon_sym_GT] = ACTIONS(6047), - [anon_sym_GT_GT] = ACTIONS(6047), - [anon_sym_AMP_GT] = ACTIONS(6047), - [anon_sym_AMP_GT_GT] = ACTIONS(6047), - [anon_sym_LT_AMP] = ACTIONS(6047), - [anon_sym_GT_AMP] = ACTIONS(6047), - [anon_sym_LT_LT] = ACTIONS(6047), - [anon_sym_LT_LT_DASH] = ACTIONS(6047), - [anon_sym_LT_LT_LT] = ACTIONS(6047), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - }, - [3632] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6051), - [anon_sym_GT] = ACTIONS(6051), - [anon_sym_GT_GT] = ACTIONS(6051), - [anon_sym_AMP_GT] = ACTIONS(6051), - [anon_sym_AMP_GT_GT] = ACTIONS(6051), - [anon_sym_LT_AMP] = ACTIONS(6051), - [anon_sym_GT_AMP] = ACTIONS(6051), - [anon_sym_LT_LT] = ACTIONS(6051), - [anon_sym_LT_LT_DASH] = ACTIONS(6051), - [anon_sym_LT_LT_LT] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [3633] = { - [sym_file_descriptor] = ACTIONS(6053), - [sym__concat] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6055), - [anon_sym_GT] = ACTIONS(6055), - [anon_sym_GT_GT] = ACTIONS(6055), - [anon_sym_AMP_GT] = ACTIONS(6055), - [anon_sym_AMP_GT_GT] = ACTIONS(6055), - [anon_sym_LT_AMP] = ACTIONS(6055), - [anon_sym_GT_AMP] = ACTIONS(6055), - [anon_sym_LT_LT] = ACTIONS(6055), - [anon_sym_LT_LT_DASH] = ACTIONS(6055), - [anon_sym_LT_LT_LT] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6055), - [anon_sym_LF] = ACTIONS(6055), - [anon_sym_AMP] = ACTIONS(6055), - }, - [3634] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7919), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3635] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [anon_sym_LT] = ACTIONS(6061), - [anon_sym_GT] = ACTIONS(6061), - [anon_sym_GT_GT] = ACTIONS(6061), - [anon_sym_AMP_GT] = ACTIONS(6061), - [anon_sym_AMP_GT_GT] = ACTIONS(6061), - [anon_sym_LT_AMP] = ACTIONS(6061), - [anon_sym_GT_AMP] = ACTIONS(6061), - [anon_sym_LT_LT] = ACTIONS(6061), - [anon_sym_LT_LT_DASH] = ACTIONS(6061), - [anon_sym_LT_LT_LT] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [3636] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7921), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3637] = { - [sym_file_descriptor] = ACTIONS(6065), - [sym__concat] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6067), - [anon_sym_SEMI_SEMI] = ACTIONS(6067), - [anon_sym_PIPE_AMP] = ACTIONS(6067), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [anon_sym_LT] = ACTIONS(6067), - [anon_sym_GT] = ACTIONS(6067), - [anon_sym_GT_GT] = ACTIONS(6067), - [anon_sym_AMP_GT] = ACTIONS(6067), - [anon_sym_AMP_GT_GT] = ACTIONS(6067), - [anon_sym_LT_AMP] = ACTIONS(6067), - [anon_sym_GT_AMP] = ACTIONS(6067), - [anon_sym_LT_LT] = ACTIONS(6067), - [anon_sym_LT_LT_DASH] = ACTIONS(6067), - [anon_sym_LT_LT_LT] = ACTIONS(6067), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LF] = ACTIONS(6067), - [anon_sym_AMP] = ACTIONS(6067), - }, - [3638] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7923), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3639] = { - [sym_file_descriptor] = ACTIONS(6071), - [sym__concat] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [anon_sym_PIPE_AMP] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6073), - [anon_sym_PIPE_PIPE] = ACTIONS(6073), - [anon_sym_LT] = ACTIONS(6073), - [anon_sym_GT] = ACTIONS(6073), - [anon_sym_GT_GT] = ACTIONS(6073), - [anon_sym_AMP_GT] = ACTIONS(6073), - [anon_sym_AMP_GT_GT] = ACTIONS(6073), - [anon_sym_LT_AMP] = ACTIONS(6073), - [anon_sym_GT_AMP] = ACTIONS(6073), - [anon_sym_LT_LT] = ACTIONS(6073), - [anon_sym_LT_LT_DASH] = ACTIONS(6073), - [anon_sym_LT_LT_LT] = ACTIONS(6073), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LF] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - }, - [3640] = { - [sym_file_descriptor] = ACTIONS(6075), - [sym__concat] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_SEMI_SEMI] = ACTIONS(6077), - [anon_sym_PIPE_AMP] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6077), - [anon_sym_PIPE_PIPE] = ACTIONS(6077), - [anon_sym_LT] = ACTIONS(6077), - [anon_sym_GT] = ACTIONS(6077), - [anon_sym_GT_GT] = ACTIONS(6077), - [anon_sym_AMP_GT] = ACTIONS(6077), - [anon_sym_AMP_GT_GT] = ACTIONS(6077), - [anon_sym_LT_AMP] = ACTIONS(6077), - [anon_sym_GT_AMP] = ACTIONS(6077), - [anon_sym_LT_LT] = ACTIONS(6077), - [anon_sym_LT_LT_DASH] = ACTIONS(6077), - [anon_sym_LT_LT_LT] = ACTIONS(6077), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LF] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - }, - [3641] = { - [sym__heredoc_middle] = ACTIONS(4802), - [sym__heredoc_end] = ACTIONS(4802), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), - [sym_comment] = ACTIONS(56), - }, - [3642] = { - [sym__heredoc_middle] = ACTIONS(4808), - [sym__heredoc_end] = ACTIONS(4808), - [anon_sym_DOLLAR] = ACTIONS(5862), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), - [sym_comment] = ACTIONS(56), - }, - [3643] = { - [sym__heredoc_middle] = ACTIONS(4871), - [sym__heredoc_end] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - }, - [3644] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7925), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3645] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7927), - [sym_comment] = ACTIONS(56), - }, - [3646] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(7929), - [sym_comment] = ACTIONS(56), - }, - [3647] = { - [anon_sym_RBRACE] = ACTIONS(7929), - [sym_comment] = ACTIONS(56), - }, - [3648] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3993), - [anon_sym_RBRACE] = ACTIONS(7931), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3649] = { - [sym__heredoc_middle] = ACTIONS(4883), - [sym__heredoc_end] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - }, - [3650] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3995), - [anon_sym_RBRACE] = ACTIONS(7933), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3651] = { - [sym__heredoc_middle] = ACTIONS(4889), - [sym__heredoc_end] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), - [sym_comment] = ACTIONS(56), - }, - [3652] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(3997), - [anon_sym_RBRACE] = ACTIONS(7935), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3653] = { - [sym__heredoc_middle] = ACTIONS(4895), - [sym__heredoc_end] = ACTIONS(4895), - [anon_sym_DOLLAR] = ACTIONS(5882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), - [sym_comment] = ACTIONS(56), - }, - [3654] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7937), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3655] = { - [sym__heredoc_middle] = ACTIONS(4901), - [sym__heredoc_end] = ACTIONS(4901), - [anon_sym_DOLLAR] = ACTIONS(5886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), - [sym_comment] = ACTIONS(56), - }, - [3656] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7939), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3657] = { - [sym__concat] = ACTIONS(7032), - [anon_sym_RBRACK] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), - }, - [3658] = { - [sym__concat] = ACTIONS(7036), - [anon_sym_RBRACK] = ACTIONS(7036), - [sym_comment] = ACTIONS(56), - }, - [3659] = { - [sym__concat] = ACTIONS(7040), - [anon_sym_RBRACK] = ACTIONS(7040), - [sym_comment] = ACTIONS(56), - }, - [3660] = { - [sym__concat] = ACTIONS(6041), - [anon_sym_RPAREN] = ACTIONS(6041), - [sym__special_characters] = ACTIONS(6930), - [anon_sym_DQUOTE] = ACTIONS(6041), - [anon_sym_DOLLAR] = ACTIONS(6930), - [sym_raw_string] = ACTIONS(6041), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), - [anon_sym_BQUOTE] = ACTIONS(6041), - [anon_sym_LT_LPAREN] = ACTIONS(6041), - [anon_sym_GT_LPAREN] = ACTIONS(6041), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6930), - }, - [3661] = { - [sym__concat] = ACTIONS(6045), - [anon_sym_RPAREN] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6932), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6932), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6932), - }, - [3662] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_RPAREN] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6934), - [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), - [anon_sym_BQUOTE] = ACTIONS(6049), - [anon_sym_LT_LPAREN] = ACTIONS(6049), - [anon_sym_GT_LPAREN] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6934), - }, - [3663] = { - [sym__concat] = ACTIONS(6053), - [anon_sym_RPAREN] = ACTIONS(6053), - [sym__special_characters] = ACTIONS(6936), - [anon_sym_DQUOTE] = ACTIONS(6053), - [anon_sym_DOLLAR] = ACTIONS(6936), - [sym_raw_string] = ACTIONS(6053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), - [anon_sym_BQUOTE] = ACTIONS(6053), - [anon_sym_LT_LPAREN] = ACTIONS(6053), - [anon_sym_GT_LPAREN] = ACTIONS(6053), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6936), - }, - [3664] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7941), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3665] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_RPAREN] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6940), - [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6940), - [sym_raw_string] = ACTIONS(6059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), - [anon_sym_BQUOTE] = ACTIONS(6059), - [anon_sym_LT_LPAREN] = ACTIONS(6059), - [anon_sym_GT_LPAREN] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6940), - }, - [3666] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7943), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3667] = { - [sym__concat] = ACTIONS(6065), - [anon_sym_RPAREN] = ACTIONS(6065), - [sym__special_characters] = ACTIONS(6944), - [anon_sym_DQUOTE] = ACTIONS(6065), - [anon_sym_DOLLAR] = ACTIONS(6944), - [sym_raw_string] = ACTIONS(6065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), - [anon_sym_BQUOTE] = ACTIONS(6065), - [anon_sym_LT_LPAREN] = ACTIONS(6065), - [anon_sym_GT_LPAREN] = ACTIONS(6065), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6944), - }, - [3668] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7945), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3669] = { - [sym__concat] = ACTIONS(6071), - [anon_sym_RPAREN] = ACTIONS(6071), - [sym__special_characters] = ACTIONS(6948), - [anon_sym_DQUOTE] = ACTIONS(6071), - [anon_sym_DOLLAR] = ACTIONS(6948), - [sym_raw_string] = ACTIONS(6071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), - [anon_sym_BQUOTE] = ACTIONS(6071), - [anon_sym_LT_LPAREN] = ACTIONS(6071), - [anon_sym_GT_LPAREN] = ACTIONS(6071), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6948), - }, - [3670] = { - [sym__concat] = ACTIONS(6075), - [anon_sym_RPAREN] = ACTIONS(6075), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6075), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), - [anon_sym_BQUOTE] = ACTIONS(6075), - [anon_sym_LT_LPAREN] = ACTIONS(6075), - [anon_sym_GT_LPAREN] = ACTIONS(6075), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6950), - }, - [3671] = { - [sym_file_descriptor] = ACTIONS(7032), - [sym__concat] = ACTIONS(7032), - [sym_variable_name] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7034), - [anon_sym_SEMI_SEMI] = ACTIONS(7034), - [anon_sym_PIPE_AMP] = ACTIONS(7034), - [anon_sym_AMP_AMP] = ACTIONS(7034), - [anon_sym_PIPE_PIPE] = ACTIONS(7034), - [anon_sym_LT] = ACTIONS(7034), - [anon_sym_GT] = ACTIONS(7034), - [anon_sym_GT_GT] = ACTIONS(7034), - [anon_sym_AMP_GT] = ACTIONS(7034), - [anon_sym_AMP_GT_GT] = ACTIONS(7034), - [anon_sym_LT_AMP] = ACTIONS(7034), - [anon_sym_GT_AMP] = ACTIONS(7034), - [sym__special_characters] = ACTIONS(7034), - [anon_sym_DQUOTE] = ACTIONS(7034), - [anon_sym_DOLLAR] = ACTIONS(7034), - [sym_raw_string] = ACTIONS(7034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), - [anon_sym_BQUOTE] = ACTIONS(7034), - [anon_sym_LT_LPAREN] = ACTIONS(7034), - [anon_sym_GT_LPAREN] = ACTIONS(7034), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7034), - [anon_sym_SEMI] = ACTIONS(7034), - [anon_sym_LF] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - }, - [3672] = { - [sym_file_descriptor] = ACTIONS(7036), - [sym__concat] = ACTIONS(7036), - [sym_variable_name] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7038), - [anon_sym_SEMI_SEMI] = ACTIONS(7038), - [anon_sym_PIPE_AMP] = ACTIONS(7038), - [anon_sym_AMP_AMP] = ACTIONS(7038), - [anon_sym_PIPE_PIPE] = ACTIONS(7038), - [anon_sym_LT] = ACTIONS(7038), - [anon_sym_GT] = ACTIONS(7038), - [anon_sym_GT_GT] = ACTIONS(7038), - [anon_sym_AMP_GT] = ACTIONS(7038), - [anon_sym_AMP_GT_GT] = ACTIONS(7038), - [anon_sym_LT_AMP] = ACTIONS(7038), - [anon_sym_GT_AMP] = ACTIONS(7038), - [sym__special_characters] = ACTIONS(7038), - [anon_sym_DQUOTE] = ACTIONS(7038), - [anon_sym_DOLLAR] = ACTIONS(7038), - [sym_raw_string] = ACTIONS(7038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), - [anon_sym_BQUOTE] = ACTIONS(7038), - [anon_sym_LT_LPAREN] = ACTIONS(7038), - [anon_sym_GT_LPAREN] = ACTIONS(7038), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7038), - [anon_sym_SEMI] = ACTIONS(7038), - [anon_sym_LF] = ACTIONS(7038), - [anon_sym_AMP] = ACTIONS(7038), - }, - [3673] = { - [sym_file_descriptor] = ACTIONS(7040), - [sym__concat] = ACTIONS(7040), - [sym_variable_name] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_SEMI_SEMI] = ACTIONS(7042), - [anon_sym_PIPE_AMP] = ACTIONS(7042), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7042), - [anon_sym_LT] = ACTIONS(7042), - [anon_sym_GT] = ACTIONS(7042), - [anon_sym_GT_GT] = ACTIONS(7042), - [anon_sym_AMP_GT] = ACTIONS(7042), - [anon_sym_AMP_GT_GT] = ACTIONS(7042), - [anon_sym_LT_AMP] = ACTIONS(7042), - [anon_sym_GT_AMP] = ACTIONS(7042), - [sym__special_characters] = ACTIONS(7042), - [anon_sym_DQUOTE] = ACTIONS(7042), - [anon_sym_DOLLAR] = ACTIONS(7042), - [sym_raw_string] = ACTIONS(7042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), - [anon_sym_BQUOTE] = ACTIONS(7042), - [anon_sym_LT_LPAREN] = ACTIONS(7042), - [anon_sym_GT_LPAREN] = ACTIONS(7042), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7042), - [anon_sym_SEMI] = ACTIONS(7042), - [anon_sym_LF] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - }, - [3674] = { - [sym__concat] = ACTIONS(6041), - [anon_sym_SEMI_SEMI] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6043), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6043), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6043), - [anon_sym_SEMI] = ACTIONS(6043), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - }, - [3675] = { - [sym__concat] = ACTIONS(6045), - [anon_sym_SEMI_SEMI] = ACTIONS(6047), - [sym__special_characters] = ACTIONS(6047), - [anon_sym_DQUOTE] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6047), - [sym_raw_string] = ACTIONS(6047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), - [anon_sym_BQUOTE] = ACTIONS(6047), - [anon_sym_LT_LPAREN] = ACTIONS(6047), - [anon_sym_GT_LPAREN] = ACTIONS(6047), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6047), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - }, - [3676] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [sym__special_characters] = ACTIONS(6051), - [anon_sym_DQUOTE] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6051), - [sym_raw_string] = ACTIONS(6051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), - [anon_sym_BQUOTE] = ACTIONS(6051), - [anon_sym_LT_LPAREN] = ACTIONS(6051), - [anon_sym_GT_LPAREN] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6051), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [3677] = { - [sym__concat] = ACTIONS(6053), - [anon_sym_SEMI_SEMI] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6055), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6055), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6055), - [anon_sym_SEMI] = ACTIONS(6055), - [anon_sym_LF] = ACTIONS(6055), - [anon_sym_AMP] = ACTIONS(6055), - }, - [3678] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7947), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3679] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [sym__special_characters] = ACTIONS(6061), - [anon_sym_DQUOTE] = ACTIONS(6061), - [anon_sym_DOLLAR] = ACTIONS(6061), - [sym_raw_string] = ACTIONS(6061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), - [anon_sym_BQUOTE] = ACTIONS(6061), - [anon_sym_LT_LPAREN] = ACTIONS(6061), - [anon_sym_GT_LPAREN] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6061), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [3680] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7949), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3681] = { - [sym__concat] = ACTIONS(6065), - [anon_sym_SEMI_SEMI] = ACTIONS(6067), - [sym__special_characters] = ACTIONS(6067), - [anon_sym_DQUOTE] = ACTIONS(6067), - [anon_sym_DOLLAR] = ACTIONS(6067), - [sym_raw_string] = ACTIONS(6067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), - [anon_sym_BQUOTE] = ACTIONS(6067), - [anon_sym_LT_LPAREN] = ACTIONS(6067), - [anon_sym_GT_LPAREN] = ACTIONS(6067), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6067), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LF] = ACTIONS(6067), - [anon_sym_AMP] = ACTIONS(6067), - }, - [3682] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(7951), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3683] = { - [sym__concat] = ACTIONS(6071), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [sym__special_characters] = ACTIONS(6073), - [anon_sym_DQUOTE] = ACTIONS(6073), - [anon_sym_DOLLAR] = ACTIONS(6073), - [sym_raw_string] = ACTIONS(6073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), - [anon_sym_BQUOTE] = ACTIONS(6073), - [anon_sym_LT_LPAREN] = ACTIONS(6073), - [anon_sym_GT_LPAREN] = ACTIONS(6073), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6073), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LF] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - }, - [3684] = { - [sym__concat] = ACTIONS(6075), - [anon_sym_SEMI_SEMI] = ACTIONS(6077), - [sym__special_characters] = ACTIONS(6077), - [anon_sym_DQUOTE] = ACTIONS(6077), - [anon_sym_DOLLAR] = ACTIONS(6077), - [sym_raw_string] = ACTIONS(6077), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), - [anon_sym_BQUOTE] = ACTIONS(6077), - [anon_sym_LT_LPAREN] = ACTIONS(6077), - [anon_sym_GT_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6077), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LF] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - }, - [3685] = { - [sym_file_descriptor] = ACTIONS(1279), - [sym_variable_name] = ACTIONS(1279), - [anon_sym_esac] = ACTIONS(1281), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_SEMI_SEMI] = ACTIONS(1281), - [anon_sym_PIPE_AMP] = ACTIONS(1281), - [anon_sym_AMP_AMP] = ACTIONS(1281), - [anon_sym_PIPE_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_GT_GT] = ACTIONS(1281), - [anon_sym_AMP_GT] = ACTIONS(1281), - [anon_sym_AMP_GT_GT] = ACTIONS(1281), - [anon_sym_LT_AMP] = ACTIONS(1281), - [anon_sym_GT_AMP] = ACTIONS(1281), - [sym__special_characters] = ACTIONS(1281), - [anon_sym_DQUOTE] = ACTIONS(1281), - [anon_sym_DOLLAR] = ACTIONS(1281), - [sym_raw_string] = ACTIONS(1281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), - [anon_sym_BQUOTE] = ACTIONS(1281), - [anon_sym_LT_LPAREN] = ACTIONS(1281), - [anon_sym_GT_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1281), - [anon_sym_SEMI] = ACTIONS(1281), - [anon_sym_LF] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - }, - [3686] = { - [sym_concatenation] = STATE(661), - [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), - [aux_sym_for_statement_repeat1] = STATE(4007), - [anon_sym_RPAREN] = ACTIONS(7953), - [sym__special_characters] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1287), - [anon_sym_DOLLAR] = ACTIONS(1289), - [sym_raw_string] = ACTIONS(1291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), - [anon_sym_BQUOTE] = ACTIONS(1297), - [anon_sym_LT_LPAREN] = ACTIONS(1299), - [anon_sym_GT_LPAREN] = ACTIONS(1299), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1301), - }, - [3687] = { - [aux_sym_concatenation_repeat1] = STATE(4009), - [sym_file_descriptor] = ACTIONS(1303), - [sym__concat] = ACTIONS(7955), - [sym_variable_name] = ACTIONS(1303), - [anon_sym_esac] = ACTIONS(1307), - [anon_sym_PIPE] = ACTIONS(1307), - [anon_sym_SEMI_SEMI] = ACTIONS(1307), - [anon_sym_PIPE_AMP] = ACTIONS(1307), - [anon_sym_AMP_AMP] = ACTIONS(1307), - [anon_sym_PIPE_PIPE] = ACTIONS(1307), - [anon_sym_LT] = ACTIONS(1307), - [anon_sym_GT] = ACTIONS(1307), - [anon_sym_GT_GT] = ACTIONS(1307), - [anon_sym_AMP_GT] = ACTIONS(1307), - [anon_sym_AMP_GT_GT] = ACTIONS(1307), - [anon_sym_LT_AMP] = ACTIONS(1307), - [anon_sym_GT_AMP] = ACTIONS(1307), - [sym__special_characters] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1307), - [sym_raw_string] = ACTIONS(1307), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1307), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1307), - [anon_sym_BQUOTE] = ACTIONS(1307), - [anon_sym_LT_LPAREN] = ACTIONS(1307), - [anon_sym_GT_LPAREN] = ACTIONS(1307), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1307), - [anon_sym_LF] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1307), - }, - [3688] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(4011), - [anon_sym_DQUOTE] = ACTIONS(7957), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [3689] = { - [sym_string] = STATE(4013), - [anon_sym_DQUOTE] = ACTIONS(7414), - [anon_sym_DOLLAR] = ACTIONS(7959), - [sym_raw_string] = ACTIONS(7961), - [anon_sym_POUND] = ACTIONS(7959), - [anon_sym_DASH] = ACTIONS(7959), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7963), - [anon_sym_STAR] = ACTIONS(7959), - [anon_sym_AT] = ACTIONS(7959), - [anon_sym_QMARK] = ACTIONS(7959), - [anon_sym_0] = ACTIONS(7965), - [anon_sym__] = ACTIONS(7965), - }, - [3690] = { - [aux_sym_concatenation_repeat1] = STATE(4009), - [sym_file_descriptor] = ACTIONS(1279), - [sym__concat] = ACTIONS(7955), - [sym_variable_name] = ACTIONS(1279), - [anon_sym_esac] = ACTIONS(1281), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_SEMI_SEMI] = ACTIONS(1281), - [anon_sym_PIPE_AMP] = ACTIONS(1281), - [anon_sym_AMP_AMP] = ACTIONS(1281), - [anon_sym_PIPE_PIPE] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_GT] = ACTIONS(1281), - [anon_sym_GT_GT] = ACTIONS(1281), - [anon_sym_AMP_GT] = ACTIONS(1281), - [anon_sym_AMP_GT_GT] = ACTIONS(1281), - [anon_sym_LT_AMP] = ACTIONS(1281), - [anon_sym_GT_AMP] = ACTIONS(1281), - [sym__special_characters] = ACTIONS(1281), - [anon_sym_DQUOTE] = ACTIONS(1281), - [anon_sym_DOLLAR] = ACTIONS(1281), - [sym_raw_string] = ACTIONS(1281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), - [anon_sym_BQUOTE] = ACTIONS(1281), - [anon_sym_LT_LPAREN] = ACTIONS(1281), - [anon_sym_GT_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1281), - [anon_sym_SEMI] = ACTIONS(1281), - [anon_sym_LF] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - }, - [3691] = { - [sym_subscript] = STATE(4019), - [sym_variable_name] = ACTIONS(7967), - [anon_sym_DOLLAR] = ACTIONS(7969), - [anon_sym_POUND] = ACTIONS(7971), - [anon_sym_DASH] = ACTIONS(7969), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7973), - [anon_sym_STAR] = ACTIONS(7969), - [anon_sym_AT] = ACTIONS(7969), - [anon_sym_QMARK] = ACTIONS(7969), - [anon_sym_0] = ACTIONS(7975), - [anon_sym__] = ACTIONS(7975), - }, - [3692] = { - [sym_for_statement] = STATE(4020), - [sym_while_statement] = STATE(4020), - [sym_if_statement] = STATE(4020), - [sym_case_statement] = STATE(4020), - [sym_function_definition] = STATE(4020), - [sym_subshell] = STATE(4020), - [sym_pipeline] = STATE(4020), - [sym_list] = STATE(4020), - [sym_command] = STATE(4020), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(4020), - [sym_variable_assignment] = STATE(4021), - [sym_declaration_command] = STATE(4020), - [sym_unset_command] = STATE(4020), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [3693] = { - [sym_for_statement] = STATE(4022), - [sym_while_statement] = STATE(4022), - [sym_if_statement] = STATE(4022), - [sym_case_statement] = STATE(4022), - [sym_function_definition] = STATE(4022), - [sym_subshell] = STATE(4022), - [sym_pipeline] = STATE(4022), - [sym_list] = STATE(4022), - [sym_command] = STATE(4022), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(4022), - [sym_variable_assignment] = STATE(4023), - [sym_declaration_command] = STATE(4022), - [sym_unset_command] = STATE(4022), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [3694] = { - [sym_for_statement] = STATE(4024), - [sym_while_statement] = STATE(4024), - [sym_if_statement] = STATE(4024), - [sym_case_statement] = STATE(4024), - [sym_function_definition] = STATE(4024), - [sym_subshell] = STATE(4024), - [sym_pipeline] = STATE(4024), - [sym_list] = STATE(4024), - [sym_command] = STATE(4024), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(4024), - [sym_variable_assignment] = STATE(4025), - [sym_declaration_command] = STATE(4024), - [sym_unset_command] = STATE(4024), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [3695] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(4026), - [sym_file_descriptor] = ACTIONS(6677), - [anon_sym_esac] = ACTIONS(1351), - [anon_sym_PIPE] = ACTIONS(1351), - [anon_sym_SEMI_SEMI] = ACTIONS(1351), - [anon_sym_PIPE_AMP] = ACTIONS(1351), - [anon_sym_AMP_AMP] = ACTIONS(1351), - [anon_sym_PIPE_PIPE] = ACTIONS(1351), - [anon_sym_LT] = ACTIONS(6681), - [anon_sym_GT] = ACTIONS(6681), - [anon_sym_GT_GT] = ACTIONS(6681), - [anon_sym_AMP_GT] = ACTIONS(6681), - [anon_sym_AMP_GT_GT] = ACTIONS(6681), - [anon_sym_LT_AMP] = ACTIONS(6681), - [anon_sym_GT_AMP] = ACTIONS(6681), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6683), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_LF] = ACTIONS(1351), - [anon_sym_AMP] = ACTIONS(1351), - }, - [3696] = { - [anon_sym_RPAREN] = ACTIONS(7977), - [sym_comment] = ACTIONS(56), - }, - [3697] = { - [sym_file_redirect] = STATE(740), - [sym_file_descriptor] = ACTIONS(7979), - [anon_sym_esac] = ACTIONS(1405), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_SEMI_SEMI] = ACTIONS(1405), - [anon_sym_PIPE_AMP] = ACTIONS(1405), - [anon_sym_AMP_AMP] = ACTIONS(1405), - [anon_sym_PIPE_PIPE] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(7981), - [anon_sym_GT] = ACTIONS(7981), - [anon_sym_GT_GT] = ACTIONS(7981), - [anon_sym_AMP_GT] = ACTIONS(7981), - [anon_sym_AMP_GT_GT] = ACTIONS(7981), - [anon_sym_LT_AMP] = ACTIONS(7981), - [anon_sym_GT_AMP] = ACTIONS(7981), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_LF] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1405), - }, - [3698] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(4030), - [sym_file_descriptor] = ACTIONS(6677), - [anon_sym_esac] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_SEMI_SEMI] = ACTIONS(1609), - [anon_sym_PIPE_AMP] = ACTIONS(1609), - [anon_sym_AMP_AMP] = ACTIONS(1609), - [anon_sym_PIPE_PIPE] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(6681), - [anon_sym_GT] = ACTIONS(6681), - [anon_sym_GT_GT] = ACTIONS(6681), - [anon_sym_AMP_GT] = ACTIONS(6681), - [anon_sym_AMP_GT_GT] = ACTIONS(6681), - [anon_sym_LT_AMP] = ACTIONS(6681), - [anon_sym_GT_AMP] = ACTIONS(6681), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6683), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_LF] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1609), - }, - [3699] = { - [sym_concatenation] = STATE(4031), - [sym_string] = STATE(4034), - [sym_array] = STATE(4031), - [sym_simple_expansion] = STATE(4034), - [sym_string_expansion] = STATE(4034), - [sym_expansion] = STATE(4034), - [sym_command_substitution] = STATE(4034), - [sym_process_substitution] = STATE(4034), - [sym__empty_value] = ACTIONS(7983), - [anon_sym_LPAREN] = ACTIONS(7985), - [sym__special_characters] = ACTIONS(7987), - [anon_sym_DQUOTE] = ACTIONS(7440), - [anon_sym_DOLLAR] = ACTIONS(7989), - [sym_raw_string] = ACTIONS(7991), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7995), - [anon_sym_BQUOTE] = ACTIONS(7997), - [anon_sym_LT_LPAREN] = ACTIONS(7999), - [anon_sym_GT_LPAREN] = ACTIONS(7999), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8001), - }, - [3700] = { - [sym_variable_name] = ACTIONS(440), - [anon_sym_esac] = ACTIONS(442), - [anon_sym_PIPE] = ACTIONS(442), - [anon_sym_SEMI_SEMI] = ACTIONS(442), - [anon_sym_PIPE_AMP] = ACTIONS(442), - [anon_sym_AMP_AMP] = ACTIONS(442), - [anon_sym_PIPE_PIPE] = ACTIONS(442), - [sym__special_characters] = ACTIONS(442), - [anon_sym_DQUOTE] = ACTIONS(442), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym_raw_string] = ACTIONS(442), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(442), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(442), - [anon_sym_BQUOTE] = ACTIONS(442), - [anon_sym_LT_LPAREN] = ACTIONS(442), - [anon_sym_GT_LPAREN] = ACTIONS(442), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(442), - [sym_word] = ACTIONS(442), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_LF] = ACTIONS(442), - [anon_sym_AMP] = ACTIONS(442), - }, - [3701] = { - [sym_string] = STATE(4035), - [sym_simple_expansion] = STATE(4035), - [sym_string_expansion] = STATE(4035), - [sym_expansion] = STATE(4035), - [sym_command_substitution] = STATE(4035), - [sym_process_substitution] = STATE(4035), - [sym__special_characters] = ACTIONS(8003), - [anon_sym_DQUOTE] = ACTIONS(7440), - [anon_sym_DOLLAR] = ACTIONS(7989), - [sym_raw_string] = ACTIONS(8005), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7995), - [anon_sym_BQUOTE] = ACTIONS(7997), - [anon_sym_LT_LPAREN] = ACTIONS(7999), - [anon_sym_GT_LPAREN] = ACTIONS(7999), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8003), - }, - [3702] = { - [aux_sym_concatenation_repeat1] = STATE(4036), - [sym__concat] = ACTIONS(7436), - [sym_variable_name] = ACTIONS(790), - [anon_sym_esac] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(792), - [anon_sym_SEMI_SEMI] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [sym__special_characters] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(792), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(792), - [sym_word] = ACTIONS(792), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LF] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(792), - }, - [3703] = { - [sym__concat] = ACTIONS(794), - [sym_variable_name] = ACTIONS(794), - [anon_sym_esac] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_SEMI_SEMI] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [sym__special_characters] = ACTIONS(796), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(796), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(796), - [sym_word] = ACTIONS(796), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_LF] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - }, - [3704] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(8007), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [3705] = { - [sym__concat] = ACTIONS(826), - [sym_variable_name] = ACTIONS(826), - [anon_sym_esac] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_SEMI_SEMI] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(828), - [sym_word] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(828), - }, - [3706] = { - [sym__concat] = ACTIONS(830), - [sym_variable_name] = ACTIONS(830), - [anon_sym_esac] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [sym__special_characters] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(832), - [sym_word] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(832), - [anon_sym_AMP] = ACTIONS(832), - }, - [3707] = { - [sym__concat] = ACTIONS(834), - [sym_variable_name] = ACTIONS(834), - [anon_sym_esac] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_SEMI_SEMI] = ACTIONS(836), - [anon_sym_PIPE_AMP] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [sym__special_characters] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [sym_raw_string] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), - [anon_sym_BQUOTE] = ACTIONS(836), - [anon_sym_LT_LPAREN] = ACTIONS(836), - [anon_sym_GT_LPAREN] = ACTIONS(836), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(836), - [sym_word] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(836), - }, - [3708] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(8009), - [sym_comment] = ACTIONS(56), - }, - [3709] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4041), - [anon_sym_RBRACE] = ACTIONS(8011), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8013), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3710] = { - [sym_subscript] = STATE(4045), - [sym_variable_name] = ACTIONS(8015), - [anon_sym_DOLLAR] = ACTIONS(8017), - [anon_sym_DASH] = ACTIONS(8017), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8019), - [anon_sym_STAR] = ACTIONS(8017), - [anon_sym_AT] = ACTIONS(8017), - [anon_sym_QMARK] = ACTIONS(8017), - [anon_sym_0] = ACTIONS(8021), - [anon_sym__] = ACTIONS(8021), - }, - [3711] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4048), - [anon_sym_RBRACE] = ACTIONS(8023), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8025), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3712] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4051), - [anon_sym_RBRACE] = ACTIONS(8027), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8029), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3713] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(8031), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [3714] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(8031), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [3715] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(8031), - [sym_comment] = ACTIONS(56), - }, - [3716] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(8031), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [3717] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(8033), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [3718] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(8033), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [3719] = { - [sym_variable_assignment] = STATE(3250), - [sym_subscript] = STATE(3251), - [sym_concatenation] = STATE(3250), - [sym_string] = STATE(3244), - [sym_simple_expansion] = STATE(3244), - [sym_string_expansion] = STATE(3244), - [sym_expansion] = STATE(3244), - [sym_command_substitution] = STATE(3244), - [sym_process_substitution] = STATE(3244), - [aux_sym_declaration_command_repeat1] = STATE(3719), - [sym_variable_name] = ACTIONS(8035), - [anon_sym_esac] = ACTIONS(1758), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_SEMI_SEMI] = ACTIONS(1758), - [anon_sym_PIPE_AMP] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1758), - [anon_sym_PIPE_PIPE] = ACTIONS(1758), - [sym__special_characters] = ACTIONS(8038), - [anon_sym_DQUOTE] = ACTIONS(8041), - [anon_sym_DOLLAR] = ACTIONS(8044), - [sym_raw_string] = ACTIONS(8047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8050), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8053), - [anon_sym_BQUOTE] = ACTIONS(8056), - [anon_sym_LT_LPAREN] = ACTIONS(8059), - [anon_sym_GT_LPAREN] = ACTIONS(8059), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8062), - [sym_word] = ACTIONS(8047), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_LF] = ACTIONS(1758), - [anon_sym_AMP] = ACTIONS(1758), - }, - [3720] = { - [sym_string] = STATE(4054), - [sym_simple_expansion] = STATE(4054), - [sym_string_expansion] = STATE(4054), - [sym_expansion] = STATE(4054), - [sym_command_substitution] = STATE(4054), - [sym_process_substitution] = STATE(4054), - [sym__special_characters] = ACTIONS(8065), - [anon_sym_DQUOTE] = ACTIONS(7464), - [anon_sym_DOLLAR] = ACTIONS(8067), - [sym_raw_string] = ACTIONS(8069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8073), - [anon_sym_BQUOTE] = ACTIONS(8075), - [anon_sym_LT_LPAREN] = ACTIONS(8077), - [anon_sym_GT_LPAREN] = ACTIONS(8077), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8065), - }, - [3721] = { - [aux_sym_concatenation_repeat1] = STATE(4055), - [sym__concat] = ACTIONS(7460), - [anon_sym_esac] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(792), - [anon_sym_SEMI_SEMI] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [sym__special_characters] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(792), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(792), - [sym_word] = ACTIONS(792), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LF] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(792), - }, - [3722] = { - [sym__concat] = ACTIONS(794), - [anon_sym_esac] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_SEMI_SEMI] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [sym__special_characters] = ACTIONS(796), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(796), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(796), - [sym_word] = ACTIONS(796), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_LF] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - }, - [3723] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(8079), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [3724] = { - [sym__concat] = ACTIONS(826), - [anon_sym_esac] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_SEMI_SEMI] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(828), - [sym_word] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(828), - }, - [3725] = { - [sym__concat] = ACTIONS(830), - [anon_sym_esac] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [sym__special_characters] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(832), - [sym_word] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(832), - [anon_sym_AMP] = ACTIONS(832), - }, - [3726] = { - [sym__concat] = ACTIONS(834), - [anon_sym_esac] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_SEMI_SEMI] = ACTIONS(836), - [anon_sym_PIPE_AMP] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [sym__special_characters] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [sym_raw_string] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), - [anon_sym_BQUOTE] = ACTIONS(836), - [anon_sym_LT_LPAREN] = ACTIONS(836), - [anon_sym_GT_LPAREN] = ACTIONS(836), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(836), - [sym_word] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(836), - }, - [3727] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(8081), - [sym_comment] = ACTIONS(56), - }, - [3728] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4060), - [anon_sym_RBRACE] = ACTIONS(8083), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8085), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3729] = { - [sym_subscript] = STATE(4064), - [sym_variable_name] = ACTIONS(8087), - [anon_sym_DOLLAR] = ACTIONS(8089), - [anon_sym_DASH] = ACTIONS(8089), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8091), - [anon_sym_STAR] = ACTIONS(8089), - [anon_sym_AT] = ACTIONS(8089), - [anon_sym_QMARK] = ACTIONS(8089), - [anon_sym_0] = ACTIONS(8093), - [anon_sym__] = ACTIONS(8093), - }, - [3730] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4067), - [anon_sym_RBRACE] = ACTIONS(8095), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8097), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3731] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4070), - [anon_sym_RBRACE] = ACTIONS(8099), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8101), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3732] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(8103), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [3733] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(8103), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [3734] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(8103), - [sym_comment] = ACTIONS(56), - }, - [3735] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(8103), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [3736] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(8105), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [3737] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(8105), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [3738] = { - [sym_concatenation] = STATE(3262), - [sym_string] = STATE(3256), - [sym_simple_expansion] = STATE(3256), - [sym_string_expansion] = STATE(3256), - [sym_expansion] = STATE(3256), - [sym_command_substitution] = STATE(3256), - [sym_process_substitution] = STATE(3256), - [aux_sym_unset_command_repeat1] = STATE(3738), - [anon_sym_esac] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1829), - [anon_sym_SEMI_SEMI] = ACTIONS(1829), - [anon_sym_PIPE_AMP] = ACTIONS(1829), - [anon_sym_AMP_AMP] = ACTIONS(1829), - [anon_sym_PIPE_PIPE] = ACTIONS(1829), - [sym__special_characters] = ACTIONS(8107), - [anon_sym_DQUOTE] = ACTIONS(8110), - [anon_sym_DOLLAR] = ACTIONS(8113), - [sym_raw_string] = ACTIONS(8116), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8119), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8122), - [anon_sym_BQUOTE] = ACTIONS(8125), - [anon_sym_LT_LPAREN] = ACTIONS(8128), - [anon_sym_GT_LPAREN] = ACTIONS(8128), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8131), - [sym_word] = ACTIONS(8116), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_LF] = ACTIONS(1829), - [anon_sym_AMP] = ACTIONS(1829), - }, - [3739] = { - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(1890), - [anon_sym_esac] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [anon_sym_EQ_TILDE] = ACTIONS(1892), - [anon_sym_EQ_EQ] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_AMP_GT] = ACTIONS(1892), - [anon_sym_AMP_GT_GT] = ACTIONS(1892), - [anon_sym_LT_AMP] = ACTIONS(1892), - [anon_sym_GT_AMP] = ACTIONS(1892), - [anon_sym_LT_LT] = ACTIONS(1892), - [anon_sym_LT_LT_DASH] = ACTIONS(1892), - [anon_sym_LT_LT_LT] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [3740] = { - [aux_sym_concatenation_repeat1] = STATE(3740), - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(8134), - [anon_sym_esac] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [anon_sym_EQ_TILDE] = ACTIONS(1892), - [anon_sym_EQ_EQ] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_AMP_GT] = ACTIONS(1892), - [anon_sym_AMP_GT_GT] = ACTIONS(1892), - [anon_sym_LT_AMP] = ACTIONS(1892), - [anon_sym_GT_AMP] = ACTIONS(1892), - [anon_sym_LT_LT] = ACTIONS(1892), - [anon_sym_LT_LT_DASH] = ACTIONS(1892), - [anon_sym_LT_LT_LT] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [3741] = { - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [anon_sym_esac] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1929), - [anon_sym_PIPE_AMP] = ACTIONS(1929), - [anon_sym_AMP_AMP] = ACTIONS(1929), - [anon_sym_PIPE_PIPE] = ACTIONS(1929), - [anon_sym_EQ_TILDE] = ACTIONS(1929), - [anon_sym_EQ_EQ] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_GT_GT] = ACTIONS(1929), - [anon_sym_AMP_GT] = ACTIONS(1929), - [anon_sym_AMP_GT_GT] = ACTIONS(1929), - [anon_sym_LT_AMP] = ACTIONS(1929), - [anon_sym_GT_AMP] = ACTIONS(1929), - [anon_sym_LT_LT] = ACTIONS(1929), - [anon_sym_LT_LT_DASH] = ACTIONS(1929), - [anon_sym_LT_LT_LT] = ACTIONS(1929), - [sym__special_characters] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1929), - [sym_raw_string] = ACTIONS(1929), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), - [anon_sym_BQUOTE] = ACTIONS(1929), - [anon_sym_LT_LPAREN] = ACTIONS(1929), - [anon_sym_GT_LPAREN] = ACTIONS(1929), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1929), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - }, - [3742] = { - [sym_concatenation] = STATE(4076), - [sym_string] = STATE(4075), - [sym_simple_expansion] = STATE(4075), - [sym_string_expansion] = STATE(4075), - [sym_expansion] = STATE(4075), - [sym_command_substitution] = STATE(4075), - [sym_process_substitution] = STATE(4075), - [anon_sym_RBRACE] = ACTIONS(8137), - [sym__special_characters] = ACTIONS(8139), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(8141), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8143), - }, - [3743] = { - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(1972), - [anon_sym_esac] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(1974), - [anon_sym_EQ_TILDE] = ACTIONS(1974), - [anon_sym_EQ_EQ] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1974), - [anon_sym_GT_GT] = ACTIONS(1974), - [anon_sym_AMP_GT] = ACTIONS(1974), - [anon_sym_AMP_GT_GT] = ACTIONS(1974), - [anon_sym_LT_AMP] = ACTIONS(1974), - [anon_sym_GT_AMP] = ACTIONS(1974), - [anon_sym_LT_LT] = ACTIONS(1974), - [anon_sym_LT_LT_DASH] = ACTIONS(1974), - [anon_sym_LT_LT_LT] = ACTIONS(1974), - [sym__special_characters] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(1974), - [sym_raw_string] = ACTIONS(1974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_BQUOTE] = ACTIONS(1974), - [anon_sym_LT_LPAREN] = ACTIONS(1974), - [anon_sym_GT_LPAREN] = ACTIONS(1974), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_LF] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - }, - [3744] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8145), - }, - [3745] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8147), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3746] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(8149), - [sym_comment] = ACTIONS(56), - }, - [3747] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4082), - [anon_sym_RBRACE] = ACTIONS(8151), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8153), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3748] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4085), - [anon_sym_RBRACE] = ACTIONS(8155), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8157), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3749] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4087), - [anon_sym_RBRACE] = ACTIONS(8137), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8159), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3750] = { - [sym_file_descriptor] = ACTIONS(2026), - [sym__concat] = ACTIONS(2026), - [anon_sym_esac] = ACTIONS(2028), - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_SEMI_SEMI] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(2028), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [anon_sym_EQ_TILDE] = ACTIONS(2028), - [anon_sym_EQ_EQ] = ACTIONS(2028), - [anon_sym_LT] = ACTIONS(2028), - [anon_sym_GT] = ACTIONS(2028), - [anon_sym_GT_GT] = ACTIONS(2028), - [anon_sym_AMP_GT] = ACTIONS(2028), - [anon_sym_AMP_GT_GT] = ACTIONS(2028), - [anon_sym_LT_AMP] = ACTIONS(2028), - [anon_sym_GT_AMP] = ACTIONS(2028), - [anon_sym_LT_LT] = ACTIONS(2028), - [anon_sym_LT_LT_DASH] = ACTIONS(2028), - [anon_sym_LT_LT_LT] = ACTIONS(2028), - [sym__special_characters] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [anon_sym_DOLLAR] = ACTIONS(2028), - [sym_raw_string] = ACTIONS(2028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), - [anon_sym_BQUOTE] = ACTIONS(2028), - [anon_sym_LT_LPAREN] = ACTIONS(2028), - [anon_sym_GT_LPAREN] = ACTIONS(2028), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - }, - [3751] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8161), - }, - [3752] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8163), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3753] = { - [sym_file_descriptor] = ACTIONS(2034), - [sym__concat] = ACTIONS(2034), - [anon_sym_esac] = ACTIONS(2036), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_SEMI_SEMI] = ACTIONS(2036), - [anon_sym_PIPE_AMP] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [anon_sym_EQ_TILDE] = ACTIONS(2036), - [anon_sym_EQ_EQ] = ACTIONS(2036), - [anon_sym_LT] = ACTIONS(2036), - [anon_sym_GT] = ACTIONS(2036), - [anon_sym_GT_GT] = ACTIONS(2036), - [anon_sym_AMP_GT] = ACTIONS(2036), - [anon_sym_AMP_GT_GT] = ACTIONS(2036), - [anon_sym_LT_AMP] = ACTIONS(2036), - [anon_sym_GT_AMP] = ACTIONS(2036), - [anon_sym_LT_LT] = ACTIONS(2036), - [anon_sym_LT_LT_DASH] = ACTIONS(2036), - [anon_sym_LT_LT_LT] = ACTIONS(2036), - [sym__special_characters] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2036), - [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(182), - [sym_word] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_LF] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - }, - [3754] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8165), - }, - [3755] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8137), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3756] = { - [sym_file_descriptor] = ACTIONS(2196), - [sym__concat] = ACTIONS(2196), - [anon_sym_esac] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_SEMI_SEMI] = ACTIONS(2198), - [anon_sym_PIPE_AMP] = ACTIONS(2198), - [anon_sym_AMP_AMP] = ACTIONS(2198), - [anon_sym_PIPE_PIPE] = ACTIONS(2198), - [anon_sym_EQ_TILDE] = ACTIONS(2198), - [anon_sym_EQ_EQ] = ACTIONS(2198), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_GT] = ACTIONS(2198), - [anon_sym_GT_GT] = ACTIONS(2198), - [anon_sym_AMP_GT] = ACTIONS(2198), - [anon_sym_AMP_GT_GT] = ACTIONS(2198), - [anon_sym_LT_AMP] = ACTIONS(2198), - [anon_sym_GT_AMP] = ACTIONS(2198), - [anon_sym_LT_LT] = ACTIONS(2198), - [anon_sym_LT_LT_DASH] = ACTIONS(2198), - [anon_sym_LT_LT_LT] = ACTIONS(2198), - [sym__special_characters] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(2198), - [sym_raw_string] = ACTIONS(2198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), - [anon_sym_BQUOTE] = ACTIONS(2198), - [anon_sym_LT_LPAREN] = ACTIONS(2198), - [anon_sym_GT_LPAREN] = ACTIONS(2198), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - }, - [3757] = { - [sym_file_descriptor] = ACTIONS(2402), - [sym__concat] = ACTIONS(2402), - [anon_sym_esac] = ACTIONS(2404), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_SEMI_SEMI] = ACTIONS(2404), - [anon_sym_PIPE_AMP] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [anon_sym_EQ_TILDE] = ACTIONS(2404), - [anon_sym_EQ_EQ] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2404), - [anon_sym_GT] = ACTIONS(2404), - [anon_sym_GT_GT] = ACTIONS(2404), - [anon_sym_AMP_GT] = ACTIONS(2404), - [anon_sym_AMP_GT_GT] = ACTIONS(2404), - [anon_sym_LT_AMP] = ACTIONS(2404), - [anon_sym_GT_AMP] = ACTIONS(2404), - [anon_sym_LT_LT] = ACTIONS(2404), - [anon_sym_LT_LT_DASH] = ACTIONS(2404), - [anon_sym_LT_LT_LT] = ACTIONS(2404), - [sym__special_characters] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2404), - [anon_sym_DOLLAR] = ACTIONS(2404), - [sym_raw_string] = ACTIONS(2404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2404), - [anon_sym_LT_LPAREN] = ACTIONS(2404), - [anon_sym_GT_LPAREN] = ACTIONS(2404), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2404), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LF] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - }, - [3758] = { - [sym_compound_statement] = STATE(4091), - [anon_sym_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(56), - }, - [3759] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_esac] = ACTIONS(2406), - [anon_sym_PIPE] = ACTIONS(2406), - [anon_sym_SEMI_SEMI] = ACTIONS(2406), - [anon_sym_PIPE_AMP] = ACTIONS(2406), - [anon_sym_AMP_AMP] = ACTIONS(2406), - [anon_sym_PIPE_PIPE] = ACTIONS(2406), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(2406), - [anon_sym_LF] = ACTIONS(2406), - [anon_sym_AMP] = ACTIONS(2406), - }, - [3760] = { - [anon_sym_esac] = ACTIONS(2408), - [anon_sym_PIPE] = ACTIONS(6669), - [anon_sym_SEMI_SEMI] = ACTIONS(2408), - [anon_sym_PIPE_AMP] = ACTIONS(6669), - [anon_sym_AMP_AMP] = ACTIONS(2408), - [anon_sym_PIPE_PIPE] = ACTIONS(2408), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2408), - [anon_sym_LF] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2408), - }, - [3761] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_esac] = ACTIONS(2408), - [anon_sym_PIPE] = ACTIONS(6669), - [anon_sym_SEMI_SEMI] = ACTIONS(2408), - [anon_sym_PIPE_AMP] = ACTIONS(6669), - [anon_sym_AMP_AMP] = ACTIONS(2408), - [anon_sym_PIPE_PIPE] = ACTIONS(2408), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(2408), - [anon_sym_LF] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2408), - }, - [3762] = { - [sym_concatenation] = STATE(1203), - [sym_string] = STATE(4093), - [sym_simple_expansion] = STATE(4093), - [sym_string_expansion] = STATE(4093), - [sym_expansion] = STATE(4093), - [sym_command_substitution] = STATE(4093), - [sym_process_substitution] = STATE(4093), - [sym__special_characters] = ACTIONS(8167), - [anon_sym_DQUOTE] = ACTIONS(7538), - [anon_sym_DOLLAR] = ACTIONS(7540), - [sym_raw_string] = ACTIONS(8169), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7544), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7546), - [anon_sym_BQUOTE] = ACTIONS(7548), - [anon_sym_LT_LPAREN] = ACTIONS(7550), - [anon_sym_GT_LPAREN] = ACTIONS(7550), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8171), - }, - [3763] = { - [aux_sym_concatenation_repeat1] = STATE(3265), - [sym_file_descriptor] = ACTIONS(1557), - [sym__concat] = ACTIONS(6643), - [anon_sym_esac] = ACTIONS(1559), - [anon_sym_PIPE] = ACTIONS(1559), - [anon_sym_SEMI_SEMI] = ACTIONS(1559), - [anon_sym_PIPE_AMP] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1559), - [anon_sym_PIPE_PIPE] = ACTIONS(1559), - [anon_sym_EQ_TILDE] = ACTIONS(1559), - [anon_sym_EQ_EQ] = ACTIONS(1559), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_GT] = ACTIONS(1559), - [anon_sym_GT_GT] = ACTIONS(1559), - [anon_sym_AMP_GT] = ACTIONS(1559), - [anon_sym_AMP_GT_GT] = ACTIONS(1559), - [anon_sym_LT_AMP] = ACTIONS(1559), - [anon_sym_GT_AMP] = ACTIONS(1559), - [anon_sym_LT_LT] = ACTIONS(1559), - [anon_sym_LT_LT_DASH] = ACTIONS(1559), - [anon_sym_LT_LT_LT] = ACTIONS(1559), - [sym__special_characters] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1559), - [anon_sym_DOLLAR] = ACTIONS(1559), - [sym_raw_string] = ACTIONS(1559), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1559), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1559), - [anon_sym_BQUOTE] = ACTIONS(1559), - [anon_sym_LT_LPAREN] = ACTIONS(1559), - [anon_sym_GT_LPAREN] = ACTIONS(1559), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1559), - [anon_sym_LF] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - }, - [3764] = { - [aux_sym_concatenation_repeat1] = STATE(3265), - [sym_file_descriptor] = ACTIONS(1563), - [sym__concat] = ACTIONS(6643), - [anon_sym_esac] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1565), - [anon_sym_SEMI_SEMI] = ACTIONS(1565), - [anon_sym_PIPE_AMP] = ACTIONS(1565), - [anon_sym_AMP_AMP] = ACTIONS(1565), - [anon_sym_PIPE_PIPE] = ACTIONS(1565), - [anon_sym_EQ_TILDE] = ACTIONS(1565), - [anon_sym_EQ_EQ] = ACTIONS(1565), - [anon_sym_LT] = ACTIONS(1565), - [anon_sym_GT] = ACTIONS(1565), - [anon_sym_GT_GT] = ACTIONS(1565), - [anon_sym_AMP_GT] = ACTIONS(1565), - [anon_sym_AMP_GT_GT] = ACTIONS(1565), - [anon_sym_LT_AMP] = ACTIONS(1565), - [anon_sym_GT_AMP] = ACTIONS(1565), - [anon_sym_LT_LT] = ACTIONS(1565), - [anon_sym_LT_LT_DASH] = ACTIONS(1565), - [anon_sym_LT_LT_LT] = ACTIONS(1565), - [sym__special_characters] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(1565), - [sym_raw_string] = ACTIONS(1565), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1565), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1565), - [anon_sym_BQUOTE] = ACTIONS(1565), - [anon_sym_LT_LPAREN] = ACTIONS(1565), - [anon_sym_GT_LPAREN] = ACTIONS(1565), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_LF] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - }, - [3765] = { - [sym_file_descriptor] = ACTIONS(1563), - [anon_sym_esac] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1565), - [anon_sym_SEMI_SEMI] = ACTIONS(1565), - [anon_sym_PIPE_AMP] = ACTIONS(1565), - [anon_sym_AMP_AMP] = ACTIONS(1565), - [anon_sym_PIPE_PIPE] = ACTIONS(1565), - [anon_sym_EQ_TILDE] = ACTIONS(1565), - [anon_sym_EQ_EQ] = ACTIONS(1565), - [anon_sym_LT] = ACTIONS(1565), - [anon_sym_GT] = ACTIONS(1565), - [anon_sym_GT_GT] = ACTIONS(1565), - [anon_sym_AMP_GT] = ACTIONS(1565), - [anon_sym_AMP_GT_GT] = ACTIONS(1565), - [anon_sym_LT_AMP] = ACTIONS(1565), - [anon_sym_GT_AMP] = ACTIONS(1565), - [anon_sym_LT_LT] = ACTIONS(1565), - [anon_sym_LT_LT_DASH] = ACTIONS(1565), - [anon_sym_LT_LT_LT] = ACTIONS(1565), - [sym__special_characters] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(1565), - [sym_raw_string] = ACTIONS(1565), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1565), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1565), - [anon_sym_BQUOTE] = ACTIONS(1565), - [anon_sym_LT_LPAREN] = ACTIONS(1565), - [anon_sym_GT_LPAREN] = ACTIONS(1565), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_LF] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - }, - [3766] = { - [aux_sym_concatenation_repeat1] = STATE(4095), - [sym_file_descriptor] = ACTIONS(756), - [sym__concat] = ACTIONS(8173), - [anon_sym_esac] = ACTIONS(2418), - [anon_sym_PIPE] = 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_LT] = ACTIONS(2418), - [anon_sym_GT] = ACTIONS(2418), - [anon_sym_GT_GT] = ACTIONS(2418), - [anon_sym_AMP_GT] = ACTIONS(2418), - [anon_sym_AMP_GT_GT] = ACTIONS(2418), - [anon_sym_LT_AMP] = ACTIONS(2418), - [anon_sym_GT_AMP] = ACTIONS(2418), - [anon_sym_LT_LT] = ACTIONS(2418), - [anon_sym_LT_LT_DASH] = ACTIONS(2418), - [anon_sym_LT_LT_LT] = ACTIONS(2418), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_LF] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2418), - }, - [3767] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(4097), - [anon_sym_DQUOTE] = ACTIONS(8175), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [3768] = { - [sym_string] = STATE(4099), - [anon_sym_DQUOTE] = ACTIONS(7538), - [anon_sym_DOLLAR] = ACTIONS(8177), - [sym_raw_string] = ACTIONS(8179), - [anon_sym_POUND] = ACTIONS(8177), - [anon_sym_DASH] = ACTIONS(8177), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8181), - [anon_sym_STAR] = ACTIONS(8177), - [anon_sym_AT] = ACTIONS(8177), - [anon_sym_QMARK] = ACTIONS(8177), - [anon_sym_0] = ACTIONS(8183), - [anon_sym__] = ACTIONS(8183), - }, - [3769] = { - [aux_sym_concatenation_repeat1] = STATE(4095), - [sym_file_descriptor] = ACTIONS(772), - [sym__concat] = ACTIONS(8173), - [anon_sym_esac] = ACTIONS(2430), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_SEMI_SEMI] = ACTIONS(2430), - [anon_sym_PIPE_AMP] = ACTIONS(2430), - [anon_sym_AMP_AMP] = ACTIONS(2430), - [anon_sym_PIPE_PIPE] = ACTIONS(2430), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_GT] = ACTIONS(2430), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_AMP_GT] = ACTIONS(2430), - [anon_sym_AMP_GT_GT] = ACTIONS(2430), - [anon_sym_LT_AMP] = ACTIONS(2430), - [anon_sym_GT_AMP] = ACTIONS(2430), - [anon_sym_LT_LT] = ACTIONS(2430), - [anon_sym_LT_LT_DASH] = ACTIONS(2430), - [anon_sym_LT_LT_LT] = ACTIONS(2430), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2430), - [anon_sym_LF] = ACTIONS(2430), - [anon_sym_AMP] = ACTIONS(2430), - }, - [3770] = { - [sym_subscript] = STATE(4105), - [sym_variable_name] = ACTIONS(8185), - [anon_sym_DOLLAR] = ACTIONS(8187), - [anon_sym_POUND] = ACTIONS(8189), - [anon_sym_DASH] = ACTIONS(8187), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8191), - [anon_sym_STAR] = ACTIONS(8187), - [anon_sym_AT] = ACTIONS(8187), - [anon_sym_QMARK] = ACTIONS(8187), - [anon_sym_0] = ACTIONS(8193), - [anon_sym__] = ACTIONS(8193), - }, - [3771] = { - [sym_for_statement] = STATE(4106), - [sym_while_statement] = STATE(4106), - [sym_if_statement] = STATE(4106), - [sym_case_statement] = STATE(4106), - [sym_function_definition] = STATE(4106), - [sym_subshell] = STATE(4106), - [sym_pipeline] = STATE(4106), - [sym_list] = STATE(4106), - [sym_command] = STATE(4106), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(4106), - [sym_variable_assignment] = STATE(4107), - [sym_declaration_command] = STATE(4106), - [sym_unset_command] = STATE(4106), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [3772] = { - [sym_for_statement] = STATE(4108), - [sym_while_statement] = STATE(4108), - [sym_if_statement] = STATE(4108), - [sym_case_statement] = STATE(4108), - [sym_function_definition] = STATE(4108), - [sym_subshell] = STATE(4108), - [sym_pipeline] = STATE(4108), - [sym_list] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(4108), - [sym_variable_assignment] = STATE(4109), - [sym_declaration_command] = STATE(4108), - [sym_unset_command] = STATE(4108), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [3773] = { - [sym_for_statement] = STATE(4110), - [sym_while_statement] = STATE(4110), - [sym_if_statement] = STATE(4110), - [sym_case_statement] = STATE(4110), - [sym_function_definition] = STATE(4110), - [sym_subshell] = STATE(4110), - [sym_pipeline] = STATE(4110), - [sym_list] = STATE(4110), - [sym_command] = STATE(4110), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(4110), - [sym_variable_assignment] = STATE(4111), - [sym_declaration_command] = STATE(4110), - [sym_unset_command] = STATE(4110), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [3774] = { - [aux_sym_concatenation_repeat1] = STATE(4095), - [sym_file_descriptor] = ACTIONS(2458), - [sym__concat] = ACTIONS(8173), - [anon_sym_esac] = ACTIONS(2460), - [anon_sym_PIPE] = ACTIONS(2460), - [anon_sym_SEMI_SEMI] = ACTIONS(2460), - [anon_sym_PIPE_AMP] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2460), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_LT] = ACTIONS(2460), - [anon_sym_GT] = ACTIONS(2460), - [anon_sym_GT_GT] = ACTIONS(2460), - [anon_sym_AMP_GT] = ACTIONS(2460), - [anon_sym_AMP_GT_GT] = ACTIONS(2460), - [anon_sym_LT_AMP] = ACTIONS(2460), - [anon_sym_GT_AMP] = ACTIONS(2460), - [anon_sym_LT_LT] = ACTIONS(2460), - [anon_sym_LT_LT_DASH] = ACTIONS(2460), - [anon_sym_LT_LT_LT] = ACTIONS(2460), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_LF] = ACTIONS(2460), - [anon_sym_AMP] = ACTIONS(2460), - }, - [3775] = { - [aux_sym_concatenation_repeat1] = STATE(4095), - [sym_file_descriptor] = ACTIONS(2462), - [sym__concat] = ACTIONS(8173), - [anon_sym_esac] = ACTIONS(2464), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_SEMI_SEMI] = ACTIONS(2464), - [anon_sym_PIPE_AMP] = ACTIONS(2464), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_LT] = ACTIONS(2464), - [anon_sym_GT] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_AMP_GT] = ACTIONS(2464), - [anon_sym_AMP_GT_GT] = ACTIONS(2464), - [anon_sym_LT_AMP] = ACTIONS(2464), - [anon_sym_GT_AMP] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_LT_LT_DASH] = ACTIONS(2464), - [anon_sym_LT_LT_LT] = ACTIONS(2464), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_LF] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2464), - }, - [3776] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(3776), - [sym_file_descriptor] = ACTIONS(8195), - [anon_sym_esac] = ACTIONS(2469), - [anon_sym_PIPE] = ACTIONS(2469), - [anon_sym_SEMI_SEMI] = ACTIONS(2469), - [anon_sym_PIPE_AMP] = ACTIONS(2469), - [anon_sym_AMP_AMP] = ACTIONS(2469), - [anon_sym_PIPE_PIPE] = ACTIONS(2469), - [anon_sym_LT] = ACTIONS(8198), - [anon_sym_GT] = ACTIONS(8198), - [anon_sym_GT_GT] = ACTIONS(8198), - [anon_sym_AMP_GT] = ACTIONS(8198), - [anon_sym_AMP_GT_GT] = ACTIONS(8198), - [anon_sym_LT_AMP] = ACTIONS(8198), - [anon_sym_GT_AMP] = ACTIONS(8198), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_LT_LT_DASH] = ACTIONS(2474), - [anon_sym_LT_LT_LT] = ACTIONS(8201), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2469), - [anon_sym_LF] = ACTIONS(2469), - [anon_sym_AMP] = ACTIONS(2469), - }, - [3777] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(3776), - [sym_file_descriptor] = ACTIONS(6677), - [anon_sym_esac] = ACTIONS(2480), - [anon_sym_PIPE] = ACTIONS(2480), - [anon_sym_SEMI_SEMI] = ACTIONS(2480), - [anon_sym_PIPE_AMP] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_PIPE_PIPE] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(6681), - [anon_sym_GT] = ACTIONS(6681), - [anon_sym_GT_GT] = ACTIONS(6681), - [anon_sym_AMP_GT] = ACTIONS(6681), - [anon_sym_AMP_GT_GT] = ACTIONS(6681), - [anon_sym_LT_AMP] = ACTIONS(6681), - [anon_sym_GT_AMP] = ACTIONS(6681), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6683), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_LF] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2480), - }, - [3778] = { - [sym_concatenation] = STATE(3293), - [sym_string] = STATE(3292), - [sym_simple_expansion] = STATE(3292), - [sym_string_expansion] = STATE(3292), - [sym_expansion] = STATE(3292), - [sym_command_substitution] = STATE(3292), - [sym_process_substitution] = STATE(3292), - [aux_sym_command_repeat2] = STATE(3778), - [sym_file_descriptor] = ACTIONS(1563), - [anon_sym_esac] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1565), - [anon_sym_SEMI_SEMI] = ACTIONS(1565), - [anon_sym_PIPE_AMP] = ACTIONS(1565), - [anon_sym_AMP_AMP] = ACTIONS(1565), - [anon_sym_PIPE_PIPE] = ACTIONS(1565), - [anon_sym_EQ_TILDE] = ACTIONS(8204), - [anon_sym_EQ_EQ] = ACTIONS(8204), - [anon_sym_LT] = ACTIONS(1565), - [anon_sym_GT] = ACTIONS(1565), - [anon_sym_GT_GT] = ACTIONS(1565), - [anon_sym_AMP_GT] = ACTIONS(1565), - [anon_sym_AMP_GT_GT] = ACTIONS(1565), - [anon_sym_LT_AMP] = ACTIONS(1565), - [anon_sym_GT_AMP] = ACTIONS(1565), - [anon_sym_LT_LT] = ACTIONS(1565), - [anon_sym_LT_LT_DASH] = ACTIONS(1565), - [anon_sym_LT_LT_LT] = ACTIONS(1565), - [sym__special_characters] = ACTIONS(8207), - [anon_sym_DQUOTE] = ACTIONS(8210), - [anon_sym_DOLLAR] = ACTIONS(8213), - [sym_raw_string] = ACTIONS(8216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8222), - [anon_sym_BQUOTE] = ACTIONS(8225), - [anon_sym_LT_LPAREN] = ACTIONS(8228), - [anon_sym_GT_LPAREN] = ACTIONS(8228), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(8216), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_LF] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - }, - [3779] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_esac] = ACTIONS(8231), - [anon_sym_SEMI_SEMI] = ACTIONS(1102), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(8233), - [anon_sym_DQUOTE] = ACTIONS(8235), - [anon_sym_DOLLAR] = ACTIONS(8237), - [sym_raw_string] = ACTIONS(8235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8235), - [anon_sym_BQUOTE] = ACTIONS(8235), - [anon_sym_LT_LPAREN] = ACTIONS(8235), - [anon_sym_GT_LPAREN] = ACTIONS(8235), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8233), - }, - [3780] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(6675), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6675), - [anon_sym_LF] = ACTIONS(6675), - [anon_sym_AMP] = ACTIONS(6675), - }, - [3781] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(6675), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(6675), - [anon_sym_LF] = ACTIONS(6675), - [anon_sym_AMP] = ACTIONS(6675), - }, - [3782] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [sym_concatenation] = STATE(3293), - [sym_string] = STATE(3292), - [sym_simple_expansion] = STATE(3292), - [sym_string_expansion] = STATE(3292), - [sym_expansion] = STATE(3292), - [sym_command_substitution] = STATE(3292), - [sym_process_substitution] = STATE(3292), - [aux_sym_while_statement_repeat1] = STATE(4112), - [aux_sym_command_repeat2] = STATE(3778), - [sym_file_descriptor] = ACTIONS(6677), - [anon_sym_esac] = ACTIONS(2480), - [anon_sym_PIPE] = ACTIONS(2480), - [anon_sym_SEMI_SEMI] = ACTIONS(2480), - [anon_sym_PIPE_AMP] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_PIPE_PIPE] = ACTIONS(2480), - [anon_sym_EQ_TILDE] = ACTIONS(6679), - [anon_sym_EQ_EQ] = ACTIONS(6679), - [anon_sym_LT] = ACTIONS(6681), - [anon_sym_GT] = ACTIONS(6681), - [anon_sym_GT_GT] = ACTIONS(6681), - [anon_sym_AMP_GT] = ACTIONS(6681), - [anon_sym_AMP_GT_GT] = ACTIONS(6681), - [anon_sym_LT_AMP] = ACTIONS(6681), - [anon_sym_GT_AMP] = ACTIONS(6681), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6683), - [sym__special_characters] = ACTIONS(6685), - [anon_sym_DQUOTE] = ACTIONS(6687), - [anon_sym_DOLLAR] = ACTIONS(6689), - [sym_raw_string] = ACTIONS(6691), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6695), - [anon_sym_BQUOTE] = ACTIONS(6697), - [anon_sym_LT_LPAREN] = ACTIONS(6699), - [anon_sym_GT_LPAREN] = ACTIONS(6699), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6691), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_LF] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2480), - }, - [3783] = { - [anon_sym_esac] = ACTIONS(8231), - [sym__special_characters] = ACTIONS(8237), - [anon_sym_DQUOTE] = ACTIONS(8235), - [anon_sym_DOLLAR] = ACTIONS(8237), - [sym_raw_string] = ACTIONS(8235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8235), - [anon_sym_BQUOTE] = ACTIONS(8235), - [anon_sym_LT_LPAREN] = ACTIONS(8235), - [anon_sym_GT_LPAREN] = ACTIONS(8235), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8233), - }, - [3784] = { - [anon_sym_esac] = ACTIONS(8239), - [anon_sym_PIPE] = ACTIONS(6669), - [anon_sym_SEMI_SEMI] = ACTIONS(8241), - [anon_sym_PIPE_AMP] = ACTIONS(6669), - [anon_sym_AMP_AMP] = ACTIONS(6673), - [anon_sym_PIPE_PIPE] = ACTIONS(6673), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6675), - [anon_sym_LF] = ACTIONS(6675), - [anon_sym_AMP] = ACTIONS(6675), - }, - [3785] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_esac] = ACTIONS(8239), - [anon_sym_PIPE] = ACTIONS(6669), - [anon_sym_SEMI_SEMI] = ACTIONS(8241), - [anon_sym_PIPE_AMP] = ACTIONS(6669), - [anon_sym_AMP_AMP] = ACTIONS(6673), - [anon_sym_PIPE_PIPE] = ACTIONS(6673), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(6675), - [anon_sym_LF] = ACTIONS(6675), - [anon_sym_AMP] = ACTIONS(6675), - }, - [3786] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_esac] = ACTIONS(8243), - [anon_sym_SEMI_SEMI] = ACTIONS(1102), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(8245), - [anon_sym_DQUOTE] = ACTIONS(8247), - [anon_sym_DOLLAR] = ACTIONS(8249), - [sym_raw_string] = ACTIONS(8247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8247), - [anon_sym_BQUOTE] = ACTIONS(8247), - [anon_sym_LT_LPAREN] = ACTIONS(8247), - [anon_sym_GT_LPAREN] = ACTIONS(8247), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8245), - }, - [3787] = { - [anon_sym_esac] = ACTIONS(8243), - [sym__special_characters] = ACTIONS(8249), - [anon_sym_DQUOTE] = ACTIONS(8247), - [anon_sym_DOLLAR] = ACTIONS(8249), - [sym_raw_string] = ACTIONS(8247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8247), - [anon_sym_BQUOTE] = ACTIONS(8247), - [anon_sym_LT_LPAREN] = ACTIONS(8247), - [anon_sym_GT_LPAREN] = ACTIONS(8247), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8245), - }, - [3788] = { - [anon_sym_esac] = ACTIONS(8251), - [anon_sym_PIPE] = ACTIONS(6669), - [anon_sym_SEMI_SEMI] = ACTIONS(8253), - [anon_sym_PIPE_AMP] = ACTIONS(6669), - [anon_sym_AMP_AMP] = ACTIONS(6673), - [anon_sym_PIPE_PIPE] = ACTIONS(6673), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6675), - [anon_sym_LF] = ACTIONS(6675), - [anon_sym_AMP] = ACTIONS(6675), - }, - [3789] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_esac] = ACTIONS(8251), - [anon_sym_PIPE] = ACTIONS(6669), - [anon_sym_SEMI_SEMI] = ACTIONS(8253), - [anon_sym_PIPE_AMP] = ACTIONS(6669), - [anon_sym_AMP_AMP] = ACTIONS(6673), - [anon_sym_PIPE_PIPE] = ACTIONS(6673), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(6675), - [anon_sym_LF] = ACTIONS(6675), - [anon_sym_AMP] = ACTIONS(6675), - }, - [3790] = { - [sym__concat] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(4802), - [anon_sym_RPAREN] = ACTIONS(4802), - [sym_comment] = ACTIONS(56), - }, - [3791] = { - [sym__concat] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(4808), - [anon_sym_RPAREN] = ACTIONS(4808), - [sym_comment] = ACTIONS(56), - }, - [3792] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(4871), - [anon_sym_RPAREN] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - }, - [3793] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8255), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3794] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8257), - [sym_comment] = ACTIONS(56), - }, - [3795] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8259), - [sym_comment] = ACTIONS(56), - }, - [3796] = { - [anon_sym_RBRACE] = ACTIONS(8259), - [sym_comment] = ACTIONS(56), - }, - [3797] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4119), - [anon_sym_RBRACE] = ACTIONS(8261), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3798] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(4883), - [anon_sym_RPAREN] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - }, - [3799] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4121), - [anon_sym_RBRACE] = ACTIONS(8263), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3800] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(4889), - [anon_sym_RPAREN] = ACTIONS(4889), - [sym_comment] = ACTIONS(56), - }, - [3801] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4123), - [anon_sym_RBRACE] = ACTIONS(8265), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3802] = { - [sym__concat] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(4895), - [anon_sym_RPAREN] = ACTIONS(4895), - [sym_comment] = ACTIONS(56), - }, - [3803] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8267), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3804] = { - [sym__concat] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(4901), - [anon_sym_RPAREN] = ACTIONS(4901), - [sym_comment] = ACTIONS(56), - }, - [3805] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8269), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3806] = { - [sym__special_characters] = ACTIONS(6597), - [anon_sym_DQUOTE] = ACTIONS(6599), - [anon_sym_DOLLAR] = ACTIONS(6597), - [sym_raw_string] = ACTIONS(6599), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6599), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6599), - [anon_sym_BQUOTE] = ACTIONS(6599), - [anon_sym_LT_LPAREN] = ACTIONS(6599), - [anon_sym_GT_LPAREN] = ACTIONS(6599), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6597), - }, - [3807] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8271), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), - }, - [3808] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8271), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), - }, - [3809] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(4128), - [sym_while_statement] = STATE(4128), - [sym_if_statement] = STATE(4128), - [sym_case_statement] = STATE(4128), - [sym_function_definition] = STATE(4128), - [sym_subshell] = STATE(4128), - [sym_pipeline] = STATE(4128), - [sym_list] = STATE(4128), - [sym_command] = STATE(4128), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(4128), - [sym_variable_assignment] = STATE(4129), - [sym_declaration_command] = STATE(4128), - [sym_unset_command] = STATE(4128), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [anon_sym_esac] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1636), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [2481] = { + [sym__concat] = ACTIONS(1683), + [anon_sym_esac] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [sym__special_characters] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_BQUOTE] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1685), + [sym_word] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + }, + [2482] = { + [sym_concatenation] = STATE(2610), + [sym_string] = STATE(2609), + [sym_simple_expansion] = STATE(2609), + [sym_string_expansion] = STATE(2609), + [sym_expansion] = STATE(2609), + [sym_command_substitution] = STATE(2609), + [sym_process_substitution] = STATE(2609), + [anon_sym_RBRACE] = ACTIONS(6078), + [sym__special_characters] = ACTIONS(6080), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(6082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(6082), + }, + [2483] = { + [sym__concat] = ACTIONS(1724), + [anon_sym_esac] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1726), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1726), + [sym_word] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LF] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1726), + }, + [2484] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6084), + }, + [2485] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6086), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2486] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(6088), + [sym_comment] = ACTIONS(54), + }, + [2487] = { + [sym_concatenation] = STATE(2616), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2616), + [anon_sym_RBRACE] = ACTIONS(6090), + [anon_sym_EQ] = ACTIONS(6092), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6094), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6096), + [anon_sym_COLON] = ACTIONS(6092), + [anon_sym_COLON_QMARK] = ACTIONS(6092), + [anon_sym_COLON_DASH] = ACTIONS(6092), + [anon_sym_PERCENT] = ACTIONS(6092), + [anon_sym_DASH] = ACTIONS(6092), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2488] = { + [sym_concatenation] = STATE(2619), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2619), + [anon_sym_RBRACE] = ACTIONS(6098), + [anon_sym_EQ] = ACTIONS(6100), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6104), + [anon_sym_COLON] = ACTIONS(6100), + [anon_sym_COLON_QMARK] = ACTIONS(6100), + [anon_sym_COLON_DASH] = ACTIONS(6100), + [anon_sym_PERCENT] = ACTIONS(6100), + [anon_sym_DASH] = ACTIONS(6100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2489] = { + [sym_concatenation] = STATE(2621), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2621), + [anon_sym_RBRACE] = ACTIONS(6078), + [anon_sym_EQ] = ACTIONS(6106), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6108), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6110), + [anon_sym_COLON] = ACTIONS(6106), + [anon_sym_COLON_QMARK] = ACTIONS(6106), + [anon_sym_COLON_DASH] = ACTIONS(6106), + [anon_sym_PERCENT] = ACTIONS(6106), + [anon_sym_DASH] = ACTIONS(6106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2490] = { + [sym__concat] = ACTIONS(1790), + [anon_sym_esac] = ACTIONS(1792), + [anon_sym_PIPE] = ACTIONS(1792), + [anon_sym_SEMI_SEMI] = ACTIONS(1792), + [anon_sym_PIPE_AMP] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [sym__special_characters] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1792), + [anon_sym_DOLLAR] = ACTIONS(1792), + [sym_raw_string] = ACTIONS(1792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1792), + [anon_sym_LT_LPAREN] = ACTIONS(1792), + [anon_sym_GT_LPAREN] = ACTIONS(1792), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1792), + [sym_word] = ACTIONS(1792), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_LF] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1792), + }, + [2491] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6112), + }, + [2492] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6114), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2493] = { + [sym__concat] = ACTIONS(1798), + [anon_sym_esac] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_SEMI_SEMI] = ACTIONS(1800), + [anon_sym_PIPE_AMP] = ACTIONS(1800), + [anon_sym_AMP_AMP] = ACTIONS(1800), + [anon_sym_PIPE_PIPE] = ACTIONS(1800), + [sym__special_characters] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1800), + [sym_raw_string] = ACTIONS(1800), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1800), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1800), + [anon_sym_BQUOTE] = ACTIONS(1800), + [anon_sym_LT_LPAREN] = ACTIONS(1800), + [anon_sym_GT_LPAREN] = ACTIONS(1800), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1800), + [sym_word] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_LF] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1800), + }, + [2494] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6116), + }, + [2495] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6078), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2496] = { + [sym__concat] = ACTIONS(1936), + [anon_sym_esac] = ACTIONS(1938), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_SEMI_SEMI] = ACTIONS(1938), + [anon_sym_PIPE_AMP] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_PIPE_PIPE] = ACTIONS(1938), + [sym__special_characters] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_DOLLAR] = ACTIONS(1938), + [sym_raw_string] = ACTIONS(1938), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1938), + [anon_sym_BQUOTE] = ACTIONS(1938), + [anon_sym_LT_LPAREN] = ACTIONS(1938), + [anon_sym_GT_LPAREN] = ACTIONS(1938), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1938), + [sym_word] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1938), + }, + [2497] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_esac] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2002), + [anon_sym_BQUOTE] = ACTIONS(2002), + [anon_sym_LT_LPAREN] = ACTIONS(2002), + [anon_sym_GT_LPAREN] = ACTIONS(2002), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2002), + [sym_word] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2002), + }, + [2498] = { + [sym_file_descriptor] = ACTIONS(2672), + [sym__concat] = ACTIONS(2672), + [anon_sym_esac] = ACTIONS(2674), + [anon_sym_PIPE] = ACTIONS(2674), + [anon_sym_SEMI_SEMI] = ACTIONS(2674), + [anon_sym_PIPE_AMP] = ACTIONS(2674), + [anon_sym_AMP_AMP] = ACTIONS(2674), + [anon_sym_PIPE_PIPE] = ACTIONS(2674), + [anon_sym_EQ_TILDE] = ACTIONS(2674), + [anon_sym_EQ_EQ] = ACTIONS(2674), + [anon_sym_LT] = ACTIONS(2674), + [anon_sym_GT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_AMP_GT] = ACTIONS(2674), + [anon_sym_AMP_GT_GT] = ACTIONS(2674), + [anon_sym_LT_AMP] = ACTIONS(2674), + [anon_sym_GT_AMP] = ACTIONS(2674), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_LT_LT_DASH] = ACTIONS(2674), + [anon_sym_LT_LT_LT] = ACTIONS(2674), + [sym__special_characters] = ACTIONS(2674), + [anon_sym_DQUOTE] = ACTIONS(2674), + [anon_sym_DOLLAR] = ACTIONS(2674), + [sym_raw_string] = ACTIONS(2674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2674), + [anon_sym_BQUOTE] = ACTIONS(2674), + [anon_sym_LT_LPAREN] = ACTIONS(2674), + [anon_sym_GT_LPAREN] = ACTIONS(2674), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_LF] = ACTIONS(2672), + [anon_sym_AMP] = ACTIONS(2674), + }, + [2499] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6118), + [sym_comment] = ACTIONS(54), + }, + [2500] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6120), + [sym_comment] = ACTIONS(54), + }, + [2501] = { + [anon_sym_RBRACE] = ACTIONS(6120), + [sym_comment] = ACTIONS(54), + }, + [2502] = { + [sym_concatenation] = STATE(2628), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2628), + [anon_sym_RBRACE] = ACTIONS(6122), + [anon_sym_EQ] = ACTIONS(6124), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [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(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2503] = { + [sym_file_descriptor] = ACTIONS(2750), + [sym__concat] = ACTIONS(2750), + [anon_sym_esac] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_SEMI_SEMI] = ACTIONS(2752), + [anon_sym_PIPE_AMP] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_EQ_TILDE] = ACTIONS(2752), + [anon_sym_EQ_EQ] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2752), + [anon_sym_GT] = ACTIONS(2752), + [anon_sym_GT_GT] = ACTIONS(2752), + [anon_sym_AMP_GT] = ACTIONS(2752), + [anon_sym_AMP_GT_GT] = ACTIONS(2752), + [anon_sym_LT_AMP] = ACTIONS(2752), + [anon_sym_GT_AMP] = ACTIONS(2752), + [anon_sym_LT_LT] = ACTIONS(2752), + [anon_sym_LT_LT_DASH] = ACTIONS(2752), + [anon_sym_LT_LT_LT] = ACTIONS(2752), + [sym__special_characters] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2752), + [anon_sym_BQUOTE] = ACTIONS(2752), + [anon_sym_LT_LPAREN] = ACTIONS(2752), + [anon_sym_GT_LPAREN] = ACTIONS(2752), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2752), + }, + [2504] = { + [sym_concatenation] = STATE(2631), + [sym_string] = STATE(2630), + [sym_simple_expansion] = STATE(2630), + [sym_string_expansion] = STATE(2630), + [sym_expansion] = STATE(2630), + [sym_command_substitution] = STATE(2630), + [sym_process_substitution] = STATE(2630), + [anon_sym_RBRACE] = ACTIONS(6120), + [sym__special_characters] = ACTIONS(6128), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(6130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(6130), + }, + [2505] = { + [sym_file_descriptor] = ACTIONS(2793), + [sym__concat] = ACTIONS(2793), + [anon_sym_esac] = ACTIONS(2795), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_SEMI_SEMI] = ACTIONS(2795), + [anon_sym_PIPE_AMP] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_EQ_TILDE] = ACTIONS(2795), + [anon_sym_EQ_EQ] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2795), + [anon_sym_GT] = ACTIONS(2795), + [anon_sym_GT_GT] = ACTIONS(2795), + [anon_sym_AMP_GT] = ACTIONS(2795), + [anon_sym_AMP_GT_GT] = ACTIONS(2795), + [anon_sym_LT_AMP] = ACTIONS(2795), + [anon_sym_GT_AMP] = ACTIONS(2795), + [anon_sym_LT_LT] = ACTIONS(2795), + [anon_sym_LT_LT_DASH] = ACTIONS(2795), + [anon_sym_LT_LT_LT] = ACTIONS(2795), + [sym__special_characters] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [anon_sym_DOLLAR] = ACTIONS(2795), + [sym_raw_string] = ACTIONS(2795), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2795), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2795), + [anon_sym_BQUOTE] = ACTIONS(2795), + [anon_sym_LT_LPAREN] = ACTIONS(2795), + [anon_sym_GT_LPAREN] = ACTIONS(2795), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_LF] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2795), + }, + [2506] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6132), + }, + [2507] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6134), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2508] = { + [sym_file_descriptor] = ACTIONS(2801), + [sym__concat] = ACTIONS(2801), + [anon_sym_esac] = ACTIONS(2803), + [anon_sym_PIPE] = ACTIONS(2803), + [anon_sym_SEMI_SEMI] = ACTIONS(2803), + [anon_sym_PIPE_AMP] = ACTIONS(2803), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_PIPE_PIPE] = ACTIONS(2803), + [anon_sym_EQ_TILDE] = ACTIONS(2803), + [anon_sym_EQ_EQ] = ACTIONS(2803), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_GT] = ACTIONS(2803), + [anon_sym_GT_GT] = ACTIONS(2803), + [anon_sym_AMP_GT] = ACTIONS(2803), + [anon_sym_AMP_GT_GT] = ACTIONS(2803), + [anon_sym_LT_AMP] = ACTIONS(2803), + [anon_sym_GT_AMP] = ACTIONS(2803), + [anon_sym_LT_LT] = ACTIONS(2803), + [anon_sym_LT_LT_DASH] = ACTIONS(2803), + [anon_sym_LT_LT_LT] = ACTIONS(2803), + [sym__special_characters] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2803), + [sym_raw_string] = ACTIONS(2803), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2803), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2803), + [anon_sym_BQUOTE] = ACTIONS(2803), + [anon_sym_LT_LPAREN] = ACTIONS(2803), + [anon_sym_GT_LPAREN] = ACTIONS(2803), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_LF] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + }, + [2509] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6136), + }, + [2510] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6138), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2511] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6140), + }, + [2512] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6120), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2513] = { + [sym_concatenation] = STATE(2638), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2638), + [anon_sym_RBRACE] = ACTIONS(6142), + [anon_sym_EQ] = ACTIONS(6144), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6146), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6144), + [anon_sym_COLON_QMARK] = ACTIONS(6144), + [anon_sym_COLON_DASH] = ACTIONS(6144), + [anon_sym_PERCENT] = ACTIONS(6144), + [anon_sym_DASH] = ACTIONS(6144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2514] = { + [sym_file_descriptor] = ACTIONS(2817), + [sym__concat] = ACTIONS(2817), + [anon_sym_esac] = ACTIONS(2819), + [anon_sym_PIPE] = ACTIONS(2819), + [anon_sym_SEMI_SEMI] = ACTIONS(2819), + [anon_sym_PIPE_AMP] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_PIPE_PIPE] = ACTIONS(2819), + [anon_sym_EQ_TILDE] = ACTIONS(2819), + [anon_sym_EQ_EQ] = ACTIONS(2819), + [anon_sym_LT] = ACTIONS(2819), + [anon_sym_GT] = ACTIONS(2819), + [anon_sym_GT_GT] = ACTIONS(2819), + [anon_sym_AMP_GT] = ACTIONS(2819), + [anon_sym_AMP_GT_GT] = ACTIONS(2819), + [anon_sym_LT_AMP] = ACTIONS(2819), + [anon_sym_GT_AMP] = ACTIONS(2819), + [anon_sym_LT_LT] = ACTIONS(2819), + [anon_sym_LT_LT_DASH] = ACTIONS(2819), + [anon_sym_LT_LT_LT] = ACTIONS(2819), + [sym__special_characters] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [anon_sym_DOLLAR] = ACTIONS(2819), + [sym_raw_string] = ACTIONS(2819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2819), + [anon_sym_BQUOTE] = ACTIONS(2819), + [anon_sym_LT_LPAREN] = ACTIONS(2819), + [anon_sym_GT_LPAREN] = ACTIONS(2819), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_LF] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2819), + }, + [2515] = { + [sym_concatenation] = STATE(2640), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2640), + [anon_sym_RBRACE] = ACTIONS(6148), + [anon_sym_EQ] = ACTIONS(6150), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6150), + [anon_sym_COLON_QMARK] = ACTIONS(6150), + [anon_sym_COLON_DASH] = ACTIONS(6150), + [anon_sym_PERCENT] = ACTIONS(6150), + [anon_sym_DASH] = ACTIONS(6150), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2516] = { + [sym_file_redirect] = STATE(1369), + [sym_file_descriptor] = ACTIONS(5656), + [anon_sym_esac] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_SEMI_SEMI] = ACTIONS(2340), + [anon_sym_PIPE_AMP] = ACTIONS(2340), + [anon_sym_AMP_AMP] = ACTIONS(2340), + [anon_sym_PIPE_PIPE] = ACTIONS(2340), + [anon_sym_LT] = ACTIONS(5658), + [anon_sym_GT] = ACTIONS(5658), + [anon_sym_GT_GT] = ACTIONS(5658), + [anon_sym_AMP_GT] = ACTIONS(5658), + [anon_sym_AMP_GT_GT] = ACTIONS(5658), + [anon_sym_LT_AMP] = ACTIONS(5658), + [anon_sym_GT_AMP] = ACTIONS(5658), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_LF] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2340), + }, + [2517] = { + [aux_sym_concatenation_repeat1] = STATE(2520), + [sym_file_descriptor] = ACTIONS(1061), + [sym__concat] = ACTIONS(5872), + [anon_sym_esac] = ACTIONS(1063), + [anon_sym_PIPE] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1063), + [anon_sym_LT_AMP] = ACTIONS(1063), + [anon_sym_GT_AMP] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [anon_sym_LT_LT_LT] = ACTIONS(1063), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1063), + [anon_sym_LF] = ACTIONS(1061), + [anon_sym_AMP] = ACTIONS(1063), + }, + [2518] = { + [aux_sym_concatenation_repeat1] = STATE(2520), + [sym_file_descriptor] = ACTIONS(1065), + [sym__concat] = ACTIONS(5872), + [anon_sym_esac] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1067), + [anon_sym_SEMI_SEMI] = ACTIONS(1067), + [anon_sym_PIPE_AMP] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1067), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1067), + [anon_sym_GT] = ACTIONS(1067), + [anon_sym_GT_GT] = ACTIONS(1067), + [anon_sym_AMP_GT] = ACTIONS(1067), + [anon_sym_AMP_GT_GT] = ACTIONS(1067), + [anon_sym_LT_AMP] = ACTIONS(1067), + [anon_sym_GT_AMP] = ACTIONS(1067), + [anon_sym_LT_LT] = ACTIONS(1067), + [anon_sym_LT_LT_DASH] = ACTIONS(1067), + [anon_sym_LT_LT_LT] = ACTIONS(1067), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1067), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + }, + [2519] = { + [sym_string] = STATE(2641), + [sym_simple_expansion] = STATE(2641), + [sym_string_expansion] = STATE(2641), + [sym_expansion] = STATE(2641), + [sym_command_substitution] = STATE(2641), + [sym_process_substitution] = STATE(2641), + [sym__special_characters] = ACTIONS(6154), + [anon_sym_DQUOTE] = ACTIONS(5492), + [anon_sym_DOLLAR] = ACTIONS(5494), + [sym_raw_string] = ACTIONS(6154), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5498), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5500), + [anon_sym_BQUOTE] = ACTIONS(5502), + [anon_sym_LT_LPAREN] = ACTIONS(5504), + [anon_sym_GT_LPAREN] = ACTIONS(5504), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(6154), + }, + [2520] = { + [aux_sym_concatenation_repeat1] = STATE(2642), + [sym_file_descriptor] = ACTIONS(688), + [sym__concat] = ACTIONS(5872), + [anon_sym_esac] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(690), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_LT_LT_DASH] = ACTIONS(690), + [anon_sym_LT_LT_LT] = ACTIONS(690), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), + }, + [2521] = { + [sym_file_descriptor] = ACTIONS(692), + [sym__concat] = ACTIONS(692), + [anon_sym_esac] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_SEMI_SEMI] = ACTIONS(694), + [anon_sym_PIPE_AMP] = ACTIONS(694), + [anon_sym_AMP_AMP] = ACTIONS(694), + [anon_sym_PIPE_PIPE] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_AMP_GT] = ACTIONS(694), + [anon_sym_AMP_GT_GT] = ACTIONS(694), + [anon_sym_LT_AMP] = ACTIONS(694), + [anon_sym_GT_AMP] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_LT_LT_DASH] = ACTIONS(694), + [anon_sym_LT_LT_LT] = ACTIONS(694), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), + }, + [2522] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(6156), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [2523] = { + [sym_file_descriptor] = ACTIONS(722), + [sym__concat] = ACTIONS(722), + [anon_sym_esac] = ACTIONS(724), + [anon_sym_PIPE] = ACTIONS(724), + [anon_sym_SEMI_SEMI] = ACTIONS(724), + [anon_sym_PIPE_AMP] = ACTIONS(724), + [anon_sym_AMP_AMP] = ACTIONS(724), + [anon_sym_PIPE_PIPE] = ACTIONS(724), + [anon_sym_LT] = ACTIONS(724), + [anon_sym_GT] = ACTIONS(724), + [anon_sym_GT_GT] = ACTIONS(724), + [anon_sym_AMP_GT] = ACTIONS(724), + [anon_sym_AMP_GT_GT] = ACTIONS(724), + [anon_sym_LT_AMP] = ACTIONS(724), + [anon_sym_GT_AMP] = ACTIONS(724), + [anon_sym_LT_LT] = ACTIONS(724), + [anon_sym_LT_LT_DASH] = ACTIONS(724), + [anon_sym_LT_LT_LT] = ACTIONS(724), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LF] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(724), + }, + [2524] = { + [sym_file_descriptor] = ACTIONS(726), + [sym__concat] = ACTIONS(726), + [anon_sym_esac] = ACTIONS(728), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_SEMI_SEMI] = ACTIONS(728), + [anon_sym_PIPE_AMP] = ACTIONS(728), + [anon_sym_AMP_AMP] = ACTIONS(728), + [anon_sym_PIPE_PIPE] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(728), + [anon_sym_GT] = ACTIONS(728), + [anon_sym_GT_GT] = ACTIONS(728), + [anon_sym_AMP_GT] = ACTIONS(728), + [anon_sym_AMP_GT_GT] = ACTIONS(728), + [anon_sym_LT_AMP] = ACTIONS(728), + [anon_sym_GT_AMP] = ACTIONS(728), + [anon_sym_LT_LT] = ACTIONS(728), + [anon_sym_LT_LT_DASH] = ACTIONS(728), + [anon_sym_LT_LT_LT] = ACTIONS(728), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(728), + [anon_sym_LF] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(728), + }, + [2525] = { + [sym_file_descriptor] = ACTIONS(730), + [sym__concat] = ACTIONS(730), + [anon_sym_esac] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(732), + [anon_sym_SEMI_SEMI] = ACTIONS(732), + [anon_sym_PIPE_AMP] = ACTIONS(732), + [anon_sym_AMP_AMP] = ACTIONS(732), + [anon_sym_PIPE_PIPE] = ACTIONS(732), + [anon_sym_LT] = ACTIONS(732), + [anon_sym_GT] = ACTIONS(732), + [anon_sym_GT_GT] = ACTIONS(732), + [anon_sym_AMP_GT] = ACTIONS(732), + [anon_sym_AMP_GT_GT] = ACTIONS(732), + [anon_sym_LT_AMP] = ACTIONS(732), + [anon_sym_GT_AMP] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(732), + [anon_sym_LT_LT_DASH] = ACTIONS(732), + [anon_sym_LT_LT_LT] = ACTIONS(732), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(732), + [anon_sym_LF] = ACTIONS(730), + [anon_sym_AMP] = ACTIONS(732), + }, + [2526] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(6158), + [sym_comment] = ACTIONS(54), + }, + [2527] = { + [sym_concatenation] = STATE(2647), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2647), + [anon_sym_RBRACE] = ACTIONS(6160), + [anon_sym_EQ] = ACTIONS(6162), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6166), + [anon_sym_COLON] = ACTIONS(6162), + [anon_sym_COLON_QMARK] = ACTIONS(6162), + [anon_sym_COLON_DASH] = ACTIONS(6162), + [anon_sym_PERCENT] = ACTIONS(6162), + [anon_sym_DASH] = ACTIONS(6162), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2528] = { + [sym_subscript] = STATE(2651), + [sym_variable_name] = ACTIONS(6168), + [anon_sym_DOLLAR] = ACTIONS(6170), + [anon_sym_DASH] = ACTIONS(6170), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6172), + [anon_sym_STAR] = ACTIONS(6170), + [anon_sym_AT] = ACTIONS(6170), + [anon_sym_QMARK] = ACTIONS(6170), + [anon_sym_0] = ACTIONS(6174), + [anon_sym__] = ACTIONS(6174), + }, + [2529] = { + [sym_concatenation] = STATE(2654), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2654), + [anon_sym_RBRACE] = ACTIONS(6176), + [anon_sym_EQ] = ACTIONS(6178), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6180), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6182), + [anon_sym_COLON] = ACTIONS(6178), + [anon_sym_COLON_QMARK] = ACTIONS(6178), + [anon_sym_COLON_DASH] = ACTIONS(6178), + [anon_sym_PERCENT] = ACTIONS(6178), + [anon_sym_DASH] = ACTIONS(6178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2530] = { + [sym_concatenation] = STATE(2657), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2657), + [anon_sym_RBRACE] = ACTIONS(6184), + [anon_sym_EQ] = ACTIONS(6186), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6190), + [anon_sym_COLON] = ACTIONS(6186), + [anon_sym_COLON_QMARK] = ACTIONS(6186), + [anon_sym_COLON_DASH] = ACTIONS(6186), + [anon_sym_PERCENT] = ACTIONS(6186), + [anon_sym_DASH] = ACTIONS(6186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2531] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(6192), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [2532] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(6192), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [2533] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(6192), + [sym_comment] = ACTIONS(54), + }, + [2534] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(6192), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [2535] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(6194), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [2536] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(6194), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [2537] = { + [sym_file_redirect] = STATE(2368), + [sym_heredoc_redirect] = STATE(2368), + [sym_herestring_redirect] = STATE(2368), + [aux_sym_while_statement_repeat1] = STATE(2368), + [sym_file_descriptor] = ACTIONS(5013), + [anon_sym_esac] = ACTIONS(3204), + [anon_sym_PIPE] = ACTIONS(3204), + [anon_sym_SEMI_SEMI] = ACTIONS(3204), + [anon_sym_PIPE_AMP] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_PIPE_PIPE] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_GT_GT] = ACTIONS(5017), + [anon_sym_AMP_GT] = ACTIONS(5017), + [anon_sym_AMP_GT_GT] = ACTIONS(5017), + [anon_sym_LT_AMP] = ACTIONS(5017), + [anon_sym_GT_AMP] = ACTIONS(5017), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_LT_LT_DASH] = ACTIONS(330), + [anon_sym_LT_LT_LT] = ACTIONS(5019), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3204), + [anon_sym_LF] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3204), + }, + [2538] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_esac] = ACTIONS(6196), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(6198), + [anon_sym_DQUOTE] = ACTIONS(6200), + [anon_sym_DOLLAR] = ACTIONS(6198), + [sym_raw_string] = ACTIONS(6200), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6200), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6200), + [anon_sym_BQUOTE] = ACTIONS(6200), + [anon_sym_LT_LPAREN] = ACTIONS(6200), + [anon_sym_GT_LPAREN] = ACTIONS(6200), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(6198), + }, + [2539] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_esac] = ACTIONS(6202), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(6204), + [anon_sym_DQUOTE] = ACTIONS(6206), + [anon_sym_DOLLAR] = ACTIONS(6204), + [sym_raw_string] = ACTIONS(6206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6206), + [anon_sym_BQUOTE] = ACTIONS(6206), + [anon_sym_LT_LPAREN] = ACTIONS(6206), + [anon_sym_GT_LPAREN] = ACTIONS(6206), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(6204), + }, + [2540] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(5476), + [anon_sym_DQUOTE] = ACTIONS(5478), + [anon_sym_DOLLAR] = ACTIONS(5476), + [sym_raw_string] = ACTIONS(5478), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5478), + [anon_sym_BQUOTE] = ACTIONS(5478), + [anon_sym_LT_LPAREN] = ACTIONS(5478), + [anon_sym_GT_LPAREN] = ACTIONS(5478), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5476), + }, + [2541] = { + [sym__special_characters] = ACTIONS(5478), + [anon_sym_DQUOTE] = ACTIONS(5478), + [anon_sym_DOLLAR] = ACTIONS(5476), + [sym_raw_string] = ACTIONS(5478), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5478), + [anon_sym_BQUOTE] = ACTIONS(5478), + [anon_sym_LT_LPAREN] = ACTIONS(5478), + [anon_sym_GT_LPAREN] = ACTIONS(5478), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5478), + }, + [2542] = { + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(6208), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LF] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(316), + }, + [2543] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(6208), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LF] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(316), + }, + [2544] = { + [sym__terminated_statement] = STATE(2544), + [sym_for_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_function_definition] = STATE(25), + [sym_subshell] = STATE(25), + [sym_pipeline] = STATE(25), + [sym_list] = STATE(25), + [sym_command] = STATE(25), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(25), + [sym_variable_assignment] = STATE(27), + [sym_declaration_command] = STATE(25), + [sym_unset_command] = STATE(25), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), [sym_string] = STATE(18), [sym_simple_expansion] = STATE(18), [sym_string_expansion] = STATE(18), [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(4130), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(8273), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [aux_sym_program_repeat1] = STATE(2544), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(972), + [sym_variable_name] = ACTIONS(975), + [anon_sym_for] = ACTIONS(980), + [anon_sym_while] = ACTIONS(983), + [anon_sym_if] = ACTIONS(986), + [anon_sym_case] = ACTIONS(989), + [anon_sym_SEMI_SEMI] = ACTIONS(978), + [anon_sym_function] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1001), + [anon_sym_declare] = ACTIONS(1004), + [anon_sym_typeset] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1004), + [anon_sym_readonly] = ACTIONS(1004), + [anon_sym_local] = ACTIONS(1004), + [anon_sym_unset] = ACTIONS(1007), + [anon_sym_unsetenv] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_GT_GT] = ACTIONS(1013), + [anon_sym_AMP_GT] = ACTIONS(1010), + [anon_sym_AMP_GT_GT] = ACTIONS(1013), + [anon_sym_LT_AMP] = ACTIONS(1013), + [anon_sym_GT_AMP] = ACTIONS(1013), + [sym__special_characters] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1022), + [sym_raw_string] = ACTIONS(1025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1031), + [anon_sym_BQUOTE] = ACTIONS(1034), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1040), }, - [3810] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(4128), - [sym_while_statement] = STATE(4128), - [sym_if_statement] = STATE(4128), - [sym_case_statement] = STATE(4128), - [sym_function_definition] = STATE(4128), - [sym_subshell] = STATE(4128), - [sym_pipeline] = STATE(4128), - [sym_list] = STATE(4128), - [sym_command] = STATE(4128), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(4128), - [sym_variable_assignment] = STATE(4129), - [sym_declaration_command] = STATE(4128), - [sym_unset_command] = STATE(4128), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [2545] = { + [sym__terminated_statement] = STATE(2544), + [sym_for_statement] = STATE(2662), + [sym_while_statement] = STATE(2662), + [sym_if_statement] = STATE(2662), + [sym_case_statement] = STATE(2662), + [sym_function_definition] = STATE(2662), + [sym_subshell] = STATE(2662), + [sym_pipeline] = STATE(2662), + [sym_list] = STATE(2662), + [sym_command] = STATE(2662), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(2662), + [sym_variable_assignment] = STATE(2663), + [sym_declaration_command] = STATE(2662), + [sym_unset_command] = STATE(2662), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), [sym_string] = STATE(18), [sym_simple_expansion] = STATE(18), [sym_string_expansion] = STATE(18), [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(4131), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(8273), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [aux_sym_program_repeat1] = STATE(2544), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_SEMI_SEMI] = ACTIONS(6210), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), }, - [3811] = { - [sym__special_characters] = ACTIONS(6715), - [anon_sym_DQUOTE] = ACTIONS(6717), - [anon_sym_DOLLAR] = ACTIONS(6715), - [sym_raw_string] = ACTIONS(6717), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6717), - [anon_sym_BQUOTE] = ACTIONS(6717), - [anon_sym_LT_LPAREN] = ACTIONS(6717), - [anon_sym_GT_LPAREN] = ACTIONS(6717), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6715), + [2546] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(5516), + [anon_sym_DQUOTE] = ACTIONS(5518), + [anon_sym_DOLLAR] = ACTIONS(5516), + [sym_raw_string] = ACTIONS(5518), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5518), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5518), + [anon_sym_BQUOTE] = ACTIONS(5518), + [anon_sym_LT_LPAREN] = ACTIONS(5518), + [anon_sym_GT_LPAREN] = ACTIONS(5518), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5516), }, - [3812] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8275), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), + [2547] = { + [sym__special_characters] = ACTIONS(5518), + [anon_sym_DQUOTE] = ACTIONS(5518), + [anon_sym_DOLLAR] = ACTIONS(5516), + [sym_raw_string] = ACTIONS(5518), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5518), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5518), + [anon_sym_BQUOTE] = ACTIONS(5518), + [anon_sym_LT_LPAREN] = ACTIONS(5518), + [anon_sym_GT_LPAREN] = ACTIONS(5518), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5518), }, - [3813] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8275), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), + [2548] = { + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(6212), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LF] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(316), }, - [3814] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(4134), - [sym_while_statement] = STATE(4134), - [sym_if_statement] = STATE(4134), - [sym_case_statement] = STATE(4134), - [sym_function_definition] = STATE(4134), - [sym_subshell] = STATE(4134), - [sym_pipeline] = STATE(4134), - [sym_list] = STATE(4134), - [sym_command] = STATE(4134), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(4134), - [sym_variable_assignment] = STATE(4135), - [sym_declaration_command] = STATE(4134), - [sym_unset_command] = STATE(4134), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), + [2549] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(6212), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LF] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(316), + }, + [2550] = { + [sym__terminated_statement] = STATE(2544), + [sym_for_statement] = STATE(2666), + [sym_while_statement] = STATE(2666), + [sym_if_statement] = STATE(2666), + [sym_case_statement] = STATE(2666), + [sym_function_definition] = STATE(2666), + [sym_subshell] = STATE(2666), + [sym_pipeline] = STATE(2666), + [sym_list] = STATE(2666), + [sym_command] = STATE(2666), + [sym_command_name] = STATE(26), + [sym_bracket_command] = STATE(2666), + [sym_variable_assignment] = STATE(2667), + [sym_declaration_command] = STATE(2666), + [sym_unset_command] = STATE(2666), + [sym_subscript] = STATE(28), + [sym_file_redirect] = STATE(31), + [sym_concatenation] = STATE(29), [sym_string] = STATE(18), [sym_simple_expansion] = STATE(18), [sym_string_expansion] = STATE(18), [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(4130), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(8277), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [3815] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(4134), - [sym_while_statement] = STATE(4134), - [sym_if_statement] = STATE(4134), - [sym_case_statement] = STATE(4134), - [sym_function_definition] = STATE(4134), - [sym_subshell] = STATE(4134), - [sym_pipeline] = STATE(4134), - [sym_list] = STATE(4134), - [sym_command] = STATE(4134), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(4134), - [sym_variable_assignment] = STATE(4135), - [sym_declaration_command] = STATE(4134), - [sym_unset_command] = STATE(4134), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(4136), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(8277), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [3816] = { - [sym__concat] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [anon_sym_PIPE_AMP] = ACTIONS(4804), - [anon_sym_AMP_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4804), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4804), - [anon_sym_LF] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4804), - }, - [3817] = { - [sym__concat] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_SEMI_SEMI] = ACTIONS(4810), - [anon_sym_PIPE_AMP] = ACTIONS(4810), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LF] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4810), - }, - [3818] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [3819] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8279), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3820] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8281), - [sym_comment] = ACTIONS(56), - }, - [3821] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8283), - [sym_comment] = ACTIONS(56), - }, - [3822] = { - [anon_sym_RBRACE] = ACTIONS(8283), - [sym_comment] = ACTIONS(56), - }, - [3823] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4141), - [anon_sym_RBRACE] = ACTIONS(8285), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3824] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = 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_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [3825] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4143), - [anon_sym_RBRACE] = ACTIONS(8287), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3826] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [3827] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4145), - [anon_sym_RBRACE] = ACTIONS(8289), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3828] = { - [sym__concat] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_SEMI_SEMI] = ACTIONS(4897), - [anon_sym_PIPE_AMP] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LF] = ACTIONS(4897), - [anon_sym_AMP] = ACTIONS(4897), - }, - [3829] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8291), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3830] = { - [sym__concat] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(4903), - [anon_sym_SEMI_SEMI] = ACTIONS(4903), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LF] = ACTIONS(4903), - [anon_sym_AMP] = ACTIONS(4903), - }, - [3831] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8293), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3832] = { - [sym_file_descriptor] = ACTIONS(6041), - [sym__concat] = ACTIONS(6041), - [sym_variable_name] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_RPAREN] = ACTIONS(6043), - [anon_sym_SEMI_SEMI] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6043), - [anon_sym_GT] = ACTIONS(6043), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_AMP_GT] = ACTIONS(6043), - [anon_sym_AMP_GT_GT] = ACTIONS(6043), - [anon_sym_LT_AMP] = ACTIONS(6043), - [anon_sym_GT_AMP] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6043), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6043), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6043), - [anon_sym_SEMI] = ACTIONS(6043), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - }, - [3833] = { - [sym_file_descriptor] = ACTIONS(6045), - [sym__concat] = ACTIONS(6045), - [sym_variable_name] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_RPAREN] = ACTIONS(6047), - [anon_sym_SEMI_SEMI] = ACTIONS(6047), - [anon_sym_PIPE_AMP] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6047), - [anon_sym_PIPE_PIPE] = ACTIONS(6047), - [anon_sym_LT] = ACTIONS(6047), - [anon_sym_GT] = ACTIONS(6047), - [anon_sym_GT_GT] = ACTIONS(6047), - [anon_sym_AMP_GT] = ACTIONS(6047), - [anon_sym_AMP_GT_GT] = ACTIONS(6047), - [anon_sym_LT_AMP] = ACTIONS(6047), - [anon_sym_GT_AMP] = ACTIONS(6047), - [sym__special_characters] = ACTIONS(6047), - [anon_sym_DQUOTE] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6047), - [sym_raw_string] = ACTIONS(6047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), - [anon_sym_BQUOTE] = ACTIONS(6047), - [anon_sym_LT_LPAREN] = ACTIONS(6047), - [anon_sym_GT_LPAREN] = ACTIONS(6047), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6047), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - }, - [3834] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [sym_variable_name] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6051), - [anon_sym_GT] = ACTIONS(6051), - [anon_sym_GT_GT] = ACTIONS(6051), - [anon_sym_AMP_GT] = ACTIONS(6051), - [anon_sym_AMP_GT_GT] = ACTIONS(6051), - [anon_sym_LT_AMP] = ACTIONS(6051), - [anon_sym_GT_AMP] = ACTIONS(6051), - [sym__special_characters] = ACTIONS(6051), - [anon_sym_DQUOTE] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6051), - [sym_raw_string] = ACTIONS(6051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), - [anon_sym_BQUOTE] = ACTIONS(6051), - [anon_sym_LT_LPAREN] = ACTIONS(6051), - [anon_sym_GT_LPAREN] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6051), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [3835] = { - [sym_file_descriptor] = ACTIONS(6053), - [sym__concat] = ACTIONS(6053), - [sym_variable_name] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6055), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6055), - [anon_sym_GT] = ACTIONS(6055), - [anon_sym_GT_GT] = ACTIONS(6055), - [anon_sym_AMP_GT] = ACTIONS(6055), - [anon_sym_AMP_GT_GT] = ACTIONS(6055), - [anon_sym_LT_AMP] = ACTIONS(6055), - [anon_sym_GT_AMP] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6055), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6055), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6055), - [anon_sym_SEMI] = ACTIONS(6055), - [anon_sym_LF] = ACTIONS(6055), - [anon_sym_AMP] = ACTIONS(6055), - }, - [3836] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8295), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3837] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [sym_variable_name] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_RPAREN] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [anon_sym_LT] = ACTIONS(6061), - [anon_sym_GT] = ACTIONS(6061), - [anon_sym_GT_GT] = ACTIONS(6061), - [anon_sym_AMP_GT] = ACTIONS(6061), - [anon_sym_AMP_GT_GT] = ACTIONS(6061), - [anon_sym_LT_AMP] = ACTIONS(6061), - [anon_sym_GT_AMP] = ACTIONS(6061), - [sym__special_characters] = ACTIONS(6061), - [anon_sym_DQUOTE] = ACTIONS(6061), - [anon_sym_DOLLAR] = ACTIONS(6061), - [sym_raw_string] = ACTIONS(6061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), - [anon_sym_BQUOTE] = ACTIONS(6061), - [anon_sym_LT_LPAREN] = ACTIONS(6061), - [anon_sym_GT_LPAREN] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6061), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [3838] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8297), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3839] = { - [sym_file_descriptor] = ACTIONS(6065), - [sym__concat] = ACTIONS(6065), - [sym_variable_name] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6067), - [anon_sym_RPAREN] = ACTIONS(6067), - [anon_sym_SEMI_SEMI] = ACTIONS(6067), - [anon_sym_PIPE_AMP] = ACTIONS(6067), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [anon_sym_LT] = ACTIONS(6067), - [anon_sym_GT] = ACTIONS(6067), - [anon_sym_GT_GT] = ACTIONS(6067), - [anon_sym_AMP_GT] = ACTIONS(6067), - [anon_sym_AMP_GT_GT] = ACTIONS(6067), - [anon_sym_LT_AMP] = ACTIONS(6067), - [anon_sym_GT_AMP] = ACTIONS(6067), - [sym__special_characters] = ACTIONS(6067), - [anon_sym_DQUOTE] = ACTIONS(6067), - [anon_sym_DOLLAR] = ACTIONS(6067), - [sym_raw_string] = ACTIONS(6067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), - [anon_sym_BQUOTE] = ACTIONS(6067), - [anon_sym_LT_LPAREN] = ACTIONS(6067), - [anon_sym_GT_LPAREN] = ACTIONS(6067), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6067), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LF] = ACTIONS(6067), - [anon_sym_AMP] = ACTIONS(6067), - }, - [3840] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8299), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3841] = { - [sym_file_descriptor] = ACTIONS(6071), - [sym__concat] = ACTIONS(6071), - [sym_variable_name] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_RPAREN] = ACTIONS(6073), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [anon_sym_PIPE_AMP] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6073), - [anon_sym_PIPE_PIPE] = ACTIONS(6073), - [anon_sym_LT] = ACTIONS(6073), - [anon_sym_GT] = ACTIONS(6073), - [anon_sym_GT_GT] = ACTIONS(6073), - [anon_sym_AMP_GT] = ACTIONS(6073), - [anon_sym_AMP_GT_GT] = ACTIONS(6073), - [anon_sym_LT_AMP] = ACTIONS(6073), - [anon_sym_GT_AMP] = ACTIONS(6073), - [sym__special_characters] = ACTIONS(6073), - [anon_sym_DQUOTE] = ACTIONS(6073), - [anon_sym_DOLLAR] = ACTIONS(6073), - [sym_raw_string] = ACTIONS(6073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), - [anon_sym_BQUOTE] = ACTIONS(6073), - [anon_sym_LT_LPAREN] = ACTIONS(6073), - [anon_sym_GT_LPAREN] = ACTIONS(6073), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6073), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LF] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - }, - [3842] = { - [sym_file_descriptor] = ACTIONS(6075), - [sym__concat] = ACTIONS(6075), - [sym_variable_name] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_RPAREN] = ACTIONS(6077), - [anon_sym_SEMI_SEMI] = ACTIONS(6077), - [anon_sym_PIPE_AMP] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6077), - [anon_sym_PIPE_PIPE] = ACTIONS(6077), - [anon_sym_LT] = ACTIONS(6077), - [anon_sym_GT] = ACTIONS(6077), - [anon_sym_GT_GT] = ACTIONS(6077), - [anon_sym_AMP_GT] = ACTIONS(6077), - [anon_sym_AMP_GT_GT] = ACTIONS(6077), - [anon_sym_LT_AMP] = ACTIONS(6077), - [anon_sym_GT_AMP] = ACTIONS(6077), - [sym__special_characters] = ACTIONS(6077), - [anon_sym_DQUOTE] = ACTIONS(6077), - [anon_sym_DOLLAR] = ACTIONS(6077), - [sym_raw_string] = ACTIONS(6077), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), - [anon_sym_BQUOTE] = ACTIONS(6077), - [anon_sym_LT_LPAREN] = ACTIONS(6077), - [anon_sym_GT_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6077), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LF] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - }, - [3843] = { - [sym__concat] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_RPAREN] = ACTIONS(3295), - [anon_sym_SEMI_SEMI] = ACTIONS(3295), - [anon_sym_PIPE_AMP] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - }, - [3844] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8301), - [sym_comment] = ACTIONS(56), - }, - [3845] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8303), - [sym_comment] = ACTIONS(56), - }, - [3846] = { - [anon_sym_RBRACE] = ACTIONS(8303), - [sym_comment] = ACTIONS(56), - }, - [3847] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4154), - [anon_sym_RBRACE] = ACTIONS(8305), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3848] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_RPAREN] = ACTIONS(3359), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_PIPE_AMP] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - }, - [3849] = { - [sym_concatenation] = STATE(4157), - [sym_string] = STATE(4156), - [sym_simple_expansion] = STATE(4156), - [sym_string_expansion] = STATE(4156), - [sym_expansion] = STATE(4156), - [sym_command_substitution] = STATE(4156), - [sym_process_substitution] = STATE(4156), - [anon_sym_RBRACE] = ACTIONS(8303), - [sym__special_characters] = ACTIONS(8307), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(8309), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8311), - }, - [3850] = { - [sym__concat] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_RPAREN] = ACTIONS(3404), - [anon_sym_SEMI_SEMI] = ACTIONS(3404), - [anon_sym_PIPE_AMP] = ACTIONS(3404), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3404), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - }, - [3851] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8313), - }, - [3852] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8315), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3853] = { - [sym__concat] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_RPAREN] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - }, - [3854] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8317), - }, - [3855] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8319), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3856] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8321), - }, - [3857] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8303), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3858] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4164), - [anon_sym_RBRACE] = ACTIONS(8323), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3859] = { - [sym__concat] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_RPAREN] = ACTIONS(3424), - [anon_sym_SEMI_SEMI] = ACTIONS(3424), - [anon_sym_PIPE_AMP] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_PIPE_PIPE] = ACTIONS(3424), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - }, - [3860] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4166), - [anon_sym_RBRACE] = ACTIONS(8325), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3861] = { - [sym__concat] = ACTIONS(7032), - [sym_variable_name] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7034), - [anon_sym_RPAREN] = ACTIONS(7034), - [anon_sym_SEMI_SEMI] = ACTIONS(7034), - [anon_sym_PIPE_AMP] = ACTIONS(7034), - [anon_sym_AMP_AMP] = ACTIONS(7034), - [anon_sym_PIPE_PIPE] = ACTIONS(7034), - [sym__special_characters] = ACTIONS(7034), - [anon_sym_DQUOTE] = ACTIONS(7034), - [anon_sym_DOLLAR] = ACTIONS(7034), - [sym_raw_string] = ACTIONS(7034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), - [anon_sym_BQUOTE] = ACTIONS(7034), - [anon_sym_LT_LPAREN] = ACTIONS(7034), - [anon_sym_GT_LPAREN] = ACTIONS(7034), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7034), - [sym_word] = ACTIONS(7034), - [anon_sym_SEMI] = ACTIONS(7034), - [anon_sym_LF] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - }, - [3862] = { - [sym__concat] = ACTIONS(7036), - [sym_variable_name] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7038), - [anon_sym_RPAREN] = ACTIONS(7038), - [anon_sym_SEMI_SEMI] = ACTIONS(7038), - [anon_sym_PIPE_AMP] = ACTIONS(7038), - [anon_sym_AMP_AMP] = ACTIONS(7038), - [anon_sym_PIPE_PIPE] = ACTIONS(7038), - [sym__special_characters] = ACTIONS(7038), - [anon_sym_DQUOTE] = ACTIONS(7038), - [anon_sym_DOLLAR] = ACTIONS(7038), - [sym_raw_string] = ACTIONS(7038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), - [anon_sym_BQUOTE] = ACTIONS(7038), - [anon_sym_LT_LPAREN] = ACTIONS(7038), - [anon_sym_GT_LPAREN] = ACTIONS(7038), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7038), - [sym_word] = ACTIONS(7038), - [anon_sym_SEMI] = ACTIONS(7038), - [anon_sym_LF] = ACTIONS(7038), - [anon_sym_AMP] = ACTIONS(7038), - }, - [3863] = { - [sym__concat] = ACTIONS(7040), - [sym_variable_name] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_RPAREN] = ACTIONS(7042), - [anon_sym_SEMI_SEMI] = ACTIONS(7042), - [anon_sym_PIPE_AMP] = ACTIONS(7042), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7042), - [sym__special_characters] = ACTIONS(7042), - [anon_sym_DQUOTE] = ACTIONS(7042), - [anon_sym_DOLLAR] = ACTIONS(7042), - [sym_raw_string] = ACTIONS(7042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), - [anon_sym_BQUOTE] = ACTIONS(7042), - [anon_sym_LT_LPAREN] = ACTIONS(7042), - [anon_sym_GT_LPAREN] = ACTIONS(7042), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7042), - [sym_word] = ACTIONS(7042), - [anon_sym_SEMI] = ACTIONS(7042), - [anon_sym_LF] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - }, - [3864] = { - [sym__concat] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7034), - [anon_sym_RPAREN] = ACTIONS(7034), - [anon_sym_SEMI_SEMI] = ACTIONS(7034), - [anon_sym_PIPE_AMP] = ACTIONS(7034), - [anon_sym_AMP_AMP] = ACTIONS(7034), - [anon_sym_PIPE_PIPE] = ACTIONS(7034), - [sym__special_characters] = ACTIONS(7034), - [anon_sym_DQUOTE] = ACTIONS(7034), - [anon_sym_DOLLAR] = ACTIONS(7034), - [sym_raw_string] = ACTIONS(7034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), - [anon_sym_BQUOTE] = ACTIONS(7034), - [anon_sym_LT_LPAREN] = ACTIONS(7034), - [anon_sym_GT_LPAREN] = ACTIONS(7034), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7034), - [sym_word] = ACTIONS(7034), - [anon_sym_SEMI] = ACTIONS(7034), - [anon_sym_LF] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - }, - [3865] = { - [sym__concat] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7038), - [anon_sym_RPAREN] = ACTIONS(7038), - [anon_sym_SEMI_SEMI] = ACTIONS(7038), - [anon_sym_PIPE_AMP] = ACTIONS(7038), - [anon_sym_AMP_AMP] = ACTIONS(7038), - [anon_sym_PIPE_PIPE] = ACTIONS(7038), - [sym__special_characters] = ACTIONS(7038), - [anon_sym_DQUOTE] = ACTIONS(7038), - [anon_sym_DOLLAR] = ACTIONS(7038), - [sym_raw_string] = ACTIONS(7038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), - [anon_sym_BQUOTE] = ACTIONS(7038), - [anon_sym_LT_LPAREN] = ACTIONS(7038), - [anon_sym_GT_LPAREN] = ACTIONS(7038), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7038), - [sym_word] = ACTIONS(7038), - [anon_sym_SEMI] = ACTIONS(7038), - [anon_sym_LF] = ACTIONS(7038), - [anon_sym_AMP] = ACTIONS(7038), - }, - [3866] = { - [sym__concat] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_RPAREN] = ACTIONS(7042), - [anon_sym_SEMI_SEMI] = ACTIONS(7042), - [anon_sym_PIPE_AMP] = ACTIONS(7042), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7042), - [sym__special_characters] = ACTIONS(7042), - [anon_sym_DQUOTE] = ACTIONS(7042), - [anon_sym_DOLLAR] = ACTIONS(7042), - [sym_raw_string] = ACTIONS(7042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), - [anon_sym_BQUOTE] = ACTIONS(7042), - [anon_sym_LT_LPAREN] = ACTIONS(7042), - [anon_sym_GT_LPAREN] = ACTIONS(7042), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7042), - [sym_word] = ACTIONS(7042), - [anon_sym_SEMI] = ACTIONS(7042), - [anon_sym_LF] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - }, - [3867] = { - [sym_file_descriptor] = ACTIONS(6041), - [sym__concat] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_RPAREN] = ACTIONS(6043), - [anon_sym_SEMI_SEMI] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6043), - [anon_sym_GT] = ACTIONS(6043), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_AMP_GT] = ACTIONS(6043), - [anon_sym_AMP_GT_GT] = ACTIONS(6043), - [anon_sym_LT_AMP] = ACTIONS(6043), - [anon_sym_GT_AMP] = ACTIONS(6043), - [anon_sym_LT_LT] = ACTIONS(6043), - [anon_sym_LT_LT_DASH] = ACTIONS(6043), - [anon_sym_LT_LT_LT] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6043), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - }, - [3868] = { - [sym_file_descriptor] = ACTIONS(6045), - [sym__concat] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_RPAREN] = ACTIONS(6047), - [anon_sym_SEMI_SEMI] = ACTIONS(6047), - [anon_sym_PIPE_AMP] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6047), - [anon_sym_PIPE_PIPE] = ACTIONS(6047), - [anon_sym_LT] = ACTIONS(6047), - [anon_sym_GT] = ACTIONS(6047), - [anon_sym_GT_GT] = ACTIONS(6047), - [anon_sym_AMP_GT] = ACTIONS(6047), - [anon_sym_AMP_GT_GT] = ACTIONS(6047), - [anon_sym_LT_AMP] = ACTIONS(6047), - [anon_sym_GT_AMP] = ACTIONS(6047), - [anon_sym_LT_LT] = ACTIONS(6047), - [anon_sym_LT_LT_DASH] = ACTIONS(6047), - [anon_sym_LT_LT_LT] = ACTIONS(6047), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - }, - [3869] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6051), - [anon_sym_GT] = ACTIONS(6051), - [anon_sym_GT_GT] = ACTIONS(6051), - [anon_sym_AMP_GT] = ACTIONS(6051), - [anon_sym_AMP_GT_GT] = ACTIONS(6051), - [anon_sym_LT_AMP] = ACTIONS(6051), - [anon_sym_GT_AMP] = ACTIONS(6051), - [anon_sym_LT_LT] = ACTIONS(6051), - [anon_sym_LT_LT_DASH] = ACTIONS(6051), - [anon_sym_LT_LT_LT] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [3870] = { - [sym_file_descriptor] = ACTIONS(6053), - [sym__concat] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6055), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6055), - [anon_sym_GT] = ACTIONS(6055), - [anon_sym_GT_GT] = ACTIONS(6055), - [anon_sym_AMP_GT] = ACTIONS(6055), - [anon_sym_AMP_GT_GT] = ACTIONS(6055), - [anon_sym_LT_AMP] = ACTIONS(6055), - [anon_sym_GT_AMP] = ACTIONS(6055), - [anon_sym_LT_LT] = ACTIONS(6055), - [anon_sym_LT_LT_DASH] = ACTIONS(6055), - [anon_sym_LT_LT_LT] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6055), - [anon_sym_LF] = ACTIONS(6055), - [anon_sym_AMP] = ACTIONS(6055), - }, - [3871] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8327), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3872] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_RPAREN] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [anon_sym_LT] = ACTIONS(6061), - [anon_sym_GT] = ACTIONS(6061), - [anon_sym_GT_GT] = ACTIONS(6061), - [anon_sym_AMP_GT] = ACTIONS(6061), - [anon_sym_AMP_GT_GT] = ACTIONS(6061), - [anon_sym_LT_AMP] = ACTIONS(6061), - [anon_sym_GT_AMP] = ACTIONS(6061), - [anon_sym_LT_LT] = ACTIONS(6061), - [anon_sym_LT_LT_DASH] = ACTIONS(6061), - [anon_sym_LT_LT_LT] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [3873] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8329), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3874] = { - [sym_file_descriptor] = ACTIONS(6065), - [sym__concat] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6067), - [anon_sym_RPAREN] = ACTIONS(6067), - [anon_sym_SEMI_SEMI] = ACTIONS(6067), - [anon_sym_PIPE_AMP] = ACTIONS(6067), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [anon_sym_LT] = ACTIONS(6067), - [anon_sym_GT] = ACTIONS(6067), - [anon_sym_GT_GT] = ACTIONS(6067), - [anon_sym_AMP_GT] = ACTIONS(6067), - [anon_sym_AMP_GT_GT] = ACTIONS(6067), - [anon_sym_LT_AMP] = ACTIONS(6067), - [anon_sym_GT_AMP] = ACTIONS(6067), - [anon_sym_LT_LT] = ACTIONS(6067), - [anon_sym_LT_LT_DASH] = ACTIONS(6067), - [anon_sym_LT_LT_LT] = ACTIONS(6067), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LF] = ACTIONS(6067), - [anon_sym_AMP] = ACTIONS(6067), - }, - [3875] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8331), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3876] = { - [sym_file_descriptor] = ACTIONS(6071), - [sym__concat] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_RPAREN] = ACTIONS(6073), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [anon_sym_PIPE_AMP] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6073), - [anon_sym_PIPE_PIPE] = ACTIONS(6073), - [anon_sym_LT] = ACTIONS(6073), - [anon_sym_GT] = ACTIONS(6073), - [anon_sym_GT_GT] = ACTIONS(6073), - [anon_sym_AMP_GT] = ACTIONS(6073), - [anon_sym_AMP_GT_GT] = ACTIONS(6073), - [anon_sym_LT_AMP] = ACTIONS(6073), - [anon_sym_GT_AMP] = ACTIONS(6073), - [anon_sym_LT_LT] = ACTIONS(6073), - [anon_sym_LT_LT_DASH] = ACTIONS(6073), - [anon_sym_LT_LT_LT] = ACTIONS(6073), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LF] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - }, - [3877] = { - [sym_file_descriptor] = ACTIONS(6075), - [sym__concat] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_RPAREN] = ACTIONS(6077), - [anon_sym_SEMI_SEMI] = ACTIONS(6077), - [anon_sym_PIPE_AMP] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6077), - [anon_sym_PIPE_PIPE] = ACTIONS(6077), - [anon_sym_LT] = ACTIONS(6077), - [anon_sym_GT] = ACTIONS(6077), - [anon_sym_GT_GT] = ACTIONS(6077), - [anon_sym_AMP_GT] = ACTIONS(6077), - [anon_sym_AMP_GT_GT] = ACTIONS(6077), - [anon_sym_LT_AMP] = ACTIONS(6077), - [anon_sym_GT_AMP] = ACTIONS(6077), - [anon_sym_LT_LT] = ACTIONS(6077), - [anon_sym_LT_LT_DASH] = ACTIONS(6077), - [anon_sym_LT_LT_LT] = ACTIONS(6077), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LF] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - }, - [3878] = { - [sym__concat] = ACTIONS(6041), - [anon_sym_RBRACE] = ACTIONS(6041), - [sym_comment] = ACTIONS(56), - }, - [3879] = { - [sym__concat] = ACTIONS(6045), - [anon_sym_RBRACE] = ACTIONS(6045), - [sym_comment] = ACTIONS(56), - }, - [3880] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_RBRACE] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - }, - [3881] = { - [sym__concat] = ACTIONS(6053), - [anon_sym_RBRACE] = ACTIONS(6053), - [sym_comment] = ACTIONS(56), - }, - [3882] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8333), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3883] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_RBRACE] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - }, - [3884] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8335), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3885] = { - [sym__concat] = ACTIONS(6065), - [anon_sym_RBRACE] = ACTIONS(6065), - [sym_comment] = ACTIONS(56), - }, - [3886] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8337), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3887] = { - [sym__concat] = ACTIONS(6071), - [anon_sym_RBRACE] = ACTIONS(6071), - [sym_comment] = ACTIONS(56), - }, - [3888] = { - [sym__concat] = ACTIONS(6075), - [anon_sym_RBRACE] = ACTIONS(6075), - [sym_comment] = ACTIONS(56), - }, - [3889] = { - [sym__concat] = ACTIONS(7032), - [anon_sym_RBRACE] = ACTIONS(7032), - [anon_sym_EQ] = ACTIONS(7721), - [sym__special_characters] = ACTIONS(7034), - [anon_sym_DQUOTE] = ACTIONS(7032), - [anon_sym_DOLLAR] = ACTIONS(7721), - [sym_raw_string] = ACTIONS(7032), - [anon_sym_POUND] = ACTIONS(7032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), - [anon_sym_COLON] = ACTIONS(7721), - [anon_sym_COLON_QMARK] = ACTIONS(7721), - [anon_sym_COLON_DASH] = ACTIONS(7721), - [anon_sym_PERCENT] = ACTIONS(7721), - [anon_sym_DASH] = ACTIONS(7721), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), - [anon_sym_BQUOTE] = ACTIONS(7032), - [anon_sym_LT_LPAREN] = ACTIONS(7032), - [anon_sym_GT_LPAREN] = ACTIONS(7032), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7034), - }, - [3890] = { - [sym__concat] = ACTIONS(7036), - [anon_sym_RBRACE] = ACTIONS(7036), - [anon_sym_EQ] = ACTIONS(7723), - [sym__special_characters] = ACTIONS(7038), - [anon_sym_DQUOTE] = ACTIONS(7036), - [anon_sym_DOLLAR] = ACTIONS(7723), - [sym_raw_string] = ACTIONS(7036), - [anon_sym_POUND] = ACTIONS(7036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), - [anon_sym_COLON] = ACTIONS(7723), - [anon_sym_COLON_QMARK] = ACTIONS(7723), - [anon_sym_COLON_DASH] = ACTIONS(7723), - [anon_sym_PERCENT] = ACTIONS(7723), - [anon_sym_DASH] = ACTIONS(7723), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), - [anon_sym_BQUOTE] = ACTIONS(7036), - [anon_sym_LT_LPAREN] = ACTIONS(7036), - [anon_sym_GT_LPAREN] = ACTIONS(7036), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7038), - }, - [3891] = { - [sym__concat] = ACTIONS(7040), - [anon_sym_RBRACE] = ACTIONS(7040), - [anon_sym_EQ] = ACTIONS(7725), - [sym__special_characters] = ACTIONS(7042), - [anon_sym_DQUOTE] = ACTIONS(7040), - [anon_sym_DOLLAR] = ACTIONS(7725), - [sym_raw_string] = ACTIONS(7040), - [anon_sym_POUND] = ACTIONS(7040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), - [anon_sym_COLON] = ACTIONS(7725), - [anon_sym_COLON_QMARK] = ACTIONS(7725), - [anon_sym_COLON_DASH] = ACTIONS(7725), - [anon_sym_PERCENT] = ACTIONS(7725), - [anon_sym_DASH] = ACTIONS(7725), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), - [anon_sym_BQUOTE] = ACTIONS(7040), - [anon_sym_LT_LPAREN] = ACTIONS(7040), - [anon_sym_GT_LPAREN] = ACTIONS(7040), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7042), - }, - [3892] = { - [sym_file_descriptor] = ACTIONS(6041), - [sym__concat] = ACTIONS(6041), - [sym_variable_name] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6930), - [anon_sym_RPAREN] = ACTIONS(6041), - [anon_sym_PIPE_AMP] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6041), - [anon_sym_PIPE_PIPE] = ACTIONS(6041), - [anon_sym_LT] = ACTIONS(6930), - [anon_sym_GT] = ACTIONS(6930), - [anon_sym_GT_GT] = ACTIONS(6041), - [anon_sym_AMP_GT] = ACTIONS(6930), - [anon_sym_AMP_GT_GT] = ACTIONS(6041), - [anon_sym_LT_AMP] = ACTIONS(6041), - [anon_sym_GT_AMP] = ACTIONS(6041), - [sym__special_characters] = ACTIONS(6930), - [anon_sym_DQUOTE] = ACTIONS(6041), - [anon_sym_DOLLAR] = ACTIONS(6930), - [sym_raw_string] = ACTIONS(6041), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), - [anon_sym_BQUOTE] = ACTIONS(6041), - [anon_sym_LT_LPAREN] = ACTIONS(6041), - [anon_sym_GT_LPAREN] = ACTIONS(6041), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6930), - }, - [3893] = { - [sym_file_descriptor] = ACTIONS(6045), - [sym__concat] = ACTIONS(6045), - [sym_variable_name] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6932), - [anon_sym_RPAREN] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_LT] = ACTIONS(6932), - [anon_sym_GT] = ACTIONS(6932), - [anon_sym_GT_GT] = ACTIONS(6045), - [anon_sym_AMP_GT] = ACTIONS(6932), - [anon_sym_AMP_GT_GT] = ACTIONS(6045), - [anon_sym_LT_AMP] = ACTIONS(6045), - [anon_sym_GT_AMP] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6932), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6932), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6932), - }, - [3894] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [sym_variable_name] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_RPAREN] = ACTIONS(6049), - [anon_sym_PIPE_AMP] = ACTIONS(6049), - [anon_sym_AMP_AMP] = ACTIONS(6049), - [anon_sym_PIPE_PIPE] = ACTIONS(6049), - [anon_sym_LT] = ACTIONS(6934), - [anon_sym_GT] = ACTIONS(6934), - [anon_sym_GT_GT] = ACTIONS(6049), - [anon_sym_AMP_GT] = ACTIONS(6934), - [anon_sym_AMP_GT_GT] = ACTIONS(6049), - [anon_sym_LT_AMP] = ACTIONS(6049), - [anon_sym_GT_AMP] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6934), - [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), - [anon_sym_BQUOTE] = ACTIONS(6049), - [anon_sym_LT_LPAREN] = ACTIONS(6049), - [anon_sym_GT_LPAREN] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6934), - }, - [3895] = { - [sym_file_descriptor] = ACTIONS(6053), - [sym__concat] = ACTIONS(6053), - [sym_variable_name] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6936), - [anon_sym_RPAREN] = ACTIONS(6053), - [anon_sym_PIPE_AMP] = ACTIONS(6053), - [anon_sym_AMP_AMP] = ACTIONS(6053), - [anon_sym_PIPE_PIPE] = ACTIONS(6053), - [anon_sym_LT] = ACTIONS(6936), - [anon_sym_GT] = ACTIONS(6936), - [anon_sym_GT_GT] = ACTIONS(6053), - [anon_sym_AMP_GT] = ACTIONS(6936), - [anon_sym_AMP_GT_GT] = ACTIONS(6053), - [anon_sym_LT_AMP] = ACTIONS(6053), - [anon_sym_GT_AMP] = ACTIONS(6053), - [sym__special_characters] = ACTIONS(6936), - [anon_sym_DQUOTE] = ACTIONS(6053), - [anon_sym_DOLLAR] = ACTIONS(6936), - [sym_raw_string] = ACTIONS(6053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), - [anon_sym_BQUOTE] = ACTIONS(6053), - [anon_sym_LT_LPAREN] = ACTIONS(6053), - [anon_sym_GT_LPAREN] = ACTIONS(6053), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6936), - }, - [3896] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8339), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3897] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [sym_variable_name] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6940), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_PIPE_AMP] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6940), - [anon_sym_GT] = ACTIONS(6940), - [anon_sym_GT_GT] = ACTIONS(6059), - [anon_sym_AMP_GT] = ACTIONS(6940), - [anon_sym_AMP_GT_GT] = ACTIONS(6059), - [anon_sym_LT_AMP] = ACTIONS(6059), - [anon_sym_GT_AMP] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6940), - [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6940), - [sym_raw_string] = ACTIONS(6059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), - [anon_sym_BQUOTE] = ACTIONS(6059), - [anon_sym_LT_LPAREN] = ACTIONS(6059), - [anon_sym_GT_LPAREN] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6940), - }, - [3898] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8341), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3899] = { - [sym_file_descriptor] = ACTIONS(6065), - [sym__concat] = ACTIONS(6065), - [sym_variable_name] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6944), - [anon_sym_RPAREN] = ACTIONS(6065), - [anon_sym_PIPE_AMP] = ACTIONS(6065), - [anon_sym_AMP_AMP] = ACTIONS(6065), - [anon_sym_PIPE_PIPE] = ACTIONS(6065), - [anon_sym_LT] = ACTIONS(6944), - [anon_sym_GT] = ACTIONS(6944), - [anon_sym_GT_GT] = ACTIONS(6065), - [anon_sym_AMP_GT] = ACTIONS(6944), - [anon_sym_AMP_GT_GT] = ACTIONS(6065), - [anon_sym_LT_AMP] = ACTIONS(6065), - [anon_sym_GT_AMP] = ACTIONS(6065), - [sym__special_characters] = ACTIONS(6944), - [anon_sym_DQUOTE] = ACTIONS(6065), - [anon_sym_DOLLAR] = ACTIONS(6944), - [sym_raw_string] = ACTIONS(6065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), - [anon_sym_BQUOTE] = ACTIONS(6065), - [anon_sym_LT_LPAREN] = ACTIONS(6065), - [anon_sym_GT_LPAREN] = ACTIONS(6065), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6944), - }, - [3900] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8343), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3901] = { - [sym_file_descriptor] = ACTIONS(6071), - [sym__concat] = ACTIONS(6071), - [sym_variable_name] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6948), - [anon_sym_RPAREN] = ACTIONS(6071), - [anon_sym_PIPE_AMP] = ACTIONS(6071), - [anon_sym_AMP_AMP] = ACTIONS(6071), - [anon_sym_PIPE_PIPE] = ACTIONS(6071), - [anon_sym_LT] = ACTIONS(6948), - [anon_sym_GT] = ACTIONS(6948), - [anon_sym_GT_GT] = ACTIONS(6071), - [anon_sym_AMP_GT] = ACTIONS(6948), - [anon_sym_AMP_GT_GT] = ACTIONS(6071), - [anon_sym_LT_AMP] = ACTIONS(6071), - [anon_sym_GT_AMP] = ACTIONS(6071), - [sym__special_characters] = ACTIONS(6948), - [anon_sym_DQUOTE] = ACTIONS(6071), - [anon_sym_DOLLAR] = ACTIONS(6948), - [sym_raw_string] = ACTIONS(6071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), - [anon_sym_BQUOTE] = ACTIONS(6071), - [anon_sym_LT_LPAREN] = ACTIONS(6071), - [anon_sym_GT_LPAREN] = ACTIONS(6071), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6948), - }, - [3902] = { - [sym_file_descriptor] = ACTIONS(6075), - [sym__concat] = ACTIONS(6075), - [sym_variable_name] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_RPAREN] = ACTIONS(6075), - [anon_sym_PIPE_AMP] = ACTIONS(6075), - [anon_sym_AMP_AMP] = ACTIONS(6075), - [anon_sym_PIPE_PIPE] = ACTIONS(6075), - [anon_sym_LT] = ACTIONS(6950), - [anon_sym_GT] = ACTIONS(6950), - [anon_sym_GT_GT] = ACTIONS(6075), - [anon_sym_AMP_GT] = ACTIONS(6950), - [anon_sym_AMP_GT_GT] = ACTIONS(6075), - [anon_sym_LT_AMP] = ACTIONS(6075), - [anon_sym_GT_AMP] = ACTIONS(6075), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6075), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), - [anon_sym_BQUOTE] = ACTIONS(6075), - [anon_sym_LT_LPAREN] = ACTIONS(6075), - [anon_sym_GT_LPAREN] = ACTIONS(6075), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6950), - }, - [3903] = { - [anon_sym_PIPE] = ACTIONS(8345), - [anon_sym_RPAREN] = ACTIONS(8347), - [anon_sym_PIPE_AMP] = ACTIONS(8347), - [anon_sym_AMP_AMP] = ACTIONS(8347), - [anon_sym_PIPE_PIPE] = ACTIONS(8347), - [anon_sym_BQUOTE] = ACTIONS(8347), - [sym_comment] = ACTIONS(56), - }, - [3904] = { - [anon_sym_PIPE] = ACTIONS(8349), - [anon_sym_RPAREN] = ACTIONS(8351), - [anon_sym_PIPE_AMP] = ACTIONS(8351), - [anon_sym_AMP_AMP] = ACTIONS(8351), - [anon_sym_PIPE_PIPE] = ACTIONS(8351), - [anon_sym_BQUOTE] = ACTIONS(8351), - [sym_comment] = ACTIONS(56), - }, - [3905] = { - [sym__concat] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(4614), - [anon_sym_RPAREN] = ACTIONS(3293), - [anon_sym_PIPE_AMP] = ACTIONS(3293), - [anon_sym_AMP_AMP] = ACTIONS(3293), - [anon_sym_PIPE_PIPE] = ACTIONS(3293), - [sym_comment] = ACTIONS(56), - }, - [3906] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8353), - [sym_comment] = ACTIONS(56), - }, - [3907] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8355), - [sym_comment] = ACTIONS(56), - }, - [3908] = { - [anon_sym_RBRACE] = ACTIONS(8355), - [sym_comment] = ACTIONS(56), - }, - [3909] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4179), - [anon_sym_RBRACE] = ACTIONS(8357), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3910] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(4622), - [anon_sym_RPAREN] = ACTIONS(3357), - [anon_sym_PIPE_AMP] = ACTIONS(3357), - [anon_sym_AMP_AMP] = ACTIONS(3357), - [anon_sym_PIPE_PIPE] = ACTIONS(3357), - [sym_comment] = ACTIONS(56), - }, - [3911] = { - [sym_concatenation] = STATE(4182), - [sym_string] = STATE(4181), - [sym_simple_expansion] = STATE(4181), - [sym_string_expansion] = STATE(4181), - [sym_expansion] = STATE(4181), - [sym_command_substitution] = STATE(4181), - [sym_process_substitution] = STATE(4181), - [anon_sym_RBRACE] = ACTIONS(8355), - [sym__special_characters] = ACTIONS(8359), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(8361), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8363), - }, - [3912] = { - [sym__concat] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(4630), - [anon_sym_RPAREN] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [sym_comment] = ACTIONS(56), - }, - [3913] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8365), - }, - [3914] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8367), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3915] = { - [sym__concat] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(4636), - [anon_sym_RPAREN] = ACTIONS(3410), - [anon_sym_PIPE_AMP] = ACTIONS(3410), - [anon_sym_AMP_AMP] = ACTIONS(3410), - [anon_sym_PIPE_PIPE] = ACTIONS(3410), - [sym_comment] = ACTIONS(56), - }, - [3916] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8369), - }, - [3917] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8371), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3918] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8373), - }, - [3919] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8355), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3920] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4189), - [anon_sym_RBRACE] = ACTIONS(8375), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3921] = { - [sym__concat] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(4646), - [anon_sym_RPAREN] = ACTIONS(3422), - [anon_sym_PIPE_AMP] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [sym_comment] = ACTIONS(56), - }, - [3922] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4191), - [anon_sym_RBRACE] = ACTIONS(8377), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3923] = { - [sym__concat] = ACTIONS(7032), - [sym_variable_name] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7721), - [anon_sym_RPAREN] = ACTIONS(7032), - [anon_sym_PIPE_AMP] = ACTIONS(7032), - [anon_sym_AMP_AMP] = ACTIONS(7032), - [anon_sym_PIPE_PIPE] = ACTIONS(7032), - [sym__special_characters] = ACTIONS(7721), - [anon_sym_DQUOTE] = ACTIONS(7032), - [anon_sym_DOLLAR] = ACTIONS(7721), - [sym_raw_string] = ACTIONS(7032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), - [anon_sym_BQUOTE] = ACTIONS(7032), - [anon_sym_LT_LPAREN] = ACTIONS(7032), - [anon_sym_GT_LPAREN] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7721), - [sym_word] = ACTIONS(7034), - }, - [3924] = { - [sym__concat] = ACTIONS(7036), - [sym_variable_name] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7723), - [anon_sym_RPAREN] = ACTIONS(7036), - [anon_sym_PIPE_AMP] = ACTIONS(7036), - [anon_sym_AMP_AMP] = ACTIONS(7036), - [anon_sym_PIPE_PIPE] = ACTIONS(7036), - [sym__special_characters] = ACTIONS(7723), - [anon_sym_DQUOTE] = ACTIONS(7036), - [anon_sym_DOLLAR] = ACTIONS(7723), - [sym_raw_string] = ACTIONS(7036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), - [anon_sym_BQUOTE] = ACTIONS(7036), - [anon_sym_LT_LPAREN] = ACTIONS(7036), - [anon_sym_GT_LPAREN] = ACTIONS(7036), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7723), - [sym_word] = ACTIONS(7038), - }, - [3925] = { - [sym__concat] = ACTIONS(7040), - [sym_variable_name] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7725), - [anon_sym_RPAREN] = ACTIONS(7040), - [anon_sym_PIPE_AMP] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(7040), - [anon_sym_PIPE_PIPE] = ACTIONS(7040), - [sym__special_characters] = ACTIONS(7725), - [anon_sym_DQUOTE] = ACTIONS(7040), - [anon_sym_DOLLAR] = ACTIONS(7725), - [sym_raw_string] = ACTIONS(7040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), - [anon_sym_BQUOTE] = ACTIONS(7040), - [anon_sym_LT_LPAREN] = ACTIONS(7040), - [anon_sym_GT_LPAREN] = ACTIONS(7040), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7725), - [sym_word] = ACTIONS(7042), - }, - [3926] = { - [sym__concat] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7721), - [anon_sym_RPAREN] = ACTIONS(7032), - [anon_sym_PIPE_AMP] = ACTIONS(7032), - [anon_sym_AMP_AMP] = ACTIONS(7032), - [anon_sym_PIPE_PIPE] = ACTIONS(7032), - [sym__special_characters] = ACTIONS(7721), - [anon_sym_DQUOTE] = ACTIONS(7032), - [anon_sym_DOLLAR] = ACTIONS(7721), - [sym_raw_string] = ACTIONS(7032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), - [anon_sym_BQUOTE] = ACTIONS(7032), - [anon_sym_LT_LPAREN] = ACTIONS(7032), - [anon_sym_GT_LPAREN] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7721), - [sym_word] = ACTIONS(7034), - }, - [3927] = { - [sym__concat] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7723), - [anon_sym_RPAREN] = ACTIONS(7036), - [anon_sym_PIPE_AMP] = ACTIONS(7036), - [anon_sym_AMP_AMP] = ACTIONS(7036), - [anon_sym_PIPE_PIPE] = ACTIONS(7036), - [sym__special_characters] = ACTIONS(7723), - [anon_sym_DQUOTE] = ACTIONS(7036), - [anon_sym_DOLLAR] = ACTIONS(7723), - [sym_raw_string] = ACTIONS(7036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), - [anon_sym_BQUOTE] = ACTIONS(7036), - [anon_sym_LT_LPAREN] = ACTIONS(7036), - [anon_sym_GT_LPAREN] = ACTIONS(7036), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7723), - [sym_word] = ACTIONS(7038), - }, - [3928] = { - [sym__concat] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7725), - [anon_sym_RPAREN] = ACTIONS(7040), - [anon_sym_PIPE_AMP] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(7040), - [anon_sym_PIPE_PIPE] = ACTIONS(7040), - [sym__special_characters] = ACTIONS(7725), - [anon_sym_DQUOTE] = ACTIONS(7040), - [anon_sym_DOLLAR] = ACTIONS(7725), - [sym_raw_string] = ACTIONS(7040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), - [anon_sym_BQUOTE] = ACTIONS(7040), - [anon_sym_LT_LPAREN] = ACTIONS(7040), - [anon_sym_GT_LPAREN] = ACTIONS(7040), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7725), - [sym_word] = ACTIONS(7042), - }, - [3929] = { - [sym_file_descriptor] = ACTIONS(6041), - [sym__concat] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6930), - [anon_sym_RPAREN] = ACTIONS(6041), - [anon_sym_PIPE_AMP] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6041), - [anon_sym_PIPE_PIPE] = ACTIONS(6041), - [anon_sym_LT] = ACTIONS(6930), - [anon_sym_GT] = ACTIONS(6930), - [anon_sym_GT_GT] = ACTIONS(6041), - [anon_sym_AMP_GT] = ACTIONS(6930), - [anon_sym_AMP_GT_GT] = ACTIONS(6041), - [anon_sym_LT_AMP] = ACTIONS(6041), - [anon_sym_GT_AMP] = ACTIONS(6041), - [anon_sym_LT_LT] = ACTIONS(6930), - [anon_sym_LT_LT_DASH] = ACTIONS(6041), - [anon_sym_LT_LT_LT] = ACTIONS(6041), - [sym_comment] = ACTIONS(56), - }, - [3930] = { - [sym_file_descriptor] = ACTIONS(6045), - [sym__concat] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6932), - [anon_sym_RPAREN] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_LT] = ACTIONS(6932), - [anon_sym_GT] = ACTIONS(6932), - [anon_sym_GT_GT] = ACTIONS(6045), - [anon_sym_AMP_GT] = ACTIONS(6932), - [anon_sym_AMP_GT_GT] = ACTIONS(6045), - [anon_sym_LT_AMP] = ACTIONS(6045), - [anon_sym_GT_AMP] = ACTIONS(6045), - [anon_sym_LT_LT] = ACTIONS(6932), - [anon_sym_LT_LT_DASH] = ACTIONS(6045), - [anon_sym_LT_LT_LT] = ACTIONS(6045), - [sym_comment] = ACTIONS(56), - }, - [3931] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_RPAREN] = ACTIONS(6049), - [anon_sym_PIPE_AMP] = ACTIONS(6049), - [anon_sym_AMP_AMP] = ACTIONS(6049), - [anon_sym_PIPE_PIPE] = ACTIONS(6049), - [anon_sym_LT] = ACTIONS(6934), - [anon_sym_GT] = ACTIONS(6934), - [anon_sym_GT_GT] = ACTIONS(6049), - [anon_sym_AMP_GT] = ACTIONS(6934), - [anon_sym_AMP_GT_GT] = ACTIONS(6049), - [anon_sym_LT_AMP] = ACTIONS(6049), - [anon_sym_GT_AMP] = ACTIONS(6049), - [anon_sym_LT_LT] = ACTIONS(6934), - [anon_sym_LT_LT_DASH] = ACTIONS(6049), - [anon_sym_LT_LT_LT] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - }, - [3932] = { - [sym_file_descriptor] = ACTIONS(6053), - [sym__concat] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6936), - [anon_sym_RPAREN] = ACTIONS(6053), - [anon_sym_PIPE_AMP] = ACTIONS(6053), - [anon_sym_AMP_AMP] = ACTIONS(6053), - [anon_sym_PIPE_PIPE] = ACTIONS(6053), - [anon_sym_LT] = ACTIONS(6936), - [anon_sym_GT] = ACTIONS(6936), - [anon_sym_GT_GT] = ACTIONS(6053), - [anon_sym_AMP_GT] = ACTIONS(6936), - [anon_sym_AMP_GT_GT] = ACTIONS(6053), - [anon_sym_LT_AMP] = ACTIONS(6053), - [anon_sym_GT_AMP] = ACTIONS(6053), - [anon_sym_LT_LT] = ACTIONS(6936), - [anon_sym_LT_LT_DASH] = ACTIONS(6053), - [anon_sym_LT_LT_LT] = ACTIONS(6053), - [sym_comment] = ACTIONS(56), - }, - [3933] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8379), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3934] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6940), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_PIPE_AMP] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6940), - [anon_sym_GT] = ACTIONS(6940), - [anon_sym_GT_GT] = ACTIONS(6059), - [anon_sym_AMP_GT] = ACTIONS(6940), - [anon_sym_AMP_GT_GT] = ACTIONS(6059), - [anon_sym_LT_AMP] = ACTIONS(6059), - [anon_sym_GT_AMP] = ACTIONS(6059), - [anon_sym_LT_LT] = ACTIONS(6940), - [anon_sym_LT_LT_DASH] = ACTIONS(6059), - [anon_sym_LT_LT_LT] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - }, - [3935] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8381), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3936] = { - [sym_file_descriptor] = ACTIONS(6065), - [sym__concat] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6944), - [anon_sym_RPAREN] = ACTIONS(6065), - [anon_sym_PIPE_AMP] = ACTIONS(6065), - [anon_sym_AMP_AMP] = ACTIONS(6065), - [anon_sym_PIPE_PIPE] = ACTIONS(6065), - [anon_sym_LT] = ACTIONS(6944), - [anon_sym_GT] = ACTIONS(6944), - [anon_sym_GT_GT] = ACTIONS(6065), - [anon_sym_AMP_GT] = ACTIONS(6944), - [anon_sym_AMP_GT_GT] = ACTIONS(6065), - [anon_sym_LT_AMP] = ACTIONS(6065), - [anon_sym_GT_AMP] = ACTIONS(6065), - [anon_sym_LT_LT] = ACTIONS(6944), - [anon_sym_LT_LT_DASH] = ACTIONS(6065), - [anon_sym_LT_LT_LT] = ACTIONS(6065), - [sym_comment] = ACTIONS(56), - }, - [3937] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8383), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3938] = { - [sym_file_descriptor] = ACTIONS(6071), - [sym__concat] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6948), - [anon_sym_RPAREN] = ACTIONS(6071), - [anon_sym_PIPE_AMP] = ACTIONS(6071), - [anon_sym_AMP_AMP] = ACTIONS(6071), - [anon_sym_PIPE_PIPE] = ACTIONS(6071), - [anon_sym_LT] = ACTIONS(6948), - [anon_sym_GT] = ACTIONS(6948), - [anon_sym_GT_GT] = ACTIONS(6071), - [anon_sym_AMP_GT] = ACTIONS(6948), - [anon_sym_AMP_GT_GT] = ACTIONS(6071), - [anon_sym_LT_AMP] = ACTIONS(6071), - [anon_sym_GT_AMP] = ACTIONS(6071), - [anon_sym_LT_LT] = ACTIONS(6948), - [anon_sym_LT_LT_DASH] = ACTIONS(6071), - [anon_sym_LT_LT_LT] = ACTIONS(6071), - [sym_comment] = ACTIONS(56), - }, - [3939] = { - [sym_file_descriptor] = ACTIONS(6075), - [sym__concat] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_RPAREN] = ACTIONS(6075), - [anon_sym_PIPE_AMP] = ACTIONS(6075), - [anon_sym_AMP_AMP] = ACTIONS(6075), - [anon_sym_PIPE_PIPE] = ACTIONS(6075), - [anon_sym_LT] = ACTIONS(6950), - [anon_sym_GT] = ACTIONS(6950), - [anon_sym_GT_GT] = ACTIONS(6075), - [anon_sym_AMP_GT] = ACTIONS(6950), - [anon_sym_AMP_GT_GT] = ACTIONS(6075), - [anon_sym_LT_AMP] = ACTIONS(6075), - [anon_sym_GT_AMP] = ACTIONS(6075), - [anon_sym_LT_LT] = ACTIONS(6950), - [anon_sym_LT_LT_DASH] = ACTIONS(6075), - [anon_sym_LT_LT_LT] = ACTIONS(6075), - [sym_comment] = ACTIONS(56), - }, - [3940] = { - [sym_file_descriptor] = ACTIONS(6041), - [sym__concat] = ACTIONS(6041), - [sym_variable_name] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6930), - [anon_sym_PIPE_AMP] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6041), - [anon_sym_PIPE_PIPE] = ACTIONS(6041), - [anon_sym_LT] = ACTIONS(6930), - [anon_sym_GT] = ACTIONS(6930), - [anon_sym_GT_GT] = ACTIONS(6041), - [anon_sym_AMP_GT] = ACTIONS(6930), - [anon_sym_AMP_GT_GT] = ACTIONS(6041), - [anon_sym_LT_AMP] = ACTIONS(6041), - [anon_sym_GT_AMP] = ACTIONS(6041), - [sym__special_characters] = ACTIONS(6930), - [anon_sym_DQUOTE] = ACTIONS(6041), - [anon_sym_DOLLAR] = ACTIONS(6930), - [sym_raw_string] = ACTIONS(6041), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), - [anon_sym_BQUOTE] = ACTIONS(6041), - [anon_sym_LT_LPAREN] = ACTIONS(6041), - [anon_sym_GT_LPAREN] = ACTIONS(6041), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6930), - }, - [3941] = { - [sym_file_descriptor] = ACTIONS(6045), - [sym__concat] = ACTIONS(6045), - [sym_variable_name] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6932), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_LT] = ACTIONS(6932), - [anon_sym_GT] = ACTIONS(6932), - [anon_sym_GT_GT] = ACTIONS(6045), - [anon_sym_AMP_GT] = ACTIONS(6932), - [anon_sym_AMP_GT_GT] = ACTIONS(6045), - [anon_sym_LT_AMP] = ACTIONS(6045), - [anon_sym_GT_AMP] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6932), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6932), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6932), - }, - [3942] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [sym_variable_name] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_PIPE_AMP] = ACTIONS(6049), - [anon_sym_AMP_AMP] = ACTIONS(6049), - [anon_sym_PIPE_PIPE] = ACTIONS(6049), - [anon_sym_LT] = ACTIONS(6934), - [anon_sym_GT] = ACTIONS(6934), - [anon_sym_GT_GT] = ACTIONS(6049), - [anon_sym_AMP_GT] = ACTIONS(6934), - [anon_sym_AMP_GT_GT] = ACTIONS(6049), - [anon_sym_LT_AMP] = ACTIONS(6049), - [anon_sym_GT_AMP] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6934), - [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), - [anon_sym_BQUOTE] = ACTIONS(6049), - [anon_sym_LT_LPAREN] = ACTIONS(6049), - [anon_sym_GT_LPAREN] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6934), - }, - [3943] = { - [sym_file_descriptor] = ACTIONS(6053), - [sym__concat] = ACTIONS(6053), - [sym_variable_name] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6936), - [anon_sym_PIPE_AMP] = ACTIONS(6053), - [anon_sym_AMP_AMP] = ACTIONS(6053), - [anon_sym_PIPE_PIPE] = ACTIONS(6053), - [anon_sym_LT] = ACTIONS(6936), - [anon_sym_GT] = ACTIONS(6936), - [anon_sym_GT_GT] = ACTIONS(6053), - [anon_sym_AMP_GT] = ACTIONS(6936), - [anon_sym_AMP_GT_GT] = ACTIONS(6053), - [anon_sym_LT_AMP] = ACTIONS(6053), - [anon_sym_GT_AMP] = ACTIONS(6053), - [sym__special_characters] = ACTIONS(6936), - [anon_sym_DQUOTE] = ACTIONS(6053), - [anon_sym_DOLLAR] = ACTIONS(6936), - [sym_raw_string] = ACTIONS(6053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), - [anon_sym_BQUOTE] = ACTIONS(6053), - [anon_sym_LT_LPAREN] = ACTIONS(6053), - [anon_sym_GT_LPAREN] = ACTIONS(6053), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6936), - }, - [3944] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8385), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3945] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [sym_variable_name] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6940), - [anon_sym_PIPE_AMP] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6940), - [anon_sym_GT] = ACTIONS(6940), - [anon_sym_GT_GT] = ACTIONS(6059), - [anon_sym_AMP_GT] = ACTIONS(6940), - [anon_sym_AMP_GT_GT] = ACTIONS(6059), - [anon_sym_LT_AMP] = ACTIONS(6059), - [anon_sym_GT_AMP] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6940), - [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6940), - [sym_raw_string] = ACTIONS(6059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), - [anon_sym_BQUOTE] = ACTIONS(6059), - [anon_sym_LT_LPAREN] = ACTIONS(6059), - [anon_sym_GT_LPAREN] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6940), - }, - [3946] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8387), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3947] = { - [sym_file_descriptor] = ACTIONS(6065), - [sym__concat] = ACTIONS(6065), - [sym_variable_name] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6944), - [anon_sym_PIPE_AMP] = ACTIONS(6065), - [anon_sym_AMP_AMP] = ACTIONS(6065), - [anon_sym_PIPE_PIPE] = ACTIONS(6065), - [anon_sym_LT] = ACTIONS(6944), - [anon_sym_GT] = ACTIONS(6944), - [anon_sym_GT_GT] = ACTIONS(6065), - [anon_sym_AMP_GT] = ACTIONS(6944), - [anon_sym_AMP_GT_GT] = ACTIONS(6065), - [anon_sym_LT_AMP] = ACTIONS(6065), - [anon_sym_GT_AMP] = ACTIONS(6065), - [sym__special_characters] = ACTIONS(6944), - [anon_sym_DQUOTE] = ACTIONS(6065), - [anon_sym_DOLLAR] = ACTIONS(6944), - [sym_raw_string] = ACTIONS(6065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), - [anon_sym_BQUOTE] = ACTIONS(6065), - [anon_sym_LT_LPAREN] = ACTIONS(6065), - [anon_sym_GT_LPAREN] = ACTIONS(6065), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6944), - }, - [3948] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8389), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3949] = { - [sym_file_descriptor] = ACTIONS(6071), - [sym__concat] = ACTIONS(6071), - [sym_variable_name] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6948), - [anon_sym_PIPE_AMP] = ACTIONS(6071), - [anon_sym_AMP_AMP] = ACTIONS(6071), - [anon_sym_PIPE_PIPE] = ACTIONS(6071), - [anon_sym_LT] = ACTIONS(6948), - [anon_sym_GT] = ACTIONS(6948), - [anon_sym_GT_GT] = ACTIONS(6071), - [anon_sym_AMP_GT] = ACTIONS(6948), - [anon_sym_AMP_GT_GT] = ACTIONS(6071), - [anon_sym_LT_AMP] = ACTIONS(6071), - [anon_sym_GT_AMP] = ACTIONS(6071), - [sym__special_characters] = ACTIONS(6948), - [anon_sym_DQUOTE] = ACTIONS(6071), - [anon_sym_DOLLAR] = ACTIONS(6948), - [sym_raw_string] = ACTIONS(6071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), - [anon_sym_BQUOTE] = ACTIONS(6071), - [anon_sym_LT_LPAREN] = ACTIONS(6071), - [anon_sym_GT_LPAREN] = ACTIONS(6071), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6948), - }, - [3950] = { - [sym_file_descriptor] = ACTIONS(6075), - [sym__concat] = ACTIONS(6075), - [sym_variable_name] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6075), - [anon_sym_AMP_AMP] = ACTIONS(6075), - [anon_sym_PIPE_PIPE] = ACTIONS(6075), - [anon_sym_LT] = ACTIONS(6950), - [anon_sym_GT] = ACTIONS(6950), - [anon_sym_GT_GT] = ACTIONS(6075), - [anon_sym_AMP_GT] = ACTIONS(6950), - [anon_sym_AMP_GT_GT] = ACTIONS(6075), - [anon_sym_LT_AMP] = ACTIONS(6075), - [anon_sym_GT_AMP] = ACTIONS(6075), - [sym__special_characters] = ACTIONS(6950), - [anon_sym_DQUOTE] = ACTIONS(6075), - [anon_sym_DOLLAR] = ACTIONS(6950), - [sym_raw_string] = ACTIONS(6075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), - [anon_sym_BQUOTE] = ACTIONS(6075), - [anon_sym_LT_LPAREN] = ACTIONS(6075), - [anon_sym_GT_LPAREN] = ACTIONS(6075), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6950), - }, - [3951] = { - [sym__concat] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(4614), - [anon_sym_PIPE_AMP] = ACTIONS(3293), - [anon_sym_AMP_AMP] = ACTIONS(3293), - [anon_sym_PIPE_PIPE] = ACTIONS(3293), - [anon_sym_BQUOTE] = ACTIONS(3293), - [sym_comment] = ACTIONS(56), - }, - [3952] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8391), - [sym_comment] = ACTIONS(56), - }, - [3953] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8393), - [sym_comment] = ACTIONS(56), - }, - [3954] = { - [anon_sym_RBRACE] = ACTIONS(8393), - [sym_comment] = ACTIONS(56), - }, - [3955] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4201), - [anon_sym_RBRACE] = ACTIONS(8395), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3956] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(4622), - [anon_sym_PIPE_AMP] = ACTIONS(3357), - [anon_sym_AMP_AMP] = ACTIONS(3357), - [anon_sym_PIPE_PIPE] = ACTIONS(3357), - [anon_sym_BQUOTE] = ACTIONS(3357), - [sym_comment] = ACTIONS(56), - }, - [3957] = { - [sym_concatenation] = STATE(4204), - [sym_string] = STATE(4203), - [sym_simple_expansion] = STATE(4203), - [sym_string_expansion] = STATE(4203), - [sym_expansion] = STATE(4203), - [sym_command_substitution] = STATE(4203), - [sym_process_substitution] = STATE(4203), - [anon_sym_RBRACE] = ACTIONS(8393), - [sym__special_characters] = ACTIONS(8397), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(8399), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8401), - }, - [3958] = { - [sym__concat] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(4630), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [sym_comment] = ACTIONS(56), - }, - [3959] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8403), - }, - [3960] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8405), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3961] = { - [sym__concat] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(4636), - [anon_sym_PIPE_AMP] = ACTIONS(3410), - [anon_sym_AMP_AMP] = ACTIONS(3410), - [anon_sym_PIPE_PIPE] = ACTIONS(3410), - [anon_sym_BQUOTE] = ACTIONS(3410), - [sym_comment] = ACTIONS(56), - }, - [3962] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8407), - }, - [3963] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8409), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3964] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8411), - }, - [3965] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8393), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3966] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4211), - [anon_sym_RBRACE] = ACTIONS(8413), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3967] = { - [sym__concat] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(4646), - [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(56), - }, - [3968] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4213), - [anon_sym_RBRACE] = ACTIONS(8415), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3969] = { - [sym__concat] = ACTIONS(7032), - [sym_variable_name] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7721), - [anon_sym_PIPE_AMP] = ACTIONS(7032), - [anon_sym_AMP_AMP] = ACTIONS(7032), - [anon_sym_PIPE_PIPE] = ACTIONS(7032), - [sym__special_characters] = ACTIONS(7721), - [anon_sym_DQUOTE] = ACTIONS(7032), - [anon_sym_DOLLAR] = ACTIONS(7721), - [sym_raw_string] = ACTIONS(7032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), - [anon_sym_BQUOTE] = ACTIONS(7032), - [anon_sym_LT_LPAREN] = ACTIONS(7032), - [anon_sym_GT_LPAREN] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7721), - [sym_word] = ACTIONS(7034), - }, - [3970] = { - [sym__concat] = ACTIONS(7036), - [sym_variable_name] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7723), - [anon_sym_PIPE_AMP] = ACTIONS(7036), - [anon_sym_AMP_AMP] = ACTIONS(7036), - [anon_sym_PIPE_PIPE] = ACTIONS(7036), - [sym__special_characters] = ACTIONS(7723), - [anon_sym_DQUOTE] = ACTIONS(7036), - [anon_sym_DOLLAR] = ACTIONS(7723), - [sym_raw_string] = ACTIONS(7036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), - [anon_sym_BQUOTE] = ACTIONS(7036), - [anon_sym_LT_LPAREN] = ACTIONS(7036), - [anon_sym_GT_LPAREN] = ACTIONS(7036), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7723), - [sym_word] = ACTIONS(7038), - }, - [3971] = { - [sym__concat] = ACTIONS(7040), - [sym_variable_name] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7725), - [anon_sym_PIPE_AMP] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(7040), - [anon_sym_PIPE_PIPE] = ACTIONS(7040), - [sym__special_characters] = ACTIONS(7725), - [anon_sym_DQUOTE] = ACTIONS(7040), - [anon_sym_DOLLAR] = ACTIONS(7725), - [sym_raw_string] = ACTIONS(7040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), - [anon_sym_BQUOTE] = ACTIONS(7040), - [anon_sym_LT_LPAREN] = ACTIONS(7040), - [anon_sym_GT_LPAREN] = ACTIONS(7040), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7725), - [sym_word] = ACTIONS(7042), - }, - [3972] = { - [sym__concat] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7721), - [anon_sym_PIPE_AMP] = ACTIONS(7032), - [anon_sym_AMP_AMP] = ACTIONS(7032), - [anon_sym_PIPE_PIPE] = ACTIONS(7032), - [sym__special_characters] = ACTIONS(7721), - [anon_sym_DQUOTE] = ACTIONS(7032), - [anon_sym_DOLLAR] = ACTIONS(7721), - [sym_raw_string] = ACTIONS(7032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), - [anon_sym_BQUOTE] = ACTIONS(7032), - [anon_sym_LT_LPAREN] = ACTIONS(7032), - [anon_sym_GT_LPAREN] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7721), - [sym_word] = ACTIONS(7034), - }, - [3973] = { - [sym__concat] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7723), - [anon_sym_PIPE_AMP] = ACTIONS(7036), - [anon_sym_AMP_AMP] = ACTIONS(7036), - [anon_sym_PIPE_PIPE] = ACTIONS(7036), - [sym__special_characters] = ACTIONS(7723), - [anon_sym_DQUOTE] = ACTIONS(7036), - [anon_sym_DOLLAR] = ACTIONS(7723), - [sym_raw_string] = ACTIONS(7036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), - [anon_sym_BQUOTE] = ACTIONS(7036), - [anon_sym_LT_LPAREN] = ACTIONS(7036), - [anon_sym_GT_LPAREN] = ACTIONS(7036), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7723), - [sym_word] = ACTIONS(7038), - }, - [3974] = { - [sym__concat] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7725), - [anon_sym_PIPE_AMP] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(7040), - [anon_sym_PIPE_PIPE] = ACTIONS(7040), - [sym__special_characters] = ACTIONS(7725), - [anon_sym_DQUOTE] = ACTIONS(7040), - [anon_sym_DOLLAR] = ACTIONS(7725), - [sym_raw_string] = ACTIONS(7040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), - [anon_sym_BQUOTE] = ACTIONS(7040), - [anon_sym_LT_LPAREN] = ACTIONS(7040), - [anon_sym_GT_LPAREN] = ACTIONS(7040), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7725), - [sym_word] = ACTIONS(7042), - }, - [3975] = { - [sym_file_descriptor] = ACTIONS(6041), - [sym__concat] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6930), - [anon_sym_PIPE_AMP] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6041), - [anon_sym_PIPE_PIPE] = ACTIONS(6041), - [anon_sym_LT] = ACTIONS(6930), - [anon_sym_GT] = ACTIONS(6930), - [anon_sym_GT_GT] = ACTIONS(6041), - [anon_sym_AMP_GT] = ACTIONS(6930), - [anon_sym_AMP_GT_GT] = ACTIONS(6041), - [anon_sym_LT_AMP] = ACTIONS(6041), - [anon_sym_GT_AMP] = ACTIONS(6041), - [anon_sym_LT_LT] = ACTIONS(6930), - [anon_sym_LT_LT_DASH] = ACTIONS(6041), - [anon_sym_LT_LT_LT] = ACTIONS(6041), - [anon_sym_BQUOTE] = ACTIONS(6041), - [sym_comment] = ACTIONS(56), - }, - [3976] = { - [sym_file_descriptor] = ACTIONS(6045), - [sym__concat] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6932), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_LT] = ACTIONS(6932), - [anon_sym_GT] = ACTIONS(6932), - [anon_sym_GT_GT] = ACTIONS(6045), - [anon_sym_AMP_GT] = ACTIONS(6932), - [anon_sym_AMP_GT_GT] = ACTIONS(6045), - [anon_sym_LT_AMP] = ACTIONS(6045), - [anon_sym_GT_AMP] = ACTIONS(6045), - [anon_sym_LT_LT] = ACTIONS(6932), - [anon_sym_LT_LT_DASH] = ACTIONS(6045), - [anon_sym_LT_LT_LT] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [sym_comment] = ACTIONS(56), - }, - [3977] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_PIPE_AMP] = ACTIONS(6049), - [anon_sym_AMP_AMP] = ACTIONS(6049), - [anon_sym_PIPE_PIPE] = ACTIONS(6049), - [anon_sym_LT] = ACTIONS(6934), - [anon_sym_GT] = ACTIONS(6934), - [anon_sym_GT_GT] = ACTIONS(6049), - [anon_sym_AMP_GT] = ACTIONS(6934), - [anon_sym_AMP_GT_GT] = ACTIONS(6049), - [anon_sym_LT_AMP] = ACTIONS(6049), - [anon_sym_GT_AMP] = ACTIONS(6049), - [anon_sym_LT_LT] = ACTIONS(6934), - [anon_sym_LT_LT_DASH] = ACTIONS(6049), - [anon_sym_LT_LT_LT] = ACTIONS(6049), - [anon_sym_BQUOTE] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - }, - [3978] = { - [sym_file_descriptor] = ACTIONS(6053), - [sym__concat] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6936), - [anon_sym_PIPE_AMP] = ACTIONS(6053), - [anon_sym_AMP_AMP] = ACTIONS(6053), - [anon_sym_PIPE_PIPE] = ACTIONS(6053), - [anon_sym_LT] = ACTIONS(6936), - [anon_sym_GT] = ACTIONS(6936), - [anon_sym_GT_GT] = ACTIONS(6053), - [anon_sym_AMP_GT] = ACTIONS(6936), - [anon_sym_AMP_GT_GT] = ACTIONS(6053), - [anon_sym_LT_AMP] = ACTIONS(6053), - [anon_sym_GT_AMP] = ACTIONS(6053), - [anon_sym_LT_LT] = ACTIONS(6936), - [anon_sym_LT_LT_DASH] = ACTIONS(6053), - [anon_sym_LT_LT_LT] = ACTIONS(6053), - [anon_sym_BQUOTE] = ACTIONS(6053), - [sym_comment] = ACTIONS(56), - }, - [3979] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8417), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3980] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6940), - [anon_sym_PIPE_AMP] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6940), - [anon_sym_GT] = ACTIONS(6940), - [anon_sym_GT_GT] = ACTIONS(6059), - [anon_sym_AMP_GT] = ACTIONS(6940), - [anon_sym_AMP_GT_GT] = ACTIONS(6059), - [anon_sym_LT_AMP] = ACTIONS(6059), - [anon_sym_GT_AMP] = ACTIONS(6059), - [anon_sym_LT_LT] = ACTIONS(6940), - [anon_sym_LT_LT_DASH] = ACTIONS(6059), - [anon_sym_LT_LT_LT] = ACTIONS(6059), - [anon_sym_BQUOTE] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - }, - [3981] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8419), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3982] = { - [sym_file_descriptor] = ACTIONS(6065), - [sym__concat] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6944), - [anon_sym_PIPE_AMP] = ACTIONS(6065), - [anon_sym_AMP_AMP] = ACTIONS(6065), - [anon_sym_PIPE_PIPE] = ACTIONS(6065), - [anon_sym_LT] = ACTIONS(6944), - [anon_sym_GT] = ACTIONS(6944), - [anon_sym_GT_GT] = ACTIONS(6065), - [anon_sym_AMP_GT] = ACTIONS(6944), - [anon_sym_AMP_GT_GT] = ACTIONS(6065), - [anon_sym_LT_AMP] = ACTIONS(6065), - [anon_sym_GT_AMP] = ACTIONS(6065), - [anon_sym_LT_LT] = ACTIONS(6944), - [anon_sym_LT_LT_DASH] = ACTIONS(6065), - [anon_sym_LT_LT_LT] = ACTIONS(6065), - [anon_sym_BQUOTE] = ACTIONS(6065), - [sym_comment] = ACTIONS(56), - }, - [3983] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8421), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3984] = { - [sym_file_descriptor] = ACTIONS(6071), - [sym__concat] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6948), - [anon_sym_PIPE_AMP] = ACTIONS(6071), - [anon_sym_AMP_AMP] = ACTIONS(6071), - [anon_sym_PIPE_PIPE] = ACTIONS(6071), - [anon_sym_LT] = ACTIONS(6948), - [anon_sym_GT] = ACTIONS(6948), - [anon_sym_GT_GT] = ACTIONS(6071), - [anon_sym_AMP_GT] = ACTIONS(6948), - [anon_sym_AMP_GT_GT] = ACTIONS(6071), - [anon_sym_LT_AMP] = ACTIONS(6071), - [anon_sym_GT_AMP] = ACTIONS(6071), - [anon_sym_LT_LT] = ACTIONS(6948), - [anon_sym_LT_LT_DASH] = ACTIONS(6071), - [anon_sym_LT_LT_LT] = ACTIONS(6071), - [anon_sym_BQUOTE] = ACTIONS(6071), - [sym_comment] = ACTIONS(56), - }, - [3985] = { - [sym_file_descriptor] = ACTIONS(6075), - [sym__concat] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6075), - [anon_sym_AMP_AMP] = ACTIONS(6075), - [anon_sym_PIPE_PIPE] = ACTIONS(6075), - [anon_sym_LT] = ACTIONS(6950), - [anon_sym_GT] = ACTIONS(6950), - [anon_sym_GT_GT] = ACTIONS(6075), - [anon_sym_AMP_GT] = ACTIONS(6950), - [anon_sym_AMP_GT_GT] = ACTIONS(6075), - [anon_sym_LT_AMP] = ACTIONS(6075), - [anon_sym_GT_AMP] = ACTIONS(6075), - [anon_sym_LT_LT] = ACTIONS(6950), - [anon_sym_LT_LT_DASH] = ACTIONS(6075), - [anon_sym_LT_LT_LT] = ACTIONS(6075), - [anon_sym_BQUOTE] = ACTIONS(6075), - [sym_comment] = ACTIONS(56), - }, - [3986] = { - [sym_file_descriptor] = ACTIONS(7032), - [sym__concat] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7034), - [anon_sym_SEMI_SEMI] = ACTIONS(7034), - [anon_sym_PIPE_AMP] = ACTIONS(7034), - [anon_sym_AMP_AMP] = ACTIONS(7034), - [anon_sym_PIPE_PIPE] = ACTIONS(7034), - [anon_sym_LT] = ACTIONS(7034), - [anon_sym_GT] = ACTIONS(7034), - [anon_sym_GT_GT] = ACTIONS(7034), - [anon_sym_AMP_GT] = ACTIONS(7034), - [anon_sym_AMP_GT_GT] = ACTIONS(7034), - [anon_sym_LT_AMP] = ACTIONS(7034), - [anon_sym_GT_AMP] = ACTIONS(7034), - [anon_sym_LT_LT] = ACTIONS(7034), - [anon_sym_LT_LT_DASH] = ACTIONS(7034), - [anon_sym_LT_LT_LT] = ACTIONS(7034), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7034), - [anon_sym_LF] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - }, - [3987] = { - [sym_file_descriptor] = ACTIONS(7036), - [sym__concat] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7038), - [anon_sym_SEMI_SEMI] = ACTIONS(7038), - [anon_sym_PIPE_AMP] = ACTIONS(7038), - [anon_sym_AMP_AMP] = ACTIONS(7038), - [anon_sym_PIPE_PIPE] = ACTIONS(7038), - [anon_sym_LT] = ACTIONS(7038), - [anon_sym_GT] = ACTIONS(7038), - [anon_sym_GT_GT] = ACTIONS(7038), - [anon_sym_AMP_GT] = ACTIONS(7038), - [anon_sym_AMP_GT_GT] = ACTIONS(7038), - [anon_sym_LT_AMP] = ACTIONS(7038), - [anon_sym_GT_AMP] = ACTIONS(7038), - [anon_sym_LT_LT] = ACTIONS(7038), - [anon_sym_LT_LT_DASH] = ACTIONS(7038), - [anon_sym_LT_LT_LT] = ACTIONS(7038), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7038), - [anon_sym_LF] = ACTIONS(7038), - [anon_sym_AMP] = ACTIONS(7038), - }, - [3988] = { - [sym_file_descriptor] = ACTIONS(7040), - [sym__concat] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_SEMI_SEMI] = ACTIONS(7042), - [anon_sym_PIPE_AMP] = ACTIONS(7042), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7042), - [anon_sym_LT] = ACTIONS(7042), - [anon_sym_GT] = ACTIONS(7042), - [anon_sym_GT_GT] = ACTIONS(7042), - [anon_sym_AMP_GT] = ACTIONS(7042), - [anon_sym_AMP_GT_GT] = ACTIONS(7042), - [anon_sym_LT_AMP] = ACTIONS(7042), - [anon_sym_GT_AMP] = ACTIONS(7042), - [anon_sym_LT_LT] = ACTIONS(7042), - [anon_sym_LT_LT_DASH] = ACTIONS(7042), - [anon_sym_LT_LT_LT] = ACTIONS(7042), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7042), - [anon_sym_LF] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - }, - [3989] = { - [sym__heredoc_middle] = ACTIONS(6041), - [sym__heredoc_end] = ACTIONS(6041), - [anon_sym_DOLLAR] = ACTIONS(6930), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), - [sym_comment] = ACTIONS(56), - }, - [3990] = { - [sym__heredoc_middle] = ACTIONS(6045), - [sym__heredoc_end] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6932), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [sym_comment] = ACTIONS(56), - }, - [3991] = { - [sym__heredoc_middle] = ACTIONS(6049), - [sym__heredoc_end] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - }, - [3992] = { - [sym__heredoc_middle] = ACTIONS(6053), - [sym__heredoc_end] = ACTIONS(6053), - [anon_sym_DOLLAR] = ACTIONS(6936), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), - [sym_comment] = ACTIONS(56), - }, - [3993] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8423), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3994] = { - [sym__heredoc_middle] = ACTIONS(6059), - [sym__heredoc_end] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6940), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - }, - [3995] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8425), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3996] = { - [sym__heredoc_middle] = ACTIONS(6065), - [sym__heredoc_end] = ACTIONS(6065), - [anon_sym_DOLLAR] = ACTIONS(6944), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), - [sym_comment] = ACTIONS(56), - }, - [3997] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8427), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [3998] = { - [sym__heredoc_middle] = ACTIONS(6071), - [sym__heredoc_end] = ACTIONS(6071), - [anon_sym_DOLLAR] = ACTIONS(6948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), - [sym_comment] = ACTIONS(56), - }, - [3999] = { - [sym__heredoc_middle] = ACTIONS(6075), - [sym__heredoc_end] = ACTIONS(6075), - [anon_sym_DOLLAR] = ACTIONS(6950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), - [sym_comment] = ACTIONS(56), - }, - [4000] = { - [sym__concat] = ACTIONS(7032), - [anon_sym_RPAREN] = ACTIONS(7032), - [sym__special_characters] = ACTIONS(7721), - [anon_sym_DQUOTE] = ACTIONS(7032), - [anon_sym_DOLLAR] = ACTIONS(7721), - [sym_raw_string] = ACTIONS(7032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), - [anon_sym_BQUOTE] = ACTIONS(7032), - [anon_sym_LT_LPAREN] = ACTIONS(7032), - [anon_sym_GT_LPAREN] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7721), - }, - [4001] = { - [sym__concat] = ACTIONS(7036), - [anon_sym_RPAREN] = ACTIONS(7036), - [sym__special_characters] = ACTIONS(7723), - [anon_sym_DQUOTE] = ACTIONS(7036), - [anon_sym_DOLLAR] = ACTIONS(7723), - [sym_raw_string] = ACTIONS(7036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), - [anon_sym_BQUOTE] = ACTIONS(7036), - [anon_sym_LT_LPAREN] = ACTIONS(7036), - [anon_sym_GT_LPAREN] = ACTIONS(7036), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7723), - }, - [4002] = { - [sym__concat] = ACTIONS(7040), - [anon_sym_RPAREN] = ACTIONS(7040), - [sym__special_characters] = ACTIONS(7725), - [anon_sym_DQUOTE] = ACTIONS(7040), - [anon_sym_DOLLAR] = ACTIONS(7725), - [sym_raw_string] = ACTIONS(7040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), - [anon_sym_BQUOTE] = ACTIONS(7040), - [anon_sym_LT_LPAREN] = ACTIONS(7040), - [anon_sym_GT_LPAREN] = ACTIONS(7040), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7725), - }, - [4003] = { - [sym__concat] = ACTIONS(7032), - [anon_sym_SEMI_SEMI] = ACTIONS(7034), - [sym__special_characters] = ACTIONS(7034), - [anon_sym_DQUOTE] = ACTIONS(7034), - [anon_sym_DOLLAR] = ACTIONS(7034), - [sym_raw_string] = ACTIONS(7034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), - [anon_sym_BQUOTE] = ACTIONS(7034), - [anon_sym_LT_LPAREN] = ACTIONS(7034), - [anon_sym_GT_LPAREN] = ACTIONS(7034), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7034), - [anon_sym_SEMI] = ACTIONS(7034), - [anon_sym_LF] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - }, - [4004] = { - [sym__concat] = ACTIONS(7036), - [anon_sym_SEMI_SEMI] = ACTIONS(7038), - [sym__special_characters] = ACTIONS(7038), - [anon_sym_DQUOTE] = ACTIONS(7038), - [anon_sym_DOLLAR] = ACTIONS(7038), - [sym_raw_string] = ACTIONS(7038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), - [anon_sym_BQUOTE] = ACTIONS(7038), - [anon_sym_LT_LPAREN] = ACTIONS(7038), - [anon_sym_GT_LPAREN] = ACTIONS(7038), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7038), - [anon_sym_SEMI] = ACTIONS(7038), - [anon_sym_LF] = ACTIONS(7038), - [anon_sym_AMP] = ACTIONS(7038), - }, - [4005] = { - [sym__concat] = ACTIONS(7040), - [anon_sym_SEMI_SEMI] = ACTIONS(7042), - [sym__special_characters] = ACTIONS(7042), - [anon_sym_DQUOTE] = ACTIONS(7042), - [anon_sym_DOLLAR] = ACTIONS(7042), - [sym_raw_string] = ACTIONS(7042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), - [anon_sym_BQUOTE] = ACTIONS(7042), - [anon_sym_LT_LPAREN] = ACTIONS(7042), - [anon_sym_GT_LPAREN] = ACTIONS(7042), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7042), - [anon_sym_SEMI] = ACTIONS(7042), - [anon_sym_LF] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - }, - [4006] = { - [sym_file_descriptor] = ACTIONS(2563), - [sym_variable_name] = ACTIONS(2563), - [anon_sym_esac] = ACTIONS(2565), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_SEMI_SEMI] = ACTIONS(2565), - [anon_sym_PIPE_AMP] = ACTIONS(2565), - [anon_sym_AMP_AMP] = ACTIONS(2565), - [anon_sym_PIPE_PIPE] = ACTIONS(2565), - [anon_sym_LT] = ACTIONS(2565), - [anon_sym_GT] = ACTIONS(2565), - [anon_sym_GT_GT] = ACTIONS(2565), - [anon_sym_AMP_GT] = ACTIONS(2565), - [anon_sym_AMP_GT_GT] = ACTIONS(2565), - [anon_sym_LT_AMP] = ACTIONS(2565), - [anon_sym_GT_AMP] = ACTIONS(2565), - [sym__special_characters] = ACTIONS(2565), - [anon_sym_DQUOTE] = ACTIONS(2565), - [anon_sym_DOLLAR] = ACTIONS(2565), - [sym_raw_string] = ACTIONS(2565), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2565), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2565), - [anon_sym_BQUOTE] = ACTIONS(2565), - [anon_sym_LT_LPAREN] = ACTIONS(2565), - [anon_sym_GT_LPAREN] = ACTIONS(2565), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2565), - [anon_sym_SEMI] = ACTIONS(2565), - [anon_sym_LF] = ACTIONS(2565), - [anon_sym_AMP] = ACTIONS(2565), - }, - [4007] = { - [sym_concatenation] = STATE(661), - [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), - [aux_sym_for_statement_repeat1] = STATE(1273), - [anon_sym_RPAREN] = ACTIONS(8429), - [sym__special_characters] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1287), - [anon_sym_DOLLAR] = ACTIONS(1289), - [sym_raw_string] = ACTIONS(1291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), - [anon_sym_BQUOTE] = ACTIONS(1297), - [anon_sym_LT_LPAREN] = ACTIONS(1299), - [anon_sym_GT_LPAREN] = ACTIONS(1299), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1301), - }, - [4008] = { - [sym_string] = STATE(4221), - [sym_simple_expansion] = STATE(4221), - [sym_string_expansion] = STATE(4221), - [sym_expansion] = STATE(4221), - [sym_command_substitution] = STATE(4221), - [sym_process_substitution] = STATE(4221), - [sym__special_characters] = ACTIONS(8431), - [anon_sym_DQUOTE] = ACTIONS(7414), - [anon_sym_DOLLAR] = ACTIONS(7416), - [sym_raw_string] = ACTIONS(8433), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7420), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7422), - [anon_sym_BQUOTE] = ACTIONS(7424), - [anon_sym_LT_LPAREN] = ACTIONS(7426), - [anon_sym_GT_LPAREN] = ACTIONS(7426), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8431), - }, - [4009] = { - [aux_sym_concatenation_repeat1] = STATE(4222), - [sym_file_descriptor] = ACTIONS(790), - [sym__concat] = ACTIONS(7955), - [sym_variable_name] = ACTIONS(790), - [anon_sym_esac] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(792), - [anon_sym_SEMI_SEMI] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [anon_sym_LT] = ACTIONS(792), - [anon_sym_GT] = ACTIONS(792), - [anon_sym_GT_GT] = ACTIONS(792), - [anon_sym_AMP_GT] = ACTIONS(792), - [anon_sym_AMP_GT_GT] = ACTIONS(792), - [anon_sym_LT_AMP] = ACTIONS(792), - [anon_sym_GT_AMP] = ACTIONS(792), - [sym__special_characters] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(792), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(792), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LF] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(792), - }, - [4010] = { - [sym_file_descriptor] = ACTIONS(794), - [sym__concat] = ACTIONS(794), - [sym_variable_name] = ACTIONS(794), - [anon_sym_esac] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_SEMI_SEMI] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_GT] = ACTIONS(796), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_AMP_GT] = ACTIONS(796), - [anon_sym_AMP_GT_GT] = ACTIONS(796), - [anon_sym_LT_AMP] = ACTIONS(796), - [anon_sym_GT_AMP] = ACTIONS(796), - [sym__special_characters] = ACTIONS(796), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(796), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(796), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_LF] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - }, - [4011] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(8435), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [4012] = { - [sym_file_descriptor] = ACTIONS(826), - [sym__concat] = ACTIONS(826), - [sym_variable_name] = ACTIONS(826), - [anon_sym_esac] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_SEMI_SEMI] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(828), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(828), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), - [sym__special_characters] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(828), - }, - [4013] = { - [sym_file_descriptor] = ACTIONS(830), - [sym__concat] = ACTIONS(830), - [sym_variable_name] = ACTIONS(830), - [anon_sym_esac] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_GT] = ACTIONS(832), - [anon_sym_GT_GT] = ACTIONS(832), - [anon_sym_AMP_GT] = ACTIONS(832), - [anon_sym_AMP_GT_GT] = ACTIONS(832), - [anon_sym_LT_AMP] = ACTIONS(832), - [anon_sym_GT_AMP] = ACTIONS(832), - [sym__special_characters] = ACTIONS(832), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(832), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(832), - [anon_sym_AMP] = ACTIONS(832), - }, - [4014] = { - [sym_file_descriptor] = ACTIONS(834), - [sym__concat] = ACTIONS(834), - [sym_variable_name] = ACTIONS(834), - [anon_sym_esac] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_SEMI_SEMI] = ACTIONS(836), - [anon_sym_PIPE_AMP] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_AMP_GT] = ACTIONS(836), - [anon_sym_AMP_GT_GT] = ACTIONS(836), - [anon_sym_LT_AMP] = ACTIONS(836), - [anon_sym_GT_AMP] = ACTIONS(836), - [sym__special_characters] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(836), - [sym_raw_string] = ACTIONS(836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), - [anon_sym_BQUOTE] = ACTIONS(836), - [anon_sym_LT_LPAREN] = ACTIONS(836), - [anon_sym_GT_LPAREN] = ACTIONS(836), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(836), - }, - [4015] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(8437), - [sym_comment] = ACTIONS(56), - }, - [4016] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4227), - [anon_sym_RBRACE] = ACTIONS(8439), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8441), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4017] = { - [sym_subscript] = STATE(4231), - [sym_variable_name] = ACTIONS(8443), - [anon_sym_DOLLAR] = ACTIONS(8445), - [anon_sym_DASH] = ACTIONS(8445), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8447), - [anon_sym_STAR] = ACTIONS(8445), - [anon_sym_AT] = ACTIONS(8445), - [anon_sym_QMARK] = ACTIONS(8445), - [anon_sym_0] = ACTIONS(8449), - [anon_sym__] = ACTIONS(8449), - }, - [4018] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4234), - [anon_sym_RBRACE] = ACTIONS(8451), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8453), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4019] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4237), - [anon_sym_RBRACE] = ACTIONS(8455), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8457), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4020] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(8459), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [4021] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(8459), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [4022] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(8459), - [sym_comment] = ACTIONS(56), - }, - [4023] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(8459), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [4024] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(8461), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [4025] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(8461), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [4026] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(3776), - [sym_file_descriptor] = ACTIONS(6677), - [anon_sym_esac] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_SEMI_SEMI] = ACTIONS(2687), - [anon_sym_PIPE_AMP] = ACTIONS(2687), - [anon_sym_AMP_AMP] = ACTIONS(2687), - [anon_sym_PIPE_PIPE] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(6681), - [anon_sym_GT] = ACTIONS(6681), - [anon_sym_GT_GT] = ACTIONS(6681), - [anon_sym_AMP_GT] = ACTIONS(6681), - [anon_sym_AMP_GT_GT] = ACTIONS(6681), - [anon_sym_LT_AMP] = ACTIONS(6681), - [anon_sym_GT_AMP] = ACTIONS(6681), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6683), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_LF] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2687), - }, - [4027] = { - [sym_compound_statement] = STATE(4240), - [anon_sym_LBRACE] = ACTIONS(486), - [sym_comment] = ACTIONS(56), - }, - [4028] = { - [anon_sym_LT] = ACTIONS(8463), - [anon_sym_GT] = ACTIONS(8463), - [anon_sym_GT_GT] = ACTIONS(8465), - [anon_sym_AMP_GT] = ACTIONS(8463), - [anon_sym_AMP_GT_GT] = ACTIONS(8465), - [anon_sym_LT_AMP] = ACTIONS(8465), - [anon_sym_GT_AMP] = ACTIONS(8465), - [sym_comment] = ACTIONS(56), - }, - [4029] = { - [sym_concatenation] = STATE(1378), - [sym_string] = STATE(4245), - [sym_simple_expansion] = STATE(4245), - [sym_string_expansion] = STATE(4245), - [sym_expansion] = STATE(4245), - [sym_command_substitution] = STATE(4245), - [sym_process_substitution] = STATE(4245), - [sym__special_characters] = ACTIONS(8467), - [anon_sym_DQUOTE] = ACTIONS(8469), - [anon_sym_DOLLAR] = ACTIONS(8471), - [sym_raw_string] = ACTIONS(8473), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8477), - [anon_sym_BQUOTE] = ACTIONS(8479), - [anon_sym_LT_LPAREN] = ACTIONS(8481), - [anon_sym_GT_LPAREN] = ACTIONS(8481), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8483), - }, - [4030] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(3776), - [sym_file_descriptor] = ACTIONS(6677), - [anon_sym_esac] = ACTIONS(3113), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_SEMI_SEMI] = ACTIONS(3113), - [anon_sym_PIPE_AMP] = ACTIONS(3113), - [anon_sym_AMP_AMP] = ACTIONS(3113), - [anon_sym_PIPE_PIPE] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(6681), - [anon_sym_GT] = ACTIONS(6681), - [anon_sym_GT_GT] = ACTIONS(6681), - [anon_sym_AMP_GT] = ACTIONS(6681), - [anon_sym_AMP_GT_GT] = ACTIONS(6681), - [anon_sym_LT_AMP] = ACTIONS(6681), - [anon_sym_GT_AMP] = ACTIONS(6681), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6683), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3113), - [anon_sym_LF] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3113), - }, - [4031] = { - [sym_variable_name] = ACTIONS(1279), - [anon_sym_esac] = ACTIONS(1281), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_SEMI_SEMI] = ACTIONS(1281), - [anon_sym_PIPE_AMP] = ACTIONS(1281), - [anon_sym_AMP_AMP] = ACTIONS(1281), - [anon_sym_PIPE_PIPE] = ACTIONS(1281), - [sym__special_characters] = ACTIONS(1281), - [anon_sym_DQUOTE] = ACTIONS(1281), - [anon_sym_DOLLAR] = ACTIONS(1281), - [sym_raw_string] = ACTIONS(1281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), - [anon_sym_BQUOTE] = ACTIONS(1281), - [anon_sym_LT_LPAREN] = ACTIONS(1281), - [anon_sym_GT_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1281), - [sym_word] = ACTIONS(1281), - [anon_sym_SEMI] = ACTIONS(1281), - [anon_sym_LF] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - }, - [4032] = { - [sym_concatenation] = STATE(661), - [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), - [aux_sym_for_statement_repeat1] = STATE(4251), - [anon_sym_RPAREN] = ACTIONS(8485), - [sym__special_characters] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1287), - [anon_sym_DOLLAR] = ACTIONS(1289), - [sym_raw_string] = ACTIONS(1291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), - [anon_sym_BQUOTE] = ACTIONS(1297), - [anon_sym_LT_LPAREN] = ACTIONS(1299), - [anon_sym_GT_LPAREN] = ACTIONS(1299), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1301), - }, - [4033] = { - [aux_sym_concatenation_repeat1] = STATE(3702), - [sym__concat] = ACTIONS(7436), - [sym_variable_name] = ACTIONS(1303), - [anon_sym_esac] = ACTIONS(1307), - [anon_sym_PIPE] = ACTIONS(1307), - [anon_sym_SEMI_SEMI] = ACTIONS(1307), - [anon_sym_PIPE_AMP] = ACTIONS(1307), - [anon_sym_AMP_AMP] = ACTIONS(1307), - [anon_sym_PIPE_PIPE] = ACTIONS(1307), - [sym__special_characters] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1307), - [sym_raw_string] = ACTIONS(1307), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1307), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1307), - [anon_sym_BQUOTE] = ACTIONS(1307), - [anon_sym_LT_LPAREN] = ACTIONS(1307), - [anon_sym_GT_LPAREN] = ACTIONS(1307), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1307), - [sym_word] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1307), - [anon_sym_LF] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1307), - }, - [4034] = { - [aux_sym_concatenation_repeat1] = STATE(3702), - [sym__concat] = ACTIONS(7436), - [sym_variable_name] = ACTIONS(1279), - [anon_sym_esac] = ACTIONS(1281), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_SEMI_SEMI] = ACTIONS(1281), - [anon_sym_PIPE_AMP] = ACTIONS(1281), - [anon_sym_AMP_AMP] = ACTIONS(1281), - [anon_sym_PIPE_PIPE] = ACTIONS(1281), - [sym__special_characters] = ACTIONS(1281), - [anon_sym_DQUOTE] = ACTIONS(1281), - [anon_sym_DOLLAR] = ACTIONS(1281), - [sym_raw_string] = ACTIONS(1281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), - [anon_sym_BQUOTE] = ACTIONS(1281), - [anon_sym_LT_LPAREN] = ACTIONS(1281), - [anon_sym_GT_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1281), - [sym_word] = ACTIONS(1281), - [anon_sym_SEMI] = ACTIONS(1281), - [anon_sym_LF] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - }, - [4035] = { - [sym__concat] = ACTIONS(1890), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_esac] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [4036] = { - [aux_sym_concatenation_repeat1] = STATE(4036), - [sym__concat] = ACTIONS(8487), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_esac] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [4037] = { - [sym__concat] = ACTIONS(1927), - [sym_variable_name] = ACTIONS(1927), - [anon_sym_esac] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1929), - [anon_sym_PIPE_AMP] = ACTIONS(1929), - [anon_sym_AMP_AMP] = ACTIONS(1929), - [anon_sym_PIPE_PIPE] = ACTIONS(1929), - [sym__special_characters] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1929), - [sym_raw_string] = ACTIONS(1929), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), - [anon_sym_BQUOTE] = ACTIONS(1929), - [anon_sym_LT_LPAREN] = ACTIONS(1929), - [anon_sym_GT_LPAREN] = ACTIONS(1929), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1929), - [sym_word] = ACTIONS(1929), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - }, - [4038] = { - [sym_concatenation] = STATE(4255), - [sym_string] = STATE(4254), - [sym_simple_expansion] = STATE(4254), - [sym_string_expansion] = STATE(4254), - [sym_expansion] = STATE(4254), - [sym_command_substitution] = STATE(4254), - [sym_process_substitution] = STATE(4254), - [anon_sym_RBRACE] = ACTIONS(8490), - [sym__special_characters] = ACTIONS(8492), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(8494), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8496), - }, - [4039] = { - [sym__concat] = ACTIONS(1972), - [sym_variable_name] = ACTIONS(1972), - [anon_sym_esac] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(1974), - [sym__special_characters] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(1974), - [sym_raw_string] = ACTIONS(1974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_BQUOTE] = ACTIONS(1974), - [anon_sym_LT_LPAREN] = ACTIONS(1974), - [anon_sym_GT_LPAREN] = ACTIONS(1974), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1974), - [sym_word] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_LF] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - }, - [4040] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8498), - }, - [4041] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8500), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4042] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(8502), - [sym_comment] = ACTIONS(56), - }, - [4043] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4261), - [anon_sym_RBRACE] = ACTIONS(8504), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8506), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4044] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4264), - [anon_sym_RBRACE] = ACTIONS(8508), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8510), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4045] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4266), - [anon_sym_RBRACE] = ACTIONS(8490), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8512), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4046] = { - [sym__concat] = ACTIONS(2026), - [sym_variable_name] = ACTIONS(2026), - [anon_sym_esac] = ACTIONS(2028), - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_SEMI_SEMI] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(2028), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [sym__special_characters] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [anon_sym_DOLLAR] = ACTIONS(2028), - [sym_raw_string] = ACTIONS(2028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), - [anon_sym_BQUOTE] = ACTIONS(2028), - [anon_sym_LT_LPAREN] = ACTIONS(2028), - [anon_sym_GT_LPAREN] = ACTIONS(2028), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2028), - [sym_word] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - }, - [4047] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8514), - }, - [4048] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8516), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4049] = { - [sym__concat] = ACTIONS(2034), - [sym_variable_name] = ACTIONS(2034), - [anon_sym_esac] = ACTIONS(2036), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_SEMI_SEMI] = ACTIONS(2036), - [anon_sym_PIPE_AMP] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [sym__special_characters] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2036), - [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(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2036), - [sym_word] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_LF] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - }, - [4050] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8518), - }, - [4051] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8490), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4052] = { - [sym__concat] = ACTIONS(2196), - [sym_variable_name] = ACTIONS(2196), - [anon_sym_esac] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_SEMI_SEMI] = ACTIONS(2198), - [anon_sym_PIPE_AMP] = ACTIONS(2198), - [anon_sym_AMP_AMP] = ACTIONS(2198), - [anon_sym_PIPE_PIPE] = ACTIONS(2198), - [sym__special_characters] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(2198), - [sym_raw_string] = ACTIONS(2198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), - [anon_sym_BQUOTE] = ACTIONS(2198), - [anon_sym_LT_LPAREN] = ACTIONS(2198), - [anon_sym_GT_LPAREN] = ACTIONS(2198), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2198), - [sym_word] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - }, - [4053] = { - [sym__concat] = ACTIONS(2402), - [sym_variable_name] = ACTIONS(2402), - [anon_sym_esac] = ACTIONS(2404), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_SEMI_SEMI] = ACTIONS(2404), - [anon_sym_PIPE_AMP] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [sym__special_characters] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2404), - [anon_sym_DOLLAR] = ACTIONS(2404), - [sym_raw_string] = ACTIONS(2404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2404), - [anon_sym_LT_LPAREN] = ACTIONS(2404), - [anon_sym_GT_LPAREN] = ACTIONS(2404), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2404), - [sym_word] = ACTIONS(2404), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LF] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - }, - [4054] = { - [sym__concat] = ACTIONS(1890), - [anon_sym_esac] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [4055] = { - [aux_sym_concatenation_repeat1] = STATE(4055), - [sym__concat] = ACTIONS(8520), - [anon_sym_esac] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [4056] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_esac] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1929), - [anon_sym_PIPE_AMP] = ACTIONS(1929), - [anon_sym_AMP_AMP] = ACTIONS(1929), - [anon_sym_PIPE_PIPE] = ACTIONS(1929), - [sym__special_characters] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1929), - [sym_raw_string] = ACTIONS(1929), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), - [anon_sym_BQUOTE] = ACTIONS(1929), - [anon_sym_LT_LPAREN] = ACTIONS(1929), - [anon_sym_GT_LPAREN] = ACTIONS(1929), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1929), - [sym_word] = ACTIONS(1929), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - }, - [4057] = { - [sym_concatenation] = STATE(4273), - [sym_string] = STATE(4272), - [sym_simple_expansion] = STATE(4272), - [sym_string_expansion] = STATE(4272), - [sym_expansion] = STATE(4272), - [sym_command_substitution] = STATE(4272), - [sym_process_substitution] = STATE(4272), - [anon_sym_RBRACE] = ACTIONS(8523), - [sym__special_characters] = ACTIONS(8525), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(8527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8529), - }, - [4058] = { - [sym__concat] = ACTIONS(1972), - [anon_sym_esac] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(1974), - [sym__special_characters] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(1974), - [sym_raw_string] = ACTIONS(1974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_BQUOTE] = ACTIONS(1974), - [anon_sym_LT_LPAREN] = ACTIONS(1974), - [anon_sym_GT_LPAREN] = ACTIONS(1974), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1974), - [sym_word] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_LF] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - }, - [4059] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8531), - }, - [4060] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8533), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4061] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(8535), - [sym_comment] = ACTIONS(56), - }, - [4062] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4279), - [anon_sym_RBRACE] = ACTIONS(8537), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8539), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4063] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4282), - [anon_sym_RBRACE] = ACTIONS(8541), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8543), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4064] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4284), - [anon_sym_RBRACE] = ACTIONS(8523), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8545), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4065] = { - [sym__concat] = ACTIONS(2026), - [anon_sym_esac] = ACTIONS(2028), - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_SEMI_SEMI] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(2028), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [sym__special_characters] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [anon_sym_DOLLAR] = ACTIONS(2028), - [sym_raw_string] = ACTIONS(2028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), - [anon_sym_BQUOTE] = ACTIONS(2028), - [anon_sym_LT_LPAREN] = ACTIONS(2028), - [anon_sym_GT_LPAREN] = ACTIONS(2028), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2028), - [sym_word] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - }, - [4066] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8547), - }, - [4067] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8549), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4068] = { - [sym__concat] = ACTIONS(2034), - [anon_sym_esac] = ACTIONS(2036), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_SEMI_SEMI] = ACTIONS(2036), - [anon_sym_PIPE_AMP] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [sym__special_characters] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2036), - [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(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2036), - [sym_word] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_LF] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - }, - [4069] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8551), - }, - [4070] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8523), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4071] = { - [sym__concat] = ACTIONS(2196), - [anon_sym_esac] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_SEMI_SEMI] = ACTIONS(2198), - [anon_sym_PIPE_AMP] = ACTIONS(2198), - [anon_sym_AMP_AMP] = ACTIONS(2198), - [anon_sym_PIPE_PIPE] = ACTIONS(2198), - [sym__special_characters] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(2198), - [sym_raw_string] = ACTIONS(2198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), - [anon_sym_BQUOTE] = ACTIONS(2198), - [anon_sym_LT_LPAREN] = ACTIONS(2198), - [anon_sym_GT_LPAREN] = ACTIONS(2198), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2198), - [sym_word] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - }, - [4072] = { - [sym__concat] = ACTIONS(2402), - [anon_sym_esac] = ACTIONS(2404), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_SEMI_SEMI] = ACTIONS(2404), - [anon_sym_PIPE_AMP] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [sym__special_characters] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2404), - [anon_sym_DOLLAR] = ACTIONS(2404), - [sym_raw_string] = ACTIONS(2404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2404), - [anon_sym_LT_LPAREN] = ACTIONS(2404), - [anon_sym_GT_LPAREN] = ACTIONS(2404), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2404), - [sym_word] = ACTIONS(2404), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LF] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - }, - [4073] = { - [sym_file_descriptor] = ACTIONS(3293), - [sym__concat] = ACTIONS(3293), - [anon_sym_esac] = ACTIONS(3295), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_SEMI_SEMI] = ACTIONS(3295), - [anon_sym_PIPE_AMP] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_EQ_TILDE] = ACTIONS(3295), - [anon_sym_EQ_EQ] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_GT_GT] = ACTIONS(3295), - [anon_sym_AMP_GT] = ACTIONS(3295), - [anon_sym_AMP_GT_GT] = ACTIONS(3295), - [anon_sym_LT_AMP] = ACTIONS(3295), - [anon_sym_GT_AMP] = ACTIONS(3295), - [anon_sym_LT_LT] = ACTIONS(3295), - [anon_sym_LT_LT_DASH] = ACTIONS(3295), - [anon_sym_LT_LT_LT] = ACTIONS(3295), - [sym__special_characters] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_DOLLAR] = ACTIONS(3295), - [sym_raw_string] = ACTIONS(3295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), - [anon_sym_BQUOTE] = ACTIONS(3295), - [anon_sym_LT_LPAREN] = ACTIONS(3295), - [anon_sym_GT_LPAREN] = ACTIONS(3295), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - }, - [4074] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8553), - [sym_comment] = ACTIONS(56), - }, - [4075] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8555), - [sym_comment] = ACTIONS(56), - }, - [4076] = { - [anon_sym_RBRACE] = ACTIONS(8555), - [sym_comment] = ACTIONS(56), - }, - [4077] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4291), - [anon_sym_RBRACE] = ACTIONS(8557), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4078] = { - [sym_file_descriptor] = ACTIONS(3357), - [sym__concat] = ACTIONS(3357), - [anon_sym_esac] = ACTIONS(3359), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_PIPE_AMP] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_EQ_TILDE] = ACTIONS(3359), - [anon_sym_EQ_EQ] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_GT_GT] = ACTIONS(3359), - [anon_sym_AMP_GT] = ACTIONS(3359), - [anon_sym_AMP_GT_GT] = ACTIONS(3359), - [anon_sym_LT_AMP] = ACTIONS(3359), - [anon_sym_GT_AMP] = ACTIONS(3359), - [anon_sym_LT_LT] = ACTIONS(3359), - [anon_sym_LT_LT_DASH] = ACTIONS(3359), - [anon_sym_LT_LT_LT] = ACTIONS(3359), - [sym__special_characters] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_DOLLAR] = ACTIONS(3359), - [sym_raw_string] = ACTIONS(3359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), - [anon_sym_BQUOTE] = ACTIONS(3359), - [anon_sym_LT_LPAREN] = ACTIONS(3359), - [anon_sym_GT_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - }, - [4079] = { - [sym_concatenation] = STATE(4294), - [sym_string] = STATE(4293), - [sym_simple_expansion] = STATE(4293), - [sym_string_expansion] = STATE(4293), - [sym_expansion] = STATE(4293), - [sym_command_substitution] = STATE(4293), - [sym_process_substitution] = STATE(4293), - [anon_sym_RBRACE] = ACTIONS(8555), - [sym__special_characters] = ACTIONS(8559), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(8561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8563), - }, - [4080] = { - [sym_file_descriptor] = ACTIONS(3402), - [sym__concat] = ACTIONS(3402), - [anon_sym_esac] = ACTIONS(3404), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_SEMI_SEMI] = ACTIONS(3404), - [anon_sym_PIPE_AMP] = ACTIONS(3404), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3404), - [anon_sym_EQ_TILDE] = ACTIONS(3404), - [anon_sym_EQ_EQ] = ACTIONS(3404), - [anon_sym_LT] = ACTIONS(3404), - [anon_sym_GT] = ACTIONS(3404), - [anon_sym_GT_GT] = ACTIONS(3404), - [anon_sym_AMP_GT] = ACTIONS(3404), - [anon_sym_AMP_GT_GT] = ACTIONS(3404), - [anon_sym_LT_AMP] = ACTIONS(3404), - [anon_sym_GT_AMP] = ACTIONS(3404), - [anon_sym_LT_LT] = ACTIONS(3404), - [anon_sym_LT_LT_DASH] = ACTIONS(3404), - [anon_sym_LT_LT_LT] = ACTIONS(3404), - [sym__special_characters] = ACTIONS(3404), - [anon_sym_DQUOTE] = ACTIONS(3404), - [anon_sym_DOLLAR] = ACTIONS(3404), - [sym_raw_string] = ACTIONS(3404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), - [anon_sym_BQUOTE] = ACTIONS(3404), - [anon_sym_LT_LPAREN] = ACTIONS(3404), - [anon_sym_GT_LPAREN] = ACTIONS(3404), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3404), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - }, - [4081] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8565), - }, - [4082] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8567), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4083] = { - [sym_file_descriptor] = ACTIONS(3410), - [sym__concat] = ACTIONS(3410), - [anon_sym_esac] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [anon_sym_EQ_TILDE] = ACTIONS(3412), - [anon_sym_EQ_EQ] = ACTIONS(3412), - [anon_sym_LT] = ACTIONS(3412), - [anon_sym_GT] = ACTIONS(3412), - [anon_sym_GT_GT] = ACTIONS(3412), - [anon_sym_AMP_GT] = ACTIONS(3412), - [anon_sym_AMP_GT_GT] = ACTIONS(3412), - [anon_sym_LT_AMP] = ACTIONS(3412), - [anon_sym_GT_AMP] = ACTIONS(3412), - [anon_sym_LT_LT] = ACTIONS(3412), - [anon_sym_LT_LT_DASH] = ACTIONS(3412), - [anon_sym_LT_LT_LT] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(3412), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3412), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - }, - [4084] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8569), - }, - [4085] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8571), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4086] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8573), - }, - [4087] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8555), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4088] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4301), - [anon_sym_RBRACE] = ACTIONS(8575), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4089] = { - [sym_file_descriptor] = ACTIONS(3422), - [sym__concat] = ACTIONS(3422), - [anon_sym_esac] = ACTIONS(3424), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_SEMI_SEMI] = ACTIONS(3424), - [anon_sym_PIPE_AMP] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_PIPE_PIPE] = ACTIONS(3424), - [anon_sym_EQ_TILDE] = ACTIONS(3424), - [anon_sym_EQ_EQ] = ACTIONS(3424), - [anon_sym_LT] = ACTIONS(3424), - [anon_sym_GT] = ACTIONS(3424), - [anon_sym_GT_GT] = ACTIONS(3424), - [anon_sym_AMP_GT] = ACTIONS(3424), - [anon_sym_AMP_GT_GT] = ACTIONS(3424), - [anon_sym_LT_AMP] = ACTIONS(3424), - [anon_sym_GT_AMP] = ACTIONS(3424), - [anon_sym_LT_LT] = ACTIONS(3424), - [anon_sym_LT_LT_DASH] = ACTIONS(3424), - [anon_sym_LT_LT_LT] = ACTIONS(3424), - [sym__special_characters] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [anon_sym_DOLLAR] = ACTIONS(3424), - [sym_raw_string] = ACTIONS(3424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), - [anon_sym_BQUOTE] = ACTIONS(3424), - [anon_sym_LT_LPAREN] = ACTIONS(3424), - [anon_sym_GT_LPAREN] = ACTIONS(3424), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - }, - [4090] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4303), - [anon_sym_RBRACE] = ACTIONS(8577), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4091] = { - [sym_file_redirect] = STATE(1882), - [sym_file_descriptor] = ACTIONS(7979), - [anon_sym_esac] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_SEMI_SEMI] = ACTIONS(2794), - [anon_sym_PIPE_AMP] = ACTIONS(2794), - [anon_sym_AMP_AMP] = ACTIONS(2794), - [anon_sym_PIPE_PIPE] = ACTIONS(2794), - [anon_sym_LT] = ACTIONS(7981), - [anon_sym_GT] = ACTIONS(7981), - [anon_sym_GT_GT] = ACTIONS(7981), - [anon_sym_AMP_GT] = ACTIONS(7981), - [anon_sym_AMP_GT_GT] = ACTIONS(7981), - [anon_sym_LT_AMP] = ACTIONS(7981), - [anon_sym_GT_AMP] = ACTIONS(7981), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_LF] = ACTIONS(2794), - [anon_sym_AMP] = ACTIONS(2794), - }, - [4092] = { - [aux_sym_concatenation_repeat1] = STATE(4095), - [sym_file_descriptor] = ACTIONS(1241), - [sym__concat] = ACTIONS(8173), - [anon_sym_esac] = ACTIONS(4044), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_SEMI_SEMI] = ACTIONS(4044), - [anon_sym_PIPE_AMP] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_PIPE_PIPE] = ACTIONS(4044), - [anon_sym_LT] = ACTIONS(4044), - [anon_sym_GT] = ACTIONS(4044), - [anon_sym_GT_GT] = ACTIONS(4044), - [anon_sym_AMP_GT] = ACTIONS(4044), - [anon_sym_AMP_GT_GT] = ACTIONS(4044), - [anon_sym_LT_AMP] = ACTIONS(4044), - [anon_sym_GT_AMP] = ACTIONS(4044), - [anon_sym_LT_LT] = ACTIONS(4044), - [anon_sym_LT_LT_DASH] = ACTIONS(4044), - [anon_sym_LT_LT_LT] = ACTIONS(4044), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4044), - }, - [4093] = { - [aux_sym_concatenation_repeat1] = STATE(4095), - [sym_file_descriptor] = ACTIONS(1245), - [sym__concat] = ACTIONS(8173), - [anon_sym_esac] = ACTIONS(4046), - [anon_sym_PIPE] = ACTIONS(4046), - [anon_sym_SEMI_SEMI] = ACTIONS(4046), - [anon_sym_PIPE_AMP] = ACTIONS(4046), - [anon_sym_AMP_AMP] = ACTIONS(4046), - [anon_sym_PIPE_PIPE] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(4046), - [anon_sym_GT] = ACTIONS(4046), - [anon_sym_GT_GT] = ACTIONS(4046), - [anon_sym_AMP_GT] = ACTIONS(4046), - [anon_sym_AMP_GT_GT] = ACTIONS(4046), - [anon_sym_LT_AMP] = ACTIONS(4046), - [anon_sym_GT_AMP] = ACTIONS(4046), - [anon_sym_LT_LT] = ACTIONS(4046), - [anon_sym_LT_LT_DASH] = ACTIONS(4046), - [anon_sym_LT_LT_LT] = ACTIONS(4046), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4046), - [anon_sym_AMP] = ACTIONS(4046), - }, - [4094] = { - [sym_string] = STATE(4304), - [sym_simple_expansion] = STATE(4304), - [sym_string_expansion] = STATE(4304), - [sym_expansion] = STATE(4304), - [sym_command_substitution] = STATE(4304), - [sym_process_substitution] = STATE(4304), - [sym__special_characters] = ACTIONS(8579), - [anon_sym_DQUOTE] = ACTIONS(7538), - [anon_sym_DOLLAR] = ACTIONS(7540), - [sym_raw_string] = ACTIONS(8581), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7544), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7546), - [anon_sym_BQUOTE] = ACTIONS(7548), - [anon_sym_LT_LPAREN] = ACTIONS(7550), - [anon_sym_GT_LPAREN] = ACTIONS(7550), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8579), - }, - [4095] = { - [aux_sym_concatenation_repeat1] = STATE(4305), - [sym_file_descriptor] = ACTIONS(790), - [sym__concat] = ACTIONS(8173), - [anon_sym_esac] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(792), - [anon_sym_SEMI_SEMI] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [anon_sym_LT] = ACTIONS(792), - [anon_sym_GT] = ACTIONS(792), - [anon_sym_GT_GT] = ACTIONS(792), - [anon_sym_AMP_GT] = ACTIONS(792), - [anon_sym_AMP_GT_GT] = ACTIONS(792), - [anon_sym_LT_AMP] = ACTIONS(792), - [anon_sym_GT_AMP] = ACTIONS(792), - [anon_sym_LT_LT] = ACTIONS(792), - [anon_sym_LT_LT_DASH] = ACTIONS(792), - [anon_sym_LT_LT_LT] = ACTIONS(792), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LF] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(792), - }, - [4096] = { - [sym_file_descriptor] = ACTIONS(794), - [sym__concat] = ACTIONS(794), - [anon_sym_esac] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_SEMI_SEMI] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_GT] = ACTIONS(796), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_AMP_GT] = ACTIONS(796), - [anon_sym_AMP_GT_GT] = ACTIONS(796), - [anon_sym_LT_AMP] = ACTIONS(796), - [anon_sym_GT_AMP] = ACTIONS(796), - [anon_sym_LT_LT] = ACTIONS(796), - [anon_sym_LT_LT_DASH] = ACTIONS(796), - [anon_sym_LT_LT_LT] = ACTIONS(796), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_LF] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - }, - [4097] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(8583), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [4098] = { - [sym_file_descriptor] = ACTIONS(826), - [sym__concat] = ACTIONS(826), - [anon_sym_esac] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_SEMI_SEMI] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(828), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(828), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), - [anon_sym_LT_LT] = ACTIONS(828), - [anon_sym_LT_LT_DASH] = ACTIONS(828), - [anon_sym_LT_LT_LT] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(828), - }, - [4099] = { - [sym_file_descriptor] = ACTIONS(830), - [sym__concat] = ACTIONS(830), - [anon_sym_esac] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_GT] = ACTIONS(832), - [anon_sym_GT_GT] = ACTIONS(832), - [anon_sym_AMP_GT] = ACTIONS(832), - [anon_sym_AMP_GT_GT] = ACTIONS(832), - [anon_sym_LT_AMP] = ACTIONS(832), - [anon_sym_GT_AMP] = ACTIONS(832), - [anon_sym_LT_LT] = ACTIONS(832), - [anon_sym_LT_LT_DASH] = ACTIONS(832), - [anon_sym_LT_LT_LT] = ACTIONS(832), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(832), - [anon_sym_AMP] = ACTIONS(832), - }, - [4100] = { - [sym_file_descriptor] = ACTIONS(834), - [sym__concat] = ACTIONS(834), - [anon_sym_esac] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_SEMI_SEMI] = ACTIONS(836), - [anon_sym_PIPE_AMP] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_AMP_GT] = ACTIONS(836), - [anon_sym_AMP_GT_GT] = ACTIONS(836), - [anon_sym_LT_AMP] = ACTIONS(836), - [anon_sym_GT_AMP] = ACTIONS(836), - [anon_sym_LT_LT] = ACTIONS(836), - [anon_sym_LT_LT_DASH] = ACTIONS(836), - [anon_sym_LT_LT_LT] = ACTIONS(836), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(836), - }, - [4101] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(8585), - [sym_comment] = ACTIONS(56), - }, - [4102] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4310), - [anon_sym_RBRACE] = ACTIONS(8587), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8589), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4103] = { - [sym_subscript] = STATE(4314), - [sym_variable_name] = ACTIONS(8591), - [anon_sym_DOLLAR] = ACTIONS(8593), - [anon_sym_DASH] = ACTIONS(8593), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8595), - [anon_sym_STAR] = ACTIONS(8593), - [anon_sym_AT] = ACTIONS(8593), - [anon_sym_QMARK] = ACTIONS(8593), - [anon_sym_0] = ACTIONS(8597), - [anon_sym__] = ACTIONS(8597), - }, - [4104] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4317), - [anon_sym_RBRACE] = ACTIONS(8599), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8601), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4105] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4320), - [anon_sym_RBRACE] = ACTIONS(8603), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8605), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4106] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(8607), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [4107] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(8607), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [4108] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(8607), - [sym_comment] = ACTIONS(56), - }, - [4109] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(8607), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [4110] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(8609), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [4111] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(8609), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [4112] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(3776), - [sym_file_descriptor] = ACTIONS(6677), - [anon_sym_esac] = ACTIONS(4106), - [anon_sym_PIPE] = ACTIONS(4106), - [anon_sym_SEMI_SEMI] = ACTIONS(4106), - [anon_sym_PIPE_AMP] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_LT] = ACTIONS(6681), - [anon_sym_GT] = ACTIONS(6681), - [anon_sym_GT_GT] = ACTIONS(6681), - [anon_sym_AMP_GT] = ACTIONS(6681), - [anon_sym_AMP_GT_GT] = ACTIONS(6681), - [anon_sym_LT_AMP] = ACTIONS(6681), - [anon_sym_GT_AMP] = ACTIONS(6681), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6683), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_LF] = ACTIONS(4106), - [anon_sym_AMP] = ACTIONS(4106), - }, - [4113] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_esac] = ACTIONS(8611), - [anon_sym_SEMI_SEMI] = ACTIONS(1102), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(8613), - [anon_sym_DQUOTE] = ACTIONS(8615), - [anon_sym_DOLLAR] = ACTIONS(8617), - [sym_raw_string] = ACTIONS(8615), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8615), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8615), - [anon_sym_BQUOTE] = ACTIONS(8615), - [anon_sym_LT_LPAREN] = ACTIONS(8615), - [anon_sym_GT_LPAREN] = ACTIONS(8615), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8613), - }, - [4114] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_esac] = ACTIONS(8619), - [anon_sym_SEMI_SEMI] = ACTIONS(1102), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(8621), - [anon_sym_DQUOTE] = ACTIONS(8623), - [anon_sym_DOLLAR] = ACTIONS(8625), - [sym_raw_string] = ACTIONS(8623), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8623), - [anon_sym_BQUOTE] = ACTIONS(8623), - [anon_sym_LT_LPAREN] = ACTIONS(8623), - [anon_sym_GT_LPAREN] = ACTIONS(8623), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8621), - }, - [4115] = { - [sym__concat] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6041), - [anon_sym_RPAREN] = ACTIONS(6041), - [sym_comment] = ACTIONS(56), - }, - [4116] = { - [sym__concat] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_RPAREN] = ACTIONS(6045), - [sym_comment] = ACTIONS(56), - }, - [4117] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6049), - [anon_sym_RPAREN] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - }, - [4118] = { - [sym__concat] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6053), - [anon_sym_RPAREN] = ACTIONS(6053), - [sym_comment] = ACTIONS(56), - }, - [4119] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8627), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4120] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6059), - [anon_sym_RPAREN] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - }, - [4121] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8629), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4122] = { - [sym__concat] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6065), - [anon_sym_RPAREN] = ACTIONS(6065), - [sym_comment] = ACTIONS(56), - }, - [4123] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8631), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4124] = { - [sym__concat] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6071), - [anon_sym_RPAREN] = ACTIONS(6071), - [sym_comment] = ACTIONS(56), - }, - [4125] = { - [sym__concat] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6075), - [anon_sym_RPAREN] = ACTIONS(6075), - [sym_comment] = ACTIONS(56), - }, - [4126] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_SEMI_SEMI] = ACTIONS(1102), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(7520), - [anon_sym_DQUOTE] = ACTIONS(7522), - [anon_sym_DOLLAR] = ACTIONS(7524), - [sym_raw_string] = ACTIONS(7522), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7522), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7522), - [anon_sym_BQUOTE] = ACTIONS(7522), - [anon_sym_LT_LPAREN] = ACTIONS(7522), - [anon_sym_GT_LPAREN] = ACTIONS(7522), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7520), - }, - [4127] = { - [sym__special_characters] = ACTIONS(7524), - [anon_sym_DQUOTE] = ACTIONS(7522), - [anon_sym_DOLLAR] = ACTIONS(7524), - [sym_raw_string] = ACTIONS(7522), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7522), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7522), - [anon_sym_BQUOTE] = ACTIONS(7522), - [anon_sym_LT_LPAREN] = ACTIONS(7522), - [anon_sym_GT_LPAREN] = ACTIONS(7522), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7524), - }, - [4128] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8633), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), - }, - [4129] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8633), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), - }, - [4130] = { - [sym__terminated_statement] = STATE(25), - [sym_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_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(26), - [sym_variable_assignment] = STATE(28), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(4130), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1152), - [sym_variable_name] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1166), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_SEMI_SEMI] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), - [anon_sym_declare] = ACTIONS(1184), - [anon_sym_typeset] = ACTIONS(1184), - [anon_sym_export] = ACTIONS(1184), - [anon_sym_readonly] = ACTIONS(1184), - [anon_sym_local] = ACTIONS(1184), - [anon_sym_unset] = ACTIONS(1187), - [anon_sym_unsetenv] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1193), - [anon_sym_AMP_GT] = ACTIONS(1190), - [anon_sym_AMP_GT_GT] = ACTIONS(1193), - [anon_sym_LT_AMP] = ACTIONS(1193), - [anon_sym_GT_AMP] = ACTIONS(1193), - [sym__special_characters] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1199), - [anon_sym_DOLLAR] = ACTIONS(1202), - [sym_raw_string] = ACTIONS(1205), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1211), - [anon_sym_BQUOTE] = ACTIONS(1214), - [anon_sym_LT_LPAREN] = ACTIONS(1217), - [anon_sym_GT_LPAREN] = ACTIONS(1217), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1220), - }, - [4131] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(4328), - [sym_while_statement] = STATE(4328), - [sym_if_statement] = STATE(4328), - [sym_case_statement] = STATE(4328), - [sym_function_definition] = STATE(4328), - [sym_subshell] = STATE(4328), - [sym_pipeline] = STATE(4328), - [sym_list] = STATE(4328), - [sym_command] = STATE(4328), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(4328), - [sym_variable_assignment] = STATE(4329), - [sym_declaration_command] = STATE(4328), - [sym_unset_command] = STATE(4328), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(4130), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(8635), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [4132] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_SEMI_SEMI] = ACTIONS(1102), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(7568), - [anon_sym_DQUOTE] = ACTIONS(7570), - [anon_sym_DOLLAR] = ACTIONS(7572), - [sym_raw_string] = ACTIONS(7570), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7570), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7570), - [anon_sym_BQUOTE] = ACTIONS(7570), - [anon_sym_LT_LPAREN] = ACTIONS(7570), - [anon_sym_GT_LPAREN] = ACTIONS(7570), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7568), - }, - [4133] = { - [sym__special_characters] = ACTIONS(7572), - [anon_sym_DQUOTE] = ACTIONS(7570), - [anon_sym_DOLLAR] = ACTIONS(7572), - [sym_raw_string] = ACTIONS(7570), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7570), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7570), - [anon_sym_BQUOTE] = ACTIONS(7570), - [anon_sym_LT_LPAREN] = ACTIONS(7570), - [anon_sym_GT_LPAREN] = ACTIONS(7570), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7572), - }, - [4134] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8637), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), - }, - [4135] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8637), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), - }, - [4136] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(4332), - [sym_while_statement] = STATE(4332), - [sym_if_statement] = STATE(4332), - [sym_case_statement] = STATE(4332), - [sym_function_definition] = STATE(4332), - [sym_subshell] = STATE(4332), - [sym_pipeline] = STATE(4332), - [sym_list] = STATE(4332), - [sym_command] = STATE(4332), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(4332), - [sym_variable_assignment] = STATE(4333), - [sym_declaration_command] = STATE(4332), - [sym_unset_command] = STATE(4332), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(4130), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(8639), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [4137] = { - [sym__concat] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_SEMI_SEMI] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6043), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - }, - [4138] = { - [sym__concat] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_SEMI_SEMI] = ACTIONS(6047), - [anon_sym_PIPE_AMP] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6047), - [anon_sym_PIPE_PIPE] = ACTIONS(6047), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - }, - [4139] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [4140] = { - [sym__concat] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6055), - [anon_sym_LF] = ACTIONS(6055), - [anon_sym_AMP] = ACTIONS(6055), - }, - [4141] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8641), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4142] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [4143] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8643), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4144] = { - [sym__concat] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6067), - [anon_sym_SEMI_SEMI] = ACTIONS(6067), - [anon_sym_PIPE_AMP] = ACTIONS(6067), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LF] = ACTIONS(6067), - [anon_sym_AMP] = ACTIONS(6067), - }, - [4145] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8645), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4146] = { - [sym__concat] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [anon_sym_PIPE_AMP] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6073), - [anon_sym_PIPE_PIPE] = ACTIONS(6073), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LF] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - }, - [4147] = { - [sym__concat] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_SEMI_SEMI] = ACTIONS(6077), - [anon_sym_PIPE_AMP] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6077), - [anon_sym_PIPE_PIPE] = ACTIONS(6077), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LF] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - }, - [4148] = { - [sym_file_descriptor] = ACTIONS(7032), - [sym__concat] = ACTIONS(7032), - [sym_variable_name] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7034), - [anon_sym_RPAREN] = ACTIONS(7034), - [anon_sym_SEMI_SEMI] = ACTIONS(7034), - [anon_sym_PIPE_AMP] = ACTIONS(7034), - [anon_sym_AMP_AMP] = ACTIONS(7034), - [anon_sym_PIPE_PIPE] = ACTIONS(7034), - [anon_sym_LT] = ACTIONS(7034), - [anon_sym_GT] = ACTIONS(7034), - [anon_sym_GT_GT] = ACTIONS(7034), - [anon_sym_AMP_GT] = ACTIONS(7034), - [anon_sym_AMP_GT_GT] = ACTIONS(7034), - [anon_sym_LT_AMP] = ACTIONS(7034), - [anon_sym_GT_AMP] = ACTIONS(7034), - [sym__special_characters] = ACTIONS(7034), - [anon_sym_DQUOTE] = ACTIONS(7034), - [anon_sym_DOLLAR] = ACTIONS(7034), - [sym_raw_string] = ACTIONS(7034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), - [anon_sym_BQUOTE] = ACTIONS(7034), - [anon_sym_LT_LPAREN] = ACTIONS(7034), - [anon_sym_GT_LPAREN] = ACTIONS(7034), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7034), - [anon_sym_SEMI] = ACTIONS(7034), - [anon_sym_LF] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - }, - [4149] = { - [sym_file_descriptor] = ACTIONS(7036), - [sym__concat] = ACTIONS(7036), - [sym_variable_name] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7038), - [anon_sym_RPAREN] = ACTIONS(7038), - [anon_sym_SEMI_SEMI] = ACTIONS(7038), - [anon_sym_PIPE_AMP] = ACTIONS(7038), - [anon_sym_AMP_AMP] = ACTIONS(7038), - [anon_sym_PIPE_PIPE] = ACTIONS(7038), - [anon_sym_LT] = ACTIONS(7038), - [anon_sym_GT] = ACTIONS(7038), - [anon_sym_GT_GT] = ACTIONS(7038), - [anon_sym_AMP_GT] = ACTIONS(7038), - [anon_sym_AMP_GT_GT] = ACTIONS(7038), - [anon_sym_LT_AMP] = ACTIONS(7038), - [anon_sym_GT_AMP] = ACTIONS(7038), - [sym__special_characters] = ACTIONS(7038), - [anon_sym_DQUOTE] = ACTIONS(7038), - [anon_sym_DOLLAR] = ACTIONS(7038), - [sym_raw_string] = ACTIONS(7038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), - [anon_sym_BQUOTE] = ACTIONS(7038), - [anon_sym_LT_LPAREN] = ACTIONS(7038), - [anon_sym_GT_LPAREN] = ACTIONS(7038), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7038), - [anon_sym_SEMI] = ACTIONS(7038), - [anon_sym_LF] = ACTIONS(7038), - [anon_sym_AMP] = ACTIONS(7038), - }, - [4150] = { - [sym_file_descriptor] = ACTIONS(7040), - [sym__concat] = ACTIONS(7040), - [sym_variable_name] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_RPAREN] = ACTIONS(7042), - [anon_sym_SEMI_SEMI] = ACTIONS(7042), - [anon_sym_PIPE_AMP] = ACTIONS(7042), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7042), - [anon_sym_LT] = ACTIONS(7042), - [anon_sym_GT] = ACTIONS(7042), - [anon_sym_GT_GT] = ACTIONS(7042), - [anon_sym_AMP_GT] = ACTIONS(7042), - [anon_sym_AMP_GT_GT] = ACTIONS(7042), - [anon_sym_LT_AMP] = ACTIONS(7042), - [anon_sym_GT_AMP] = ACTIONS(7042), - [sym__special_characters] = ACTIONS(7042), - [anon_sym_DQUOTE] = ACTIONS(7042), - [anon_sym_DOLLAR] = ACTIONS(7042), - [sym_raw_string] = ACTIONS(7042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), - [anon_sym_BQUOTE] = ACTIONS(7042), - [anon_sym_LT_LPAREN] = ACTIONS(7042), - [anon_sym_GT_LPAREN] = ACTIONS(7042), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7042), - [anon_sym_SEMI] = ACTIONS(7042), - [anon_sym_LF] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - }, - [4151] = { - [sym__concat] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_RPAREN] = ACTIONS(4804), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [anon_sym_PIPE_AMP] = ACTIONS(4804), - [anon_sym_AMP_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4804), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4804), - [anon_sym_LF] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4804), - }, - [4152] = { - [sym__concat] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_RPAREN] = ACTIONS(4810), - [anon_sym_SEMI_SEMI] = ACTIONS(4810), - [anon_sym_PIPE_AMP] = ACTIONS(4810), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LF] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4810), - }, - [4153] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_RPAREN] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [4154] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8647), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4155] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8649), - [sym_comment] = ACTIONS(56), - }, - [4156] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8651), - [sym_comment] = ACTIONS(56), - }, - [4157] = { - [anon_sym_RBRACE] = ACTIONS(8651), - [sym_comment] = ACTIONS(56), - }, - [4158] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4341), - [anon_sym_RBRACE] = ACTIONS(8653), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4159] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(4885), - [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_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [4160] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4343), - [anon_sym_RBRACE] = ACTIONS(8655), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4161] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_RPAREN] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [4162] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4345), - [anon_sym_RBRACE] = ACTIONS(8657), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4163] = { - [sym__concat] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_RPAREN] = ACTIONS(4897), - [anon_sym_SEMI_SEMI] = ACTIONS(4897), - [anon_sym_PIPE_AMP] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LF] = ACTIONS(4897), - [anon_sym_AMP] = ACTIONS(4897), - }, - [4164] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8659), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4165] = { - [sym__concat] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(4903), - [anon_sym_RPAREN] = ACTIONS(4903), - [anon_sym_SEMI_SEMI] = ACTIONS(4903), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LF] = ACTIONS(4903), - [anon_sym_AMP] = ACTIONS(4903), - }, - [4166] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8661), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4167] = { - [sym_file_descriptor] = ACTIONS(7032), - [sym__concat] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7034), - [anon_sym_RPAREN] = ACTIONS(7034), - [anon_sym_SEMI_SEMI] = ACTIONS(7034), - [anon_sym_PIPE_AMP] = ACTIONS(7034), - [anon_sym_AMP_AMP] = ACTIONS(7034), - [anon_sym_PIPE_PIPE] = ACTIONS(7034), - [anon_sym_LT] = ACTIONS(7034), - [anon_sym_GT] = ACTIONS(7034), - [anon_sym_GT_GT] = ACTIONS(7034), - [anon_sym_AMP_GT] = ACTIONS(7034), - [anon_sym_AMP_GT_GT] = ACTIONS(7034), - [anon_sym_LT_AMP] = ACTIONS(7034), - [anon_sym_GT_AMP] = ACTIONS(7034), - [anon_sym_LT_LT] = ACTIONS(7034), - [anon_sym_LT_LT_DASH] = ACTIONS(7034), - [anon_sym_LT_LT_LT] = ACTIONS(7034), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7034), - [anon_sym_LF] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - }, - [4168] = { - [sym_file_descriptor] = ACTIONS(7036), - [sym__concat] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7038), - [anon_sym_RPAREN] = ACTIONS(7038), - [anon_sym_SEMI_SEMI] = ACTIONS(7038), - [anon_sym_PIPE_AMP] = ACTIONS(7038), - [anon_sym_AMP_AMP] = ACTIONS(7038), - [anon_sym_PIPE_PIPE] = ACTIONS(7038), - [anon_sym_LT] = ACTIONS(7038), - [anon_sym_GT] = ACTIONS(7038), - [anon_sym_GT_GT] = ACTIONS(7038), - [anon_sym_AMP_GT] = ACTIONS(7038), - [anon_sym_AMP_GT_GT] = ACTIONS(7038), - [anon_sym_LT_AMP] = ACTIONS(7038), - [anon_sym_GT_AMP] = ACTIONS(7038), - [anon_sym_LT_LT] = ACTIONS(7038), - [anon_sym_LT_LT_DASH] = ACTIONS(7038), - [anon_sym_LT_LT_LT] = ACTIONS(7038), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7038), - [anon_sym_LF] = ACTIONS(7038), - [anon_sym_AMP] = ACTIONS(7038), - }, - [4169] = { - [sym_file_descriptor] = ACTIONS(7040), - [sym__concat] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_RPAREN] = ACTIONS(7042), - [anon_sym_SEMI_SEMI] = ACTIONS(7042), - [anon_sym_PIPE_AMP] = ACTIONS(7042), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7042), - [anon_sym_LT] = ACTIONS(7042), - [anon_sym_GT] = ACTIONS(7042), - [anon_sym_GT_GT] = ACTIONS(7042), - [anon_sym_AMP_GT] = ACTIONS(7042), - [anon_sym_AMP_GT_GT] = ACTIONS(7042), - [anon_sym_LT_AMP] = ACTIONS(7042), - [anon_sym_GT_AMP] = ACTIONS(7042), - [anon_sym_LT_LT] = ACTIONS(7042), - [anon_sym_LT_LT_DASH] = ACTIONS(7042), - [anon_sym_LT_LT_LT] = ACTIONS(7042), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7042), - [anon_sym_LF] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - }, - [4170] = { - [sym__concat] = ACTIONS(7032), - [anon_sym_RBRACE] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), - }, - [4171] = { - [sym__concat] = ACTIONS(7036), - [anon_sym_RBRACE] = ACTIONS(7036), - [sym_comment] = ACTIONS(56), - }, - [4172] = { - [sym__concat] = ACTIONS(7040), - [anon_sym_RBRACE] = ACTIONS(7040), - [sym_comment] = ACTIONS(56), - }, - [4173] = { - [sym_file_descriptor] = ACTIONS(7032), - [sym__concat] = ACTIONS(7032), - [sym_variable_name] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7721), - [anon_sym_RPAREN] = ACTIONS(7032), - [anon_sym_PIPE_AMP] = ACTIONS(7032), - [anon_sym_AMP_AMP] = ACTIONS(7032), - [anon_sym_PIPE_PIPE] = ACTIONS(7032), - [anon_sym_LT] = ACTIONS(7721), - [anon_sym_GT] = ACTIONS(7721), - [anon_sym_GT_GT] = ACTIONS(7032), - [anon_sym_AMP_GT] = ACTIONS(7721), - [anon_sym_AMP_GT_GT] = ACTIONS(7032), - [anon_sym_LT_AMP] = ACTIONS(7032), - [anon_sym_GT_AMP] = ACTIONS(7032), - [sym__special_characters] = ACTIONS(7721), - [anon_sym_DQUOTE] = ACTIONS(7032), - [anon_sym_DOLLAR] = ACTIONS(7721), - [sym_raw_string] = ACTIONS(7032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), - [anon_sym_BQUOTE] = ACTIONS(7032), - [anon_sym_LT_LPAREN] = ACTIONS(7032), - [anon_sym_GT_LPAREN] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7721), - }, - [4174] = { - [sym_file_descriptor] = ACTIONS(7036), - [sym__concat] = ACTIONS(7036), - [sym_variable_name] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7723), - [anon_sym_RPAREN] = ACTIONS(7036), - [anon_sym_PIPE_AMP] = ACTIONS(7036), - [anon_sym_AMP_AMP] = ACTIONS(7036), - [anon_sym_PIPE_PIPE] = ACTIONS(7036), - [anon_sym_LT] = ACTIONS(7723), - [anon_sym_GT] = ACTIONS(7723), - [anon_sym_GT_GT] = ACTIONS(7036), - [anon_sym_AMP_GT] = ACTIONS(7723), - [anon_sym_AMP_GT_GT] = ACTIONS(7036), - [anon_sym_LT_AMP] = ACTIONS(7036), - [anon_sym_GT_AMP] = ACTIONS(7036), - [sym__special_characters] = ACTIONS(7723), - [anon_sym_DQUOTE] = ACTIONS(7036), - [anon_sym_DOLLAR] = ACTIONS(7723), - [sym_raw_string] = ACTIONS(7036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), - [anon_sym_BQUOTE] = ACTIONS(7036), - [anon_sym_LT_LPAREN] = ACTIONS(7036), - [anon_sym_GT_LPAREN] = ACTIONS(7036), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7723), - }, - [4175] = { - [sym_file_descriptor] = ACTIONS(7040), - [sym__concat] = ACTIONS(7040), - [sym_variable_name] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7725), - [anon_sym_RPAREN] = ACTIONS(7040), - [anon_sym_PIPE_AMP] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(7040), - [anon_sym_PIPE_PIPE] = ACTIONS(7040), - [anon_sym_LT] = ACTIONS(7725), - [anon_sym_GT] = ACTIONS(7725), - [anon_sym_GT_GT] = ACTIONS(7040), - [anon_sym_AMP_GT] = ACTIONS(7725), - [anon_sym_AMP_GT_GT] = ACTIONS(7040), - [anon_sym_LT_AMP] = ACTIONS(7040), - [anon_sym_GT_AMP] = ACTIONS(7040), - [sym__special_characters] = ACTIONS(7725), - [anon_sym_DQUOTE] = ACTIONS(7040), - [anon_sym_DOLLAR] = ACTIONS(7725), - [sym_raw_string] = ACTIONS(7040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), - [anon_sym_BQUOTE] = ACTIONS(7040), - [anon_sym_LT_LPAREN] = ACTIONS(7040), - [anon_sym_GT_LPAREN] = ACTIONS(7040), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7725), - }, - [4176] = { - [sym__concat] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_RPAREN] = ACTIONS(4802), - [anon_sym_PIPE_AMP] = ACTIONS(4802), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [sym_comment] = ACTIONS(56), - }, - [4177] = { - [sym__concat] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(4808), - [anon_sym_PIPE_AMP] = ACTIONS(4808), - [anon_sym_AMP_AMP] = ACTIONS(4808), - [anon_sym_PIPE_PIPE] = ACTIONS(4808), - [sym_comment] = ACTIONS(56), - }, - [4178] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_RPAREN] = ACTIONS(4871), - [anon_sym_PIPE_AMP] = ACTIONS(4871), - [anon_sym_AMP_AMP] = ACTIONS(4871), - [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - }, - [4179] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8663), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4180] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8665), - [sym_comment] = ACTIONS(56), - }, - [4181] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8667), - [sym_comment] = ACTIONS(56), - }, - [4182] = { - [anon_sym_RBRACE] = ACTIONS(8667), - [sym_comment] = ACTIONS(56), - }, - [4183] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4352), - [anon_sym_RBRACE] = ACTIONS(8669), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4184] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5874), - [anon_sym_RPAREN] = ACTIONS(4883), - [anon_sym_PIPE_AMP] = ACTIONS(4883), - [anon_sym_AMP_AMP] = ACTIONS(4883), - [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - }, - [4185] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4354), - [anon_sym_RBRACE] = ACTIONS(8671), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4186] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5878), - [anon_sym_RPAREN] = ACTIONS(4889), - [anon_sym_PIPE_AMP] = ACTIONS(4889), - [anon_sym_AMP_AMP] = ACTIONS(4889), - [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [sym_comment] = ACTIONS(56), - }, - [4187] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4356), - [anon_sym_RBRACE] = ACTIONS(8673), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4188] = { - [sym__concat] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(5882), - [anon_sym_RPAREN] = ACTIONS(4895), - [anon_sym_PIPE_AMP] = ACTIONS(4895), - [anon_sym_AMP_AMP] = ACTIONS(4895), - [anon_sym_PIPE_PIPE] = ACTIONS(4895), - [sym_comment] = ACTIONS(56), - }, - [4189] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8675), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4190] = { - [sym__concat] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(5886), - [anon_sym_RPAREN] = ACTIONS(4901), - [anon_sym_PIPE_AMP] = ACTIONS(4901), - [anon_sym_AMP_AMP] = ACTIONS(4901), - [anon_sym_PIPE_PIPE] = ACTIONS(4901), - [sym_comment] = ACTIONS(56), - }, - [4191] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8677), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4192] = { - [sym_file_descriptor] = ACTIONS(7032), - [sym__concat] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7721), - [anon_sym_RPAREN] = ACTIONS(7032), - [anon_sym_PIPE_AMP] = ACTIONS(7032), - [anon_sym_AMP_AMP] = ACTIONS(7032), - [anon_sym_PIPE_PIPE] = ACTIONS(7032), - [anon_sym_LT] = ACTIONS(7721), - [anon_sym_GT] = ACTIONS(7721), - [anon_sym_GT_GT] = ACTIONS(7032), - [anon_sym_AMP_GT] = ACTIONS(7721), - [anon_sym_AMP_GT_GT] = ACTIONS(7032), - [anon_sym_LT_AMP] = ACTIONS(7032), - [anon_sym_GT_AMP] = ACTIONS(7032), - [anon_sym_LT_LT] = ACTIONS(7721), - [anon_sym_LT_LT_DASH] = ACTIONS(7032), - [anon_sym_LT_LT_LT] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), - }, - [4193] = { - [sym_file_descriptor] = ACTIONS(7036), - [sym__concat] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7723), - [anon_sym_RPAREN] = ACTIONS(7036), - [anon_sym_PIPE_AMP] = ACTIONS(7036), - [anon_sym_AMP_AMP] = ACTIONS(7036), - [anon_sym_PIPE_PIPE] = ACTIONS(7036), - [anon_sym_LT] = ACTIONS(7723), - [anon_sym_GT] = ACTIONS(7723), - [anon_sym_GT_GT] = ACTIONS(7036), - [anon_sym_AMP_GT] = ACTIONS(7723), - [anon_sym_AMP_GT_GT] = ACTIONS(7036), - [anon_sym_LT_AMP] = ACTIONS(7036), - [anon_sym_GT_AMP] = ACTIONS(7036), - [anon_sym_LT_LT] = ACTIONS(7723), - [anon_sym_LT_LT_DASH] = ACTIONS(7036), - [anon_sym_LT_LT_LT] = ACTIONS(7036), - [sym_comment] = ACTIONS(56), - }, - [4194] = { - [sym_file_descriptor] = ACTIONS(7040), - [sym__concat] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7725), - [anon_sym_RPAREN] = ACTIONS(7040), - [anon_sym_PIPE_AMP] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(7040), - [anon_sym_PIPE_PIPE] = ACTIONS(7040), - [anon_sym_LT] = ACTIONS(7725), - [anon_sym_GT] = ACTIONS(7725), - [anon_sym_GT_GT] = ACTIONS(7040), - [anon_sym_AMP_GT] = ACTIONS(7725), - [anon_sym_AMP_GT_GT] = ACTIONS(7040), - [anon_sym_LT_AMP] = ACTIONS(7040), - [anon_sym_GT_AMP] = ACTIONS(7040), - [anon_sym_LT_LT] = ACTIONS(7725), - [anon_sym_LT_LT_DASH] = ACTIONS(7040), - [anon_sym_LT_LT_LT] = ACTIONS(7040), - [sym_comment] = ACTIONS(56), - }, - [4195] = { - [sym_file_descriptor] = ACTIONS(7032), - [sym__concat] = ACTIONS(7032), - [sym_variable_name] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7721), - [anon_sym_PIPE_AMP] = ACTIONS(7032), - [anon_sym_AMP_AMP] = ACTIONS(7032), - [anon_sym_PIPE_PIPE] = ACTIONS(7032), - [anon_sym_LT] = ACTIONS(7721), - [anon_sym_GT] = ACTIONS(7721), - [anon_sym_GT_GT] = ACTIONS(7032), - [anon_sym_AMP_GT] = ACTIONS(7721), - [anon_sym_AMP_GT_GT] = ACTIONS(7032), - [anon_sym_LT_AMP] = ACTIONS(7032), - [anon_sym_GT_AMP] = ACTIONS(7032), - [sym__special_characters] = ACTIONS(7721), - [anon_sym_DQUOTE] = ACTIONS(7032), - [anon_sym_DOLLAR] = ACTIONS(7721), - [sym_raw_string] = ACTIONS(7032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), - [anon_sym_BQUOTE] = ACTIONS(7032), - [anon_sym_LT_LPAREN] = ACTIONS(7032), - [anon_sym_GT_LPAREN] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7721), - }, - [4196] = { - [sym_file_descriptor] = ACTIONS(7036), - [sym__concat] = ACTIONS(7036), - [sym_variable_name] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7723), - [anon_sym_PIPE_AMP] = ACTIONS(7036), - [anon_sym_AMP_AMP] = ACTIONS(7036), - [anon_sym_PIPE_PIPE] = ACTIONS(7036), - [anon_sym_LT] = ACTIONS(7723), - [anon_sym_GT] = ACTIONS(7723), - [anon_sym_GT_GT] = ACTIONS(7036), - [anon_sym_AMP_GT] = ACTIONS(7723), - [anon_sym_AMP_GT_GT] = ACTIONS(7036), - [anon_sym_LT_AMP] = ACTIONS(7036), - [anon_sym_GT_AMP] = ACTIONS(7036), - [sym__special_characters] = ACTIONS(7723), - [anon_sym_DQUOTE] = ACTIONS(7036), - [anon_sym_DOLLAR] = ACTIONS(7723), - [sym_raw_string] = ACTIONS(7036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), - [anon_sym_BQUOTE] = ACTIONS(7036), - [anon_sym_LT_LPAREN] = ACTIONS(7036), - [anon_sym_GT_LPAREN] = ACTIONS(7036), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7723), - }, - [4197] = { - [sym_file_descriptor] = ACTIONS(7040), - [sym__concat] = ACTIONS(7040), - [sym_variable_name] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7725), - [anon_sym_PIPE_AMP] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(7040), - [anon_sym_PIPE_PIPE] = ACTIONS(7040), - [anon_sym_LT] = ACTIONS(7725), - [anon_sym_GT] = ACTIONS(7725), - [anon_sym_GT_GT] = ACTIONS(7040), - [anon_sym_AMP_GT] = ACTIONS(7725), - [anon_sym_AMP_GT_GT] = ACTIONS(7040), - [anon_sym_LT_AMP] = ACTIONS(7040), - [anon_sym_GT_AMP] = ACTIONS(7040), - [sym__special_characters] = ACTIONS(7725), - [anon_sym_DQUOTE] = ACTIONS(7040), - [anon_sym_DOLLAR] = ACTIONS(7725), - [sym_raw_string] = ACTIONS(7040), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), - [anon_sym_BQUOTE] = ACTIONS(7040), - [anon_sym_LT_LPAREN] = ACTIONS(7040), - [anon_sym_GT_LPAREN] = ACTIONS(7040), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7725), - }, - [4198] = { - [sym__concat] = ACTIONS(4802), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_PIPE_AMP] = ACTIONS(4802), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [anon_sym_BQUOTE] = ACTIONS(4802), - [sym_comment] = ACTIONS(56), - }, - [4199] = { - [sym__concat] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_PIPE_AMP] = ACTIONS(4808), - [anon_sym_AMP_AMP] = ACTIONS(4808), - [anon_sym_PIPE_PIPE] = ACTIONS(4808), - [anon_sym_BQUOTE] = ACTIONS(4808), - [sym_comment] = ACTIONS(56), - }, - [4200] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_PIPE_AMP] = ACTIONS(4871), - [anon_sym_AMP_AMP] = ACTIONS(4871), - [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [anon_sym_BQUOTE] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - }, - [4201] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8679), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4202] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8681), - [sym_comment] = ACTIONS(56), - }, - [4203] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8683), - [sym_comment] = ACTIONS(56), - }, - [4204] = { - [anon_sym_RBRACE] = ACTIONS(8683), - [sym_comment] = ACTIONS(56), - }, - [4205] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4363), - [anon_sym_RBRACE] = ACTIONS(8685), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4206] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5874), - [anon_sym_PIPE_AMP] = ACTIONS(4883), - [anon_sym_AMP_AMP] = ACTIONS(4883), - [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - }, - [4207] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4365), - [anon_sym_RBRACE] = ACTIONS(8687), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4208] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5878), - [anon_sym_PIPE_AMP] = ACTIONS(4889), - [anon_sym_AMP_AMP] = ACTIONS(4889), - [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [anon_sym_BQUOTE] = ACTIONS(4889), - [sym_comment] = ACTIONS(56), - }, - [4209] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4367), - [anon_sym_RBRACE] = ACTIONS(8689), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4210] = { - [sym__concat] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(5882), - [anon_sym_PIPE_AMP] = ACTIONS(4895), - [anon_sym_AMP_AMP] = ACTIONS(4895), - [anon_sym_PIPE_PIPE] = ACTIONS(4895), - [anon_sym_BQUOTE] = ACTIONS(4895), - [sym_comment] = ACTIONS(56), - }, - [4211] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8691), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4212] = { - [sym__concat] = ACTIONS(4901), - [anon_sym_PIPE] = ACTIONS(5886), - [anon_sym_PIPE_AMP] = ACTIONS(4901), - [anon_sym_AMP_AMP] = ACTIONS(4901), - [anon_sym_PIPE_PIPE] = ACTIONS(4901), - [anon_sym_BQUOTE] = ACTIONS(4901), - [sym_comment] = ACTIONS(56), - }, - [4213] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8693), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4214] = { - [sym_file_descriptor] = ACTIONS(7032), - [sym__concat] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7721), - [anon_sym_PIPE_AMP] = ACTIONS(7032), - [anon_sym_AMP_AMP] = ACTIONS(7032), - [anon_sym_PIPE_PIPE] = ACTIONS(7032), - [anon_sym_LT] = ACTIONS(7721), - [anon_sym_GT] = ACTIONS(7721), - [anon_sym_GT_GT] = ACTIONS(7032), - [anon_sym_AMP_GT] = ACTIONS(7721), - [anon_sym_AMP_GT_GT] = ACTIONS(7032), - [anon_sym_LT_AMP] = ACTIONS(7032), - [anon_sym_GT_AMP] = ACTIONS(7032), - [anon_sym_LT_LT] = ACTIONS(7721), - [anon_sym_LT_LT_DASH] = ACTIONS(7032), - [anon_sym_LT_LT_LT] = ACTIONS(7032), - [anon_sym_BQUOTE] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), - }, - [4215] = { - [sym_file_descriptor] = ACTIONS(7036), - [sym__concat] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7723), - [anon_sym_PIPE_AMP] = ACTIONS(7036), - [anon_sym_AMP_AMP] = ACTIONS(7036), - [anon_sym_PIPE_PIPE] = ACTIONS(7036), - [anon_sym_LT] = ACTIONS(7723), - [anon_sym_GT] = ACTIONS(7723), - [anon_sym_GT_GT] = ACTIONS(7036), - [anon_sym_AMP_GT] = ACTIONS(7723), - [anon_sym_AMP_GT_GT] = ACTIONS(7036), - [anon_sym_LT_AMP] = ACTIONS(7036), - [anon_sym_GT_AMP] = ACTIONS(7036), - [anon_sym_LT_LT] = ACTIONS(7723), - [anon_sym_LT_LT_DASH] = ACTIONS(7036), - [anon_sym_LT_LT_LT] = ACTIONS(7036), - [anon_sym_BQUOTE] = ACTIONS(7036), - [sym_comment] = ACTIONS(56), - }, - [4216] = { - [sym_file_descriptor] = ACTIONS(7040), - [sym__concat] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7725), - [anon_sym_PIPE_AMP] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(7040), - [anon_sym_PIPE_PIPE] = ACTIONS(7040), - [anon_sym_LT] = ACTIONS(7725), - [anon_sym_GT] = ACTIONS(7725), - [anon_sym_GT_GT] = ACTIONS(7040), - [anon_sym_AMP_GT] = ACTIONS(7725), - [anon_sym_AMP_GT_GT] = ACTIONS(7040), - [anon_sym_LT_AMP] = ACTIONS(7040), - [anon_sym_GT_AMP] = ACTIONS(7040), - [anon_sym_LT_LT] = ACTIONS(7725), - [anon_sym_LT_LT_DASH] = ACTIONS(7040), - [anon_sym_LT_LT_LT] = ACTIONS(7040), - [anon_sym_BQUOTE] = ACTIONS(7040), - [sym_comment] = ACTIONS(56), - }, - [4217] = { - [sym__heredoc_middle] = ACTIONS(7032), - [sym__heredoc_end] = ACTIONS(7032), - [anon_sym_DOLLAR] = ACTIONS(7721), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), - }, - [4218] = { - [sym__heredoc_middle] = ACTIONS(7036), - [sym__heredoc_end] = ACTIONS(7036), - [anon_sym_DOLLAR] = ACTIONS(7723), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), - [sym_comment] = ACTIONS(56), - }, - [4219] = { - [sym__heredoc_middle] = ACTIONS(7040), - [sym__heredoc_end] = ACTIONS(7040), - [anon_sym_DOLLAR] = ACTIONS(7725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), - [sym_comment] = ACTIONS(56), - }, - [4220] = { - [sym_file_descriptor] = ACTIONS(4181), - [sym_variable_name] = ACTIONS(4181), - [anon_sym_esac] = ACTIONS(4183), - [anon_sym_PIPE] = ACTIONS(4183), - [anon_sym_SEMI_SEMI] = ACTIONS(4183), - [anon_sym_PIPE_AMP] = ACTIONS(4183), - [anon_sym_AMP_AMP] = ACTIONS(4183), - [anon_sym_PIPE_PIPE] = ACTIONS(4183), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4183), - [anon_sym_GT_GT] = ACTIONS(4183), - [anon_sym_AMP_GT] = ACTIONS(4183), - [anon_sym_AMP_GT_GT] = ACTIONS(4183), - [anon_sym_LT_AMP] = ACTIONS(4183), - [anon_sym_GT_AMP] = ACTIONS(4183), - [sym__special_characters] = ACTIONS(4183), - [anon_sym_DQUOTE] = ACTIONS(4183), - [anon_sym_DOLLAR] = ACTIONS(4183), - [sym_raw_string] = ACTIONS(4183), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4183), - [anon_sym_BQUOTE] = ACTIONS(4183), - [anon_sym_LT_LPAREN] = ACTIONS(4183), - [anon_sym_GT_LPAREN] = ACTIONS(4183), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4183), - [anon_sym_LF] = ACTIONS(4183), - [anon_sym_AMP] = ACTIONS(4183), - }, - [4221] = { - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(1890), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_esac] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_AMP_GT] = ACTIONS(1892), - [anon_sym_AMP_GT_GT] = ACTIONS(1892), - [anon_sym_LT_AMP] = ACTIONS(1892), - [anon_sym_GT_AMP] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [4222] = { - [aux_sym_concatenation_repeat1] = STATE(4222), - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(8695), - [sym_variable_name] = ACTIONS(1890), - [anon_sym_esac] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_AMP_GT] = ACTIONS(1892), - [anon_sym_AMP_GT_GT] = ACTIONS(1892), - [anon_sym_LT_AMP] = ACTIONS(1892), - [anon_sym_GT_AMP] = ACTIONS(1892), - [sym__special_characters] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_LT_LPAREN] = ACTIONS(1892), - [anon_sym_GT_LPAREN] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [4223] = { - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [sym_variable_name] = ACTIONS(1927), - [anon_sym_esac] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1929), - [anon_sym_PIPE_AMP] = ACTIONS(1929), - [anon_sym_AMP_AMP] = ACTIONS(1929), - [anon_sym_PIPE_PIPE] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_GT_GT] = ACTIONS(1929), - [anon_sym_AMP_GT] = ACTIONS(1929), - [anon_sym_AMP_GT_GT] = ACTIONS(1929), - [anon_sym_LT_AMP] = ACTIONS(1929), - [anon_sym_GT_AMP] = ACTIONS(1929), - [sym__special_characters] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1929), - [sym_raw_string] = ACTIONS(1929), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), - [anon_sym_BQUOTE] = ACTIONS(1929), - [anon_sym_LT_LPAREN] = ACTIONS(1929), - [anon_sym_GT_LPAREN] = ACTIONS(1929), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1929), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - }, - [4224] = { - [sym_concatenation] = STATE(4373), - [sym_string] = STATE(4372), - [sym_simple_expansion] = STATE(4372), - [sym_string_expansion] = STATE(4372), - [sym_expansion] = STATE(4372), - [sym_command_substitution] = STATE(4372), - [sym_process_substitution] = STATE(4372), - [anon_sym_RBRACE] = ACTIONS(8698), - [sym__special_characters] = ACTIONS(8700), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(8702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8704), - }, - [4225] = { - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(1972), - [sym_variable_name] = ACTIONS(1972), - [anon_sym_esac] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1974), - [anon_sym_GT_GT] = ACTIONS(1974), - [anon_sym_AMP_GT] = ACTIONS(1974), - [anon_sym_AMP_GT_GT] = ACTIONS(1974), - [anon_sym_LT_AMP] = ACTIONS(1974), - [anon_sym_GT_AMP] = ACTIONS(1974), - [sym__special_characters] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(1974), - [sym_raw_string] = ACTIONS(1974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), - [anon_sym_BQUOTE] = ACTIONS(1974), - [anon_sym_LT_LPAREN] = ACTIONS(1974), - [anon_sym_GT_LPAREN] = ACTIONS(1974), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_LF] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - }, - [4226] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8706), - }, - [4227] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8708), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4228] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(8710), - [sym_comment] = ACTIONS(56), - }, - [4229] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4379), - [anon_sym_RBRACE] = ACTIONS(8712), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8714), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4230] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4382), - [anon_sym_RBRACE] = ACTIONS(8716), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8718), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4231] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4384), - [anon_sym_RBRACE] = ACTIONS(8698), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8720), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4232] = { - [sym_file_descriptor] = ACTIONS(2026), - [sym__concat] = ACTIONS(2026), - [sym_variable_name] = ACTIONS(2026), - [anon_sym_esac] = ACTIONS(2028), - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_SEMI_SEMI] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(2028), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [anon_sym_LT] = ACTIONS(2028), - [anon_sym_GT] = ACTIONS(2028), - [anon_sym_GT_GT] = ACTIONS(2028), - [anon_sym_AMP_GT] = ACTIONS(2028), - [anon_sym_AMP_GT_GT] = ACTIONS(2028), - [anon_sym_LT_AMP] = ACTIONS(2028), - [anon_sym_GT_AMP] = ACTIONS(2028), - [sym__special_characters] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [anon_sym_DOLLAR] = ACTIONS(2028), - [sym_raw_string] = ACTIONS(2028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), - [anon_sym_BQUOTE] = ACTIONS(2028), - [anon_sym_LT_LPAREN] = ACTIONS(2028), - [anon_sym_GT_LPAREN] = ACTIONS(2028), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - }, - [4233] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8722), - }, - [4234] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8724), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4235] = { - [sym_file_descriptor] = ACTIONS(2034), - [sym__concat] = ACTIONS(2034), - [sym_variable_name] = ACTIONS(2034), - [anon_sym_esac] = ACTIONS(2036), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_SEMI_SEMI] = ACTIONS(2036), - [anon_sym_PIPE_AMP] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [anon_sym_LT] = ACTIONS(2036), - [anon_sym_GT] = ACTIONS(2036), - [anon_sym_GT_GT] = ACTIONS(2036), - [anon_sym_AMP_GT] = ACTIONS(2036), - [anon_sym_AMP_GT_GT] = ACTIONS(2036), - [anon_sym_LT_AMP] = ACTIONS(2036), - [anon_sym_GT_AMP] = ACTIONS(2036), - [sym__special_characters] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2036), - [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(182), - [sym_word] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_LF] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - }, - [4236] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8726), - }, - [4237] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8698), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4238] = { - [sym_file_descriptor] = ACTIONS(2196), - [sym__concat] = ACTIONS(2196), - [sym_variable_name] = ACTIONS(2196), - [anon_sym_esac] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_SEMI_SEMI] = ACTIONS(2198), - [anon_sym_PIPE_AMP] = ACTIONS(2198), - [anon_sym_AMP_AMP] = ACTIONS(2198), - [anon_sym_PIPE_PIPE] = ACTIONS(2198), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_GT] = ACTIONS(2198), - [anon_sym_GT_GT] = ACTIONS(2198), - [anon_sym_AMP_GT] = ACTIONS(2198), - [anon_sym_AMP_GT_GT] = ACTIONS(2198), - [anon_sym_LT_AMP] = ACTIONS(2198), - [anon_sym_GT_AMP] = ACTIONS(2198), - [sym__special_characters] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(2198), - [sym_raw_string] = ACTIONS(2198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), - [anon_sym_BQUOTE] = ACTIONS(2198), - [anon_sym_LT_LPAREN] = ACTIONS(2198), - [anon_sym_GT_LPAREN] = ACTIONS(2198), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - }, - [4239] = { - [sym_file_descriptor] = ACTIONS(2402), - [sym__concat] = ACTIONS(2402), - [sym_variable_name] = ACTIONS(2402), - [anon_sym_esac] = ACTIONS(2404), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_SEMI_SEMI] = ACTIONS(2404), - [anon_sym_PIPE_AMP] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2404), - [anon_sym_GT] = ACTIONS(2404), - [anon_sym_GT_GT] = ACTIONS(2404), - [anon_sym_AMP_GT] = ACTIONS(2404), - [anon_sym_AMP_GT_GT] = ACTIONS(2404), - [anon_sym_LT_AMP] = ACTIONS(2404), - [anon_sym_GT_AMP] = ACTIONS(2404), - [sym__special_characters] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2404), - [anon_sym_DOLLAR] = ACTIONS(2404), - [sym_raw_string] = ACTIONS(2404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2404), - [anon_sym_LT_LPAREN] = ACTIONS(2404), - [anon_sym_GT_LPAREN] = ACTIONS(2404), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2404), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LF] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - }, - [4240] = { - [sym_file_redirect] = STATE(2042), - [sym_file_descriptor] = ACTIONS(7979), - [anon_sym_esac] = ACTIONS(4400), - [anon_sym_PIPE] = ACTIONS(4400), - [anon_sym_SEMI_SEMI] = ACTIONS(4400), - [anon_sym_PIPE_AMP] = ACTIONS(4400), - [anon_sym_AMP_AMP] = ACTIONS(4400), - [anon_sym_PIPE_PIPE] = ACTIONS(4400), - [anon_sym_LT] = ACTIONS(7981), - [anon_sym_GT] = ACTIONS(7981), - [anon_sym_GT_GT] = ACTIONS(7981), - [anon_sym_AMP_GT] = ACTIONS(7981), - [anon_sym_AMP_GT_GT] = ACTIONS(7981), - [anon_sym_LT_AMP] = ACTIONS(7981), - [anon_sym_GT_AMP] = ACTIONS(7981), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4400), - [anon_sym_LF] = ACTIONS(4400), - [anon_sym_AMP] = ACTIONS(4400), - }, - [4241] = { - [sym_concatenation] = STATE(2045), - [sym_string] = STATE(4389), - [sym_simple_expansion] = STATE(4389), - [sym_string_expansion] = STATE(4389), - [sym_expansion] = STATE(4389), - [sym_command_substitution] = STATE(4389), - [sym_process_substitution] = STATE(4389), - [sym__special_characters] = ACTIONS(8728), - [anon_sym_DQUOTE] = ACTIONS(8469), - [anon_sym_DOLLAR] = ACTIONS(8471), - [sym_raw_string] = ACTIONS(8730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8477), - [anon_sym_BQUOTE] = ACTIONS(8479), - [anon_sym_LT_LPAREN] = ACTIONS(8481), - [anon_sym_GT_LPAREN] = ACTIONS(8481), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8732), - }, - [4242] = { - [aux_sym_concatenation_repeat1] = STATE(4391), - [sym__concat] = ACTIONS(8734), - [anon_sym_esac] = ACTIONS(2418), - [anon_sym_PIPE] = 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), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_LF] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2418), - }, - [4243] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(4393), - [anon_sym_DQUOTE] = ACTIONS(8736), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [4244] = { - [sym_string] = STATE(4395), - [anon_sym_DQUOTE] = ACTIONS(8469), - [anon_sym_DOLLAR] = ACTIONS(8738), - [sym_raw_string] = ACTIONS(8740), - [anon_sym_POUND] = ACTIONS(8738), - [anon_sym_DASH] = ACTIONS(8738), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8742), - [anon_sym_STAR] = ACTIONS(8738), - [anon_sym_AT] = ACTIONS(8738), - [anon_sym_QMARK] = ACTIONS(8738), - [anon_sym_0] = ACTIONS(8744), - [anon_sym__] = ACTIONS(8744), - }, - [4245] = { - [aux_sym_concatenation_repeat1] = STATE(4391), - [sym__concat] = ACTIONS(8734), - [anon_sym_esac] = ACTIONS(2430), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_SEMI_SEMI] = ACTIONS(2430), - [anon_sym_PIPE_AMP] = ACTIONS(2430), - [anon_sym_AMP_AMP] = ACTIONS(2430), - [anon_sym_PIPE_PIPE] = ACTIONS(2430), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2430), - [anon_sym_LF] = ACTIONS(2430), - [anon_sym_AMP] = ACTIONS(2430), - }, - [4246] = { - [sym_subscript] = STATE(4401), - [sym_variable_name] = ACTIONS(8746), - [anon_sym_DOLLAR] = ACTIONS(8748), - [anon_sym_POUND] = ACTIONS(8750), - [anon_sym_DASH] = ACTIONS(8748), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8752), - [anon_sym_STAR] = ACTIONS(8748), - [anon_sym_AT] = ACTIONS(8748), - [anon_sym_QMARK] = ACTIONS(8748), - [anon_sym_0] = ACTIONS(8754), - [anon_sym__] = ACTIONS(8754), - }, - [4247] = { - [sym_for_statement] = STATE(4402), - [sym_while_statement] = STATE(4402), - [sym_if_statement] = STATE(4402), - [sym_case_statement] = STATE(4402), - [sym_function_definition] = STATE(4402), - [sym_subshell] = STATE(4402), - [sym_pipeline] = STATE(4402), - [sym_list] = STATE(4402), - [sym_command] = STATE(4402), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(4402), - [sym_variable_assignment] = STATE(4403), - [sym_declaration_command] = STATE(4402), - [sym_unset_command] = STATE(4402), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [4248] = { - [sym_for_statement] = STATE(4404), - [sym_while_statement] = STATE(4404), - [sym_if_statement] = STATE(4404), - [sym_case_statement] = STATE(4404), - [sym_function_definition] = STATE(4404), - [sym_subshell] = STATE(4404), - [sym_pipeline] = STATE(4404), - [sym_list] = STATE(4404), - [sym_command] = STATE(4404), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(4404), - [sym_variable_assignment] = STATE(4405), - [sym_declaration_command] = STATE(4404), - [sym_unset_command] = STATE(4404), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [4249] = { - [sym_for_statement] = STATE(4406), - [sym_while_statement] = STATE(4406), - [sym_if_statement] = STATE(4406), - [sym_case_statement] = STATE(4406), - [sym_function_definition] = STATE(4406), - [sym_subshell] = STATE(4406), - [sym_pipeline] = STATE(4406), - [sym_list] = STATE(4406), - [sym_command] = STATE(4406), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(4406), - [sym_variable_assignment] = STATE(4407), - [sym_declaration_command] = STATE(4406), - [sym_unset_command] = STATE(4406), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [4250] = { - [sym_variable_name] = ACTIONS(2563), - [anon_sym_esac] = ACTIONS(2565), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_SEMI_SEMI] = ACTIONS(2565), - [anon_sym_PIPE_AMP] = ACTIONS(2565), - [anon_sym_AMP_AMP] = ACTIONS(2565), - [anon_sym_PIPE_PIPE] = ACTIONS(2565), - [sym__special_characters] = ACTIONS(2565), - [anon_sym_DQUOTE] = ACTIONS(2565), - [anon_sym_DOLLAR] = ACTIONS(2565), - [sym_raw_string] = ACTIONS(2565), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2565), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2565), - [anon_sym_BQUOTE] = ACTIONS(2565), - [anon_sym_LT_LPAREN] = ACTIONS(2565), - [anon_sym_GT_LPAREN] = ACTIONS(2565), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2565), - [sym_word] = ACTIONS(2565), - [anon_sym_SEMI] = ACTIONS(2565), - [anon_sym_LF] = ACTIONS(2565), - [anon_sym_AMP] = ACTIONS(2565), - }, - [4251] = { - [sym_concatenation] = STATE(661), - [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), - [aux_sym_for_statement_repeat1] = STATE(1273), - [anon_sym_RPAREN] = ACTIONS(8756), - [sym__special_characters] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1287), - [anon_sym_DOLLAR] = ACTIONS(1289), - [sym_raw_string] = ACTIONS(1291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), - [anon_sym_BQUOTE] = ACTIONS(1297), - [anon_sym_LT_LPAREN] = ACTIONS(1299), - [anon_sym_GT_LPAREN] = ACTIONS(1299), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1301), - }, - [4252] = { - [sym__concat] = ACTIONS(3293), - [sym_variable_name] = ACTIONS(3293), - [anon_sym_esac] = ACTIONS(3295), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_SEMI_SEMI] = ACTIONS(3295), - [anon_sym_PIPE_AMP] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [sym__special_characters] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_DOLLAR] = ACTIONS(3295), - [sym_raw_string] = ACTIONS(3295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), - [anon_sym_BQUOTE] = ACTIONS(3295), - [anon_sym_LT_LPAREN] = ACTIONS(3295), - [anon_sym_GT_LPAREN] = ACTIONS(3295), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3295), - [sym_word] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - }, - [4253] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8758), - [sym_comment] = ACTIONS(56), - }, - [4254] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8760), - [sym_comment] = ACTIONS(56), - }, - [4255] = { - [anon_sym_RBRACE] = ACTIONS(8760), - [sym_comment] = ACTIONS(56), - }, - [4256] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4412), - [anon_sym_RBRACE] = ACTIONS(8762), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4257] = { - [sym__concat] = ACTIONS(3357), - [sym_variable_name] = ACTIONS(3357), - [anon_sym_esac] = ACTIONS(3359), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_PIPE_AMP] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [sym__special_characters] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_DOLLAR] = ACTIONS(3359), - [sym_raw_string] = ACTIONS(3359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), - [anon_sym_BQUOTE] = ACTIONS(3359), - [anon_sym_LT_LPAREN] = ACTIONS(3359), - [anon_sym_GT_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3359), - [sym_word] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - }, - [4258] = { - [sym_concatenation] = STATE(4415), - [sym_string] = STATE(4414), - [sym_simple_expansion] = STATE(4414), - [sym_string_expansion] = STATE(4414), - [sym_expansion] = STATE(4414), - [sym_command_substitution] = STATE(4414), - [sym_process_substitution] = STATE(4414), - [anon_sym_RBRACE] = ACTIONS(8760), - [sym__special_characters] = ACTIONS(8764), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(8766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8768), - }, - [4259] = { - [sym__concat] = ACTIONS(3402), - [sym_variable_name] = ACTIONS(3402), - [anon_sym_esac] = ACTIONS(3404), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_SEMI_SEMI] = ACTIONS(3404), - [anon_sym_PIPE_AMP] = ACTIONS(3404), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3404), - [sym__special_characters] = ACTIONS(3404), - [anon_sym_DQUOTE] = ACTIONS(3404), - [anon_sym_DOLLAR] = ACTIONS(3404), - [sym_raw_string] = ACTIONS(3404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), - [anon_sym_BQUOTE] = ACTIONS(3404), - [anon_sym_LT_LPAREN] = ACTIONS(3404), - [anon_sym_GT_LPAREN] = ACTIONS(3404), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3404), - [sym_word] = ACTIONS(3404), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - }, - [4260] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8770), - }, - [4261] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8772), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4262] = { - [sym__concat] = ACTIONS(3410), - [sym_variable_name] = ACTIONS(3410), - [anon_sym_esac] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(3412), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3412), - [sym_word] = ACTIONS(3412), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - }, - [4263] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8774), - }, - [4264] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8776), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4265] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8778), - }, - [4266] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8760), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4267] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4422), - [anon_sym_RBRACE] = ACTIONS(8780), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4268] = { - [sym__concat] = ACTIONS(3422), - [sym_variable_name] = ACTIONS(3422), - [anon_sym_esac] = ACTIONS(3424), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_SEMI_SEMI] = ACTIONS(3424), - [anon_sym_PIPE_AMP] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_PIPE_PIPE] = ACTIONS(3424), - [sym__special_characters] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [anon_sym_DOLLAR] = ACTIONS(3424), - [sym_raw_string] = ACTIONS(3424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), - [anon_sym_BQUOTE] = ACTIONS(3424), - [anon_sym_LT_LPAREN] = ACTIONS(3424), - [anon_sym_GT_LPAREN] = ACTIONS(3424), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3424), - [sym_word] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - }, - [4269] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4424), - [anon_sym_RBRACE] = ACTIONS(8782), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4270] = { - [sym__concat] = ACTIONS(3293), - [anon_sym_esac] = ACTIONS(3295), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_SEMI_SEMI] = ACTIONS(3295), - [anon_sym_PIPE_AMP] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [sym__special_characters] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_DOLLAR] = ACTIONS(3295), - [sym_raw_string] = ACTIONS(3295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), - [anon_sym_BQUOTE] = ACTIONS(3295), - [anon_sym_LT_LPAREN] = ACTIONS(3295), - [anon_sym_GT_LPAREN] = ACTIONS(3295), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3295), - [sym_word] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - }, - [4271] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8784), - [sym_comment] = ACTIONS(56), - }, - [4272] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8786), - [sym_comment] = ACTIONS(56), - }, - [4273] = { - [anon_sym_RBRACE] = ACTIONS(8786), - [sym_comment] = ACTIONS(56), - }, - [4274] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4428), - [anon_sym_RBRACE] = ACTIONS(8788), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4275] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_esac] = ACTIONS(3359), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_PIPE_AMP] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [sym__special_characters] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_DOLLAR] = ACTIONS(3359), - [sym_raw_string] = ACTIONS(3359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), - [anon_sym_BQUOTE] = ACTIONS(3359), - [anon_sym_LT_LPAREN] = ACTIONS(3359), - [anon_sym_GT_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3359), - [sym_word] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - }, - [4276] = { - [sym_concatenation] = STATE(4431), - [sym_string] = STATE(4430), - [sym_simple_expansion] = STATE(4430), - [sym_string_expansion] = STATE(4430), - [sym_expansion] = STATE(4430), - [sym_command_substitution] = STATE(4430), - [sym_process_substitution] = STATE(4430), - [anon_sym_RBRACE] = ACTIONS(8786), - [sym__special_characters] = ACTIONS(8790), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(8792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8794), - }, - [4277] = { - [sym__concat] = ACTIONS(3402), - [anon_sym_esac] = ACTIONS(3404), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_SEMI_SEMI] = ACTIONS(3404), - [anon_sym_PIPE_AMP] = ACTIONS(3404), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3404), - [sym__special_characters] = ACTIONS(3404), - [anon_sym_DQUOTE] = ACTIONS(3404), - [anon_sym_DOLLAR] = ACTIONS(3404), - [sym_raw_string] = ACTIONS(3404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), - [anon_sym_BQUOTE] = ACTIONS(3404), - [anon_sym_LT_LPAREN] = ACTIONS(3404), - [anon_sym_GT_LPAREN] = ACTIONS(3404), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3404), - [sym_word] = ACTIONS(3404), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - }, - [4278] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8796), - }, - [4279] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8798), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4280] = { - [sym__concat] = ACTIONS(3410), - [anon_sym_esac] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(3412), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3412), - [sym_word] = ACTIONS(3412), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - }, - [4281] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8800), - }, - [4282] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8802), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4283] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8804), - }, - [4284] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8786), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4285] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4438), - [anon_sym_RBRACE] = ACTIONS(8806), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4286] = { - [sym__concat] = ACTIONS(3422), - [anon_sym_esac] = ACTIONS(3424), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_SEMI_SEMI] = ACTIONS(3424), - [anon_sym_PIPE_AMP] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_PIPE_PIPE] = ACTIONS(3424), - [sym__special_characters] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [anon_sym_DOLLAR] = ACTIONS(3424), - [sym_raw_string] = ACTIONS(3424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), - [anon_sym_BQUOTE] = ACTIONS(3424), - [anon_sym_LT_LPAREN] = ACTIONS(3424), - [anon_sym_GT_LPAREN] = ACTIONS(3424), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3424), - [sym_word] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - }, - [4287] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4440), - [anon_sym_RBRACE] = ACTIONS(8808), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4288] = { - [sym_file_descriptor] = ACTIONS(4802), - [sym__concat] = ACTIONS(4802), - [anon_sym_esac] = ACTIONS(4804), - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [anon_sym_PIPE_AMP] = ACTIONS(4804), - [anon_sym_AMP_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4804), - [anon_sym_EQ_TILDE] = ACTIONS(4804), - [anon_sym_EQ_EQ] = ACTIONS(4804), - [anon_sym_LT] = ACTIONS(4804), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_GT_GT] = ACTIONS(4804), - [anon_sym_AMP_GT] = ACTIONS(4804), - [anon_sym_AMP_GT_GT] = ACTIONS(4804), - [anon_sym_LT_AMP] = ACTIONS(4804), - [anon_sym_GT_AMP] = ACTIONS(4804), - [anon_sym_LT_LT] = ACTIONS(4804), - [anon_sym_LT_LT_DASH] = ACTIONS(4804), - [anon_sym_LT_LT_LT] = ACTIONS(4804), - [sym__special_characters] = ACTIONS(4804), - [anon_sym_DQUOTE] = ACTIONS(4804), - [anon_sym_DOLLAR] = ACTIONS(4804), - [sym_raw_string] = ACTIONS(4804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), - [anon_sym_BQUOTE] = ACTIONS(4804), - [anon_sym_LT_LPAREN] = ACTIONS(4804), - [anon_sym_GT_LPAREN] = ACTIONS(4804), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4804), - [anon_sym_SEMI] = ACTIONS(4804), - [anon_sym_LF] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4804), - }, - [4289] = { - [sym_file_descriptor] = ACTIONS(4808), - [sym__concat] = ACTIONS(4808), - [anon_sym_esac] = ACTIONS(4810), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_SEMI_SEMI] = ACTIONS(4810), - [anon_sym_PIPE_AMP] = ACTIONS(4810), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [anon_sym_EQ_TILDE] = ACTIONS(4810), - [anon_sym_EQ_EQ] = ACTIONS(4810), - [anon_sym_LT] = ACTIONS(4810), - [anon_sym_GT] = ACTIONS(4810), - [anon_sym_GT_GT] = ACTIONS(4810), - [anon_sym_AMP_GT] = ACTIONS(4810), - [anon_sym_AMP_GT_GT] = ACTIONS(4810), - [anon_sym_LT_AMP] = ACTIONS(4810), - [anon_sym_GT_AMP] = ACTIONS(4810), - [anon_sym_LT_LT] = ACTIONS(4810), - [anon_sym_LT_LT_DASH] = ACTIONS(4810), - [anon_sym_LT_LT_LT] = ACTIONS(4810), - [sym__special_characters] = ACTIONS(4810), - [anon_sym_DQUOTE] = ACTIONS(4810), - [anon_sym_DOLLAR] = ACTIONS(4810), - [sym_raw_string] = ACTIONS(4810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), - [anon_sym_BQUOTE] = ACTIONS(4810), - [anon_sym_LT_LPAREN] = ACTIONS(4810), - [anon_sym_GT_LPAREN] = ACTIONS(4810), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4810), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LF] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4810), - }, - [4290] = { - [sym_file_descriptor] = ACTIONS(4871), - [sym__concat] = ACTIONS(4871), - [anon_sym_esac] = ACTIONS(4873), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [anon_sym_EQ_TILDE] = ACTIONS(4873), - [anon_sym_EQ_EQ] = ACTIONS(4873), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_GT_GT] = ACTIONS(4873), - [anon_sym_AMP_GT] = ACTIONS(4873), - [anon_sym_AMP_GT_GT] = ACTIONS(4873), - [anon_sym_LT_AMP] = ACTIONS(4873), - [anon_sym_GT_AMP] = ACTIONS(4873), - [anon_sym_LT_LT] = ACTIONS(4873), - [anon_sym_LT_LT_DASH] = ACTIONS(4873), - [anon_sym_LT_LT_LT] = ACTIONS(4873), - [sym__special_characters] = ACTIONS(4873), - [anon_sym_DQUOTE] = ACTIONS(4873), - [anon_sym_DOLLAR] = ACTIONS(4873), - [sym_raw_string] = ACTIONS(4873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), - [anon_sym_BQUOTE] = ACTIONS(4873), - [anon_sym_LT_LPAREN] = ACTIONS(4873), - [anon_sym_GT_LPAREN] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [4291] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8810), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4292] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8812), - [sym_comment] = ACTIONS(56), - }, - [4293] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8814), - [sym_comment] = ACTIONS(56), - }, - [4294] = { - [anon_sym_RBRACE] = ACTIONS(8814), - [sym_comment] = ACTIONS(56), - }, - [4295] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4445), - [anon_sym_RBRACE] = ACTIONS(8816), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4296] = { - [sym_file_descriptor] = ACTIONS(4883), - [sym__concat] = ACTIONS(4883), - [anon_sym_esac] = ACTIONS(4885), - [anon_sym_PIPE] = 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(4885), - [anon_sym_EQ_EQ] = ACTIONS(4885), - [anon_sym_LT] = ACTIONS(4885), - [anon_sym_GT] = ACTIONS(4885), - [anon_sym_GT_GT] = ACTIONS(4885), - [anon_sym_AMP_GT] = ACTIONS(4885), - [anon_sym_AMP_GT_GT] = ACTIONS(4885), - [anon_sym_LT_AMP] = ACTIONS(4885), - [anon_sym_GT_AMP] = ACTIONS(4885), - [anon_sym_LT_LT] = ACTIONS(4885), - [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(4885), - [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(182), - [sym_word] = ACTIONS(4885), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [4297] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4447), - [anon_sym_RBRACE] = ACTIONS(8818), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4298] = { - [sym_file_descriptor] = ACTIONS(4889), - [sym__concat] = ACTIONS(4889), - [anon_sym_esac] = ACTIONS(4891), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [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(4891), - [anon_sym_AMP_GT] = ACTIONS(4891), - [anon_sym_AMP_GT_GT] = ACTIONS(4891), - [anon_sym_LT_AMP] = ACTIONS(4891), - [anon_sym_GT_AMP] = ACTIONS(4891), - [anon_sym_LT_LT] = ACTIONS(4891), - [anon_sym_LT_LT_DASH] = ACTIONS(4891), - [anon_sym_LT_LT_LT] = ACTIONS(4891), - [sym__special_characters] = ACTIONS(4891), - [anon_sym_DQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR] = ACTIONS(4891), - [sym_raw_string] = ACTIONS(4891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), - [anon_sym_BQUOTE] = ACTIONS(4891), - [anon_sym_LT_LPAREN] = ACTIONS(4891), - [anon_sym_GT_LPAREN] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4891), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [4299] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4449), - [anon_sym_RBRACE] = ACTIONS(8820), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4300] = { - [sym_file_descriptor] = ACTIONS(4895), - [sym__concat] = ACTIONS(4895), - [anon_sym_esac] = ACTIONS(4897), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_SEMI_SEMI] = ACTIONS(4897), - [anon_sym_PIPE_AMP] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [anon_sym_EQ_TILDE] = ACTIONS(4897), - [anon_sym_EQ_EQ] = ACTIONS(4897), - [anon_sym_LT] = ACTIONS(4897), - [anon_sym_GT] = ACTIONS(4897), - [anon_sym_GT_GT] = ACTIONS(4897), - [anon_sym_AMP_GT] = ACTIONS(4897), - [anon_sym_AMP_GT_GT] = ACTIONS(4897), - [anon_sym_LT_AMP] = ACTIONS(4897), - [anon_sym_GT_AMP] = ACTIONS(4897), - [anon_sym_LT_LT] = ACTIONS(4897), - [anon_sym_LT_LT_DASH] = ACTIONS(4897), - [anon_sym_LT_LT_LT] = ACTIONS(4897), - [sym__special_characters] = ACTIONS(4897), - [anon_sym_DQUOTE] = ACTIONS(4897), - [anon_sym_DOLLAR] = ACTIONS(4897), - [sym_raw_string] = ACTIONS(4897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), - [anon_sym_BQUOTE] = ACTIONS(4897), - [anon_sym_LT_LPAREN] = ACTIONS(4897), - [anon_sym_GT_LPAREN] = ACTIONS(4897), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4897), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LF] = ACTIONS(4897), - [anon_sym_AMP] = ACTIONS(4897), - }, - [4301] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8822), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4302] = { - [sym_file_descriptor] = ACTIONS(4901), - [sym__concat] = ACTIONS(4901), - [anon_sym_esac] = ACTIONS(4903), - [anon_sym_PIPE] = ACTIONS(4903), - [anon_sym_SEMI_SEMI] = ACTIONS(4903), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [anon_sym_EQ_TILDE] = ACTIONS(4903), - [anon_sym_EQ_EQ] = ACTIONS(4903), - [anon_sym_LT] = ACTIONS(4903), - [anon_sym_GT] = ACTIONS(4903), - [anon_sym_GT_GT] = ACTIONS(4903), - [anon_sym_AMP_GT] = ACTIONS(4903), - [anon_sym_AMP_GT_GT] = ACTIONS(4903), - [anon_sym_LT_AMP] = ACTIONS(4903), - [anon_sym_GT_AMP] = ACTIONS(4903), - [anon_sym_LT_LT] = ACTIONS(4903), - [anon_sym_LT_LT_DASH] = ACTIONS(4903), - [anon_sym_LT_LT_LT] = ACTIONS(4903), - [sym__special_characters] = ACTIONS(4903), - [anon_sym_DQUOTE] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4903), - [sym_raw_string] = ACTIONS(4903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), - [anon_sym_BQUOTE] = ACTIONS(4903), - [anon_sym_LT_LPAREN] = ACTIONS(4903), - [anon_sym_GT_LPAREN] = ACTIONS(4903), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4903), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LF] = ACTIONS(4903), - [anon_sym_AMP] = ACTIONS(4903), - }, - [4303] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8824), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4304] = { - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(1890), - [anon_sym_esac] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_AMP_GT] = ACTIONS(1892), - [anon_sym_AMP_GT_GT] = ACTIONS(1892), - [anon_sym_LT_AMP] = ACTIONS(1892), - [anon_sym_GT_AMP] = ACTIONS(1892), - [anon_sym_LT_LT] = ACTIONS(1892), - [anon_sym_LT_LT_DASH] = ACTIONS(1892), - [anon_sym_LT_LT_LT] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [4305] = { - [aux_sym_concatenation_repeat1] = STATE(4305), - [sym_file_descriptor] = ACTIONS(1890), - [sym__concat] = ACTIONS(8826), - [anon_sym_esac] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_AMP_GT] = ACTIONS(1892), - [anon_sym_AMP_GT_GT] = ACTIONS(1892), - [anon_sym_LT_AMP] = ACTIONS(1892), - [anon_sym_GT_AMP] = ACTIONS(1892), - [anon_sym_LT_LT] = ACTIONS(1892), - [anon_sym_LT_LT_DASH] = ACTIONS(1892), - [anon_sym_LT_LT_LT] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [4306] = { - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [anon_sym_esac] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1929), - [anon_sym_PIPE_AMP] = ACTIONS(1929), - [anon_sym_AMP_AMP] = ACTIONS(1929), - [anon_sym_PIPE_PIPE] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_GT_GT] = ACTIONS(1929), - [anon_sym_AMP_GT] = ACTIONS(1929), - [anon_sym_AMP_GT_GT] = ACTIONS(1929), - [anon_sym_LT_AMP] = ACTIONS(1929), - [anon_sym_GT_AMP] = ACTIONS(1929), - [anon_sym_LT_LT] = ACTIONS(1929), - [anon_sym_LT_LT_DASH] = ACTIONS(1929), - [anon_sym_LT_LT_LT] = ACTIONS(1929), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - }, - [4307] = { - [sym_concatenation] = STATE(4455), - [sym_string] = STATE(4454), - [sym_simple_expansion] = STATE(4454), - [sym_string_expansion] = STATE(4454), - [sym_expansion] = STATE(4454), - [sym_command_substitution] = STATE(4454), - [sym_process_substitution] = STATE(4454), - [anon_sym_RBRACE] = ACTIONS(8829), - [sym__special_characters] = ACTIONS(8831), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(8833), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8835), - }, - [4308] = { - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(1972), - [anon_sym_esac] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1974), - [anon_sym_GT_GT] = ACTIONS(1974), - [anon_sym_AMP_GT] = ACTIONS(1974), - [anon_sym_AMP_GT_GT] = ACTIONS(1974), - [anon_sym_LT_AMP] = ACTIONS(1974), - [anon_sym_GT_AMP] = ACTIONS(1974), - [anon_sym_LT_LT] = ACTIONS(1974), - [anon_sym_LT_LT_DASH] = ACTIONS(1974), - [anon_sym_LT_LT_LT] = ACTIONS(1974), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_LF] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - }, - [4309] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8837), - }, - [4310] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8839), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4311] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(8841), - [sym_comment] = ACTIONS(56), - }, - [4312] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4461), - [anon_sym_RBRACE] = ACTIONS(8843), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8845), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4313] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4464), - [anon_sym_RBRACE] = ACTIONS(8847), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8849), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4314] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4466), - [anon_sym_RBRACE] = ACTIONS(8829), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8851), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4315] = { - [sym_file_descriptor] = ACTIONS(2026), - [sym__concat] = ACTIONS(2026), - [anon_sym_esac] = ACTIONS(2028), - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_SEMI_SEMI] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(2028), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [anon_sym_LT] = ACTIONS(2028), - [anon_sym_GT] = ACTIONS(2028), - [anon_sym_GT_GT] = ACTIONS(2028), - [anon_sym_AMP_GT] = ACTIONS(2028), - [anon_sym_AMP_GT_GT] = ACTIONS(2028), - [anon_sym_LT_AMP] = ACTIONS(2028), - [anon_sym_GT_AMP] = ACTIONS(2028), - [anon_sym_LT_LT] = ACTIONS(2028), - [anon_sym_LT_LT_DASH] = ACTIONS(2028), - [anon_sym_LT_LT_LT] = ACTIONS(2028), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - }, - [4316] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8853), - }, - [4317] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8855), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4318] = { - [sym_file_descriptor] = ACTIONS(2034), - [sym__concat] = ACTIONS(2034), - [anon_sym_esac] = ACTIONS(2036), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_SEMI_SEMI] = ACTIONS(2036), - [anon_sym_PIPE_AMP] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [anon_sym_LT] = ACTIONS(2036), - [anon_sym_GT] = ACTIONS(2036), - [anon_sym_GT_GT] = ACTIONS(2036), - [anon_sym_AMP_GT] = ACTIONS(2036), - [anon_sym_AMP_GT_GT] = ACTIONS(2036), - [anon_sym_LT_AMP] = ACTIONS(2036), - [anon_sym_GT_AMP] = ACTIONS(2036), - [anon_sym_LT_LT] = ACTIONS(2036), - [anon_sym_LT_LT_DASH] = ACTIONS(2036), - [anon_sym_LT_LT_LT] = ACTIONS(2036), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_LF] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - }, - [4319] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8857), - }, - [4320] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8829), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4321] = { - [sym_file_descriptor] = ACTIONS(2196), - [sym__concat] = ACTIONS(2196), - [anon_sym_esac] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_SEMI_SEMI] = ACTIONS(2198), - [anon_sym_PIPE_AMP] = ACTIONS(2198), - [anon_sym_AMP_AMP] = ACTIONS(2198), - [anon_sym_PIPE_PIPE] = ACTIONS(2198), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_GT] = ACTIONS(2198), - [anon_sym_GT_GT] = ACTIONS(2198), - [anon_sym_AMP_GT] = ACTIONS(2198), - [anon_sym_AMP_GT_GT] = ACTIONS(2198), - [anon_sym_LT_AMP] = ACTIONS(2198), - [anon_sym_GT_AMP] = ACTIONS(2198), - [anon_sym_LT_LT] = ACTIONS(2198), - [anon_sym_LT_LT_DASH] = ACTIONS(2198), - [anon_sym_LT_LT_LT] = ACTIONS(2198), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - }, - [4322] = { - [sym_file_descriptor] = ACTIONS(2402), - [sym__concat] = ACTIONS(2402), - [anon_sym_esac] = ACTIONS(2404), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_SEMI_SEMI] = ACTIONS(2404), - [anon_sym_PIPE_AMP] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2404), - [anon_sym_GT] = ACTIONS(2404), - [anon_sym_GT_GT] = ACTIONS(2404), - [anon_sym_AMP_GT] = ACTIONS(2404), - [anon_sym_AMP_GT_GT] = ACTIONS(2404), - [anon_sym_LT_AMP] = ACTIONS(2404), - [anon_sym_GT_AMP] = ACTIONS(2404), - [anon_sym_LT_LT] = ACTIONS(2404), - [anon_sym_LT_LT_DASH] = ACTIONS(2404), - [anon_sym_LT_LT_LT] = ACTIONS(2404), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LF] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - }, - [4323] = { - [sym__concat] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7032), - [anon_sym_RPAREN] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), - }, - [4324] = { - [sym__concat] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7036), - [anon_sym_RPAREN] = ACTIONS(7036), - [sym_comment] = ACTIONS(56), - }, - [4325] = { - [sym__concat] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7040), - [anon_sym_RPAREN] = ACTIONS(7040), - [sym_comment] = ACTIONS(56), - }, - [4326] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_SEMI_SEMI] = ACTIONS(1102), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(8233), - [anon_sym_DQUOTE] = ACTIONS(8235), - [anon_sym_DOLLAR] = ACTIONS(8237), - [sym_raw_string] = ACTIONS(8235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8235), - [anon_sym_BQUOTE] = ACTIONS(8235), - [anon_sym_LT_LPAREN] = ACTIONS(8235), - [anon_sym_GT_LPAREN] = ACTIONS(8235), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8233), - }, - [4327] = { - [sym__special_characters] = ACTIONS(8237), - [anon_sym_DQUOTE] = ACTIONS(8235), - [anon_sym_DOLLAR] = ACTIONS(8237), - [sym_raw_string] = ACTIONS(8235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8235), - [anon_sym_BQUOTE] = ACTIONS(8235), - [anon_sym_LT_LPAREN] = ACTIONS(8235), - [anon_sym_GT_LPAREN] = ACTIONS(8235), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8237), - }, - [4328] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8859), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), - }, - [4329] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8859), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), - }, - [4330] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_SEMI_SEMI] = ACTIONS(1102), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(8245), - [anon_sym_DQUOTE] = ACTIONS(8247), - [anon_sym_DOLLAR] = ACTIONS(8249), - [sym_raw_string] = ACTIONS(8247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8247), - [anon_sym_BQUOTE] = ACTIONS(8247), - [anon_sym_LT_LPAREN] = ACTIONS(8247), - [anon_sym_GT_LPAREN] = ACTIONS(8247), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8245), - }, - [4331] = { - [sym__special_characters] = ACTIONS(8249), - [anon_sym_DQUOTE] = ACTIONS(8247), - [anon_sym_DOLLAR] = ACTIONS(8249), - [sym_raw_string] = ACTIONS(8247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8247), - [anon_sym_BQUOTE] = ACTIONS(8247), - [anon_sym_LT_LPAREN] = ACTIONS(8247), - [anon_sym_GT_LPAREN] = ACTIONS(8247), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8249), - }, - [4332] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8861), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), - }, - [4333] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8861), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), - }, - [4334] = { - [sym__concat] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7034), - [anon_sym_SEMI_SEMI] = ACTIONS(7034), - [anon_sym_PIPE_AMP] = ACTIONS(7034), - [anon_sym_AMP_AMP] = ACTIONS(7034), - [anon_sym_PIPE_PIPE] = ACTIONS(7034), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7034), - [anon_sym_LF] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - }, - [4335] = { - [sym__concat] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7038), - [anon_sym_SEMI_SEMI] = ACTIONS(7038), - [anon_sym_PIPE_AMP] = ACTIONS(7038), - [anon_sym_AMP_AMP] = ACTIONS(7038), - [anon_sym_PIPE_PIPE] = ACTIONS(7038), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7038), - [anon_sym_LF] = ACTIONS(7038), - [anon_sym_AMP] = ACTIONS(7038), - }, - [4336] = { - [sym__concat] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_SEMI_SEMI] = ACTIONS(7042), - [anon_sym_PIPE_AMP] = ACTIONS(7042), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7042), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7042), - [anon_sym_LF] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - }, - [4337] = { - [sym__concat] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_RPAREN] = ACTIONS(6043), - [anon_sym_SEMI_SEMI] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6043), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - }, - [4338] = { - [sym__concat] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_RPAREN] = ACTIONS(6047), - [anon_sym_SEMI_SEMI] = ACTIONS(6047), - [anon_sym_PIPE_AMP] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6047), - [anon_sym_PIPE_PIPE] = ACTIONS(6047), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - }, - [4339] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [4340] = { - [sym__concat] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6055), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6055), - [anon_sym_LF] = ACTIONS(6055), - [anon_sym_AMP] = ACTIONS(6055), - }, - [4341] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8863), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4342] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_RPAREN] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [4343] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8865), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4344] = { - [sym__concat] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6067), - [anon_sym_RPAREN] = ACTIONS(6067), - [anon_sym_SEMI_SEMI] = ACTIONS(6067), - [anon_sym_PIPE_AMP] = ACTIONS(6067), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LF] = ACTIONS(6067), - [anon_sym_AMP] = ACTIONS(6067), - }, - [4345] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8867), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4346] = { - [sym__concat] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_RPAREN] = ACTIONS(6073), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [anon_sym_PIPE_AMP] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6073), - [anon_sym_PIPE_PIPE] = ACTIONS(6073), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LF] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - }, - [4347] = { - [sym__concat] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_RPAREN] = ACTIONS(6077), - [anon_sym_SEMI_SEMI] = ACTIONS(6077), - [anon_sym_PIPE_AMP] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6077), - [anon_sym_PIPE_PIPE] = ACTIONS(6077), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LF] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - }, - [4348] = { - [sym__concat] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6930), - [anon_sym_RPAREN] = ACTIONS(6041), - [anon_sym_PIPE_AMP] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6041), - [anon_sym_PIPE_PIPE] = ACTIONS(6041), - [sym_comment] = ACTIONS(56), - }, - [4349] = { - [sym__concat] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6932), - [anon_sym_RPAREN] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [sym_comment] = ACTIONS(56), - }, - [4350] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_RPAREN] = ACTIONS(6049), - [anon_sym_PIPE_AMP] = ACTIONS(6049), - [anon_sym_AMP_AMP] = ACTIONS(6049), - [anon_sym_PIPE_PIPE] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - }, - [4351] = { - [sym__concat] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6936), - [anon_sym_RPAREN] = ACTIONS(6053), - [anon_sym_PIPE_AMP] = ACTIONS(6053), - [anon_sym_AMP_AMP] = ACTIONS(6053), - [anon_sym_PIPE_PIPE] = ACTIONS(6053), - [sym_comment] = ACTIONS(56), - }, - [4352] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8869), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4353] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6940), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_PIPE_AMP] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - }, - [4354] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8871), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4355] = { - [sym__concat] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6944), - [anon_sym_RPAREN] = ACTIONS(6065), - [anon_sym_PIPE_AMP] = ACTIONS(6065), - [anon_sym_AMP_AMP] = ACTIONS(6065), - [anon_sym_PIPE_PIPE] = ACTIONS(6065), - [sym_comment] = ACTIONS(56), - }, - [4356] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8873), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4357] = { - [sym__concat] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6948), - [anon_sym_RPAREN] = ACTIONS(6071), - [anon_sym_PIPE_AMP] = ACTIONS(6071), - [anon_sym_AMP_AMP] = ACTIONS(6071), - [anon_sym_PIPE_PIPE] = ACTIONS(6071), - [sym_comment] = ACTIONS(56), - }, - [4358] = { - [sym__concat] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_RPAREN] = ACTIONS(6075), - [anon_sym_PIPE_AMP] = ACTIONS(6075), - [anon_sym_AMP_AMP] = ACTIONS(6075), - [anon_sym_PIPE_PIPE] = ACTIONS(6075), - [sym_comment] = ACTIONS(56), - }, - [4359] = { - [sym__concat] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6930), - [anon_sym_PIPE_AMP] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6041), - [anon_sym_PIPE_PIPE] = ACTIONS(6041), - [anon_sym_BQUOTE] = ACTIONS(6041), - [sym_comment] = ACTIONS(56), - }, - [4360] = { - [sym__concat] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6932), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [sym_comment] = ACTIONS(56), - }, - [4361] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_PIPE_AMP] = ACTIONS(6049), - [anon_sym_AMP_AMP] = ACTIONS(6049), - [anon_sym_PIPE_PIPE] = ACTIONS(6049), - [anon_sym_BQUOTE] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - }, - [4362] = { - [sym__concat] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6936), - [anon_sym_PIPE_AMP] = ACTIONS(6053), - [anon_sym_AMP_AMP] = ACTIONS(6053), - [anon_sym_PIPE_PIPE] = ACTIONS(6053), - [anon_sym_BQUOTE] = ACTIONS(6053), - [sym_comment] = ACTIONS(56), - }, - [4363] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8875), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4364] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6940), - [anon_sym_PIPE_AMP] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [anon_sym_BQUOTE] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - }, - [4365] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8877), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4366] = { - [sym__concat] = ACTIONS(6065), - [anon_sym_PIPE] = ACTIONS(6944), - [anon_sym_PIPE_AMP] = ACTIONS(6065), - [anon_sym_AMP_AMP] = ACTIONS(6065), - [anon_sym_PIPE_PIPE] = ACTIONS(6065), - [anon_sym_BQUOTE] = ACTIONS(6065), - [sym_comment] = ACTIONS(56), - }, - [4367] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8879), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4368] = { - [sym__concat] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6948), - [anon_sym_PIPE_AMP] = ACTIONS(6071), - [anon_sym_AMP_AMP] = ACTIONS(6071), - [anon_sym_PIPE_PIPE] = ACTIONS(6071), - [anon_sym_BQUOTE] = ACTIONS(6071), - [sym_comment] = ACTIONS(56), - }, - [4369] = { - [sym__concat] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6950), - [anon_sym_PIPE_AMP] = ACTIONS(6075), - [anon_sym_AMP_AMP] = ACTIONS(6075), - [anon_sym_PIPE_PIPE] = ACTIONS(6075), - [anon_sym_BQUOTE] = ACTIONS(6075), - [sym_comment] = ACTIONS(56), - }, - [4370] = { - [sym_file_descriptor] = ACTIONS(3293), - [sym__concat] = ACTIONS(3293), - [sym_variable_name] = ACTIONS(3293), - [anon_sym_esac] = ACTIONS(3295), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_SEMI_SEMI] = ACTIONS(3295), - [anon_sym_PIPE_AMP] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_GT_GT] = ACTIONS(3295), - [anon_sym_AMP_GT] = ACTIONS(3295), - [anon_sym_AMP_GT_GT] = ACTIONS(3295), - [anon_sym_LT_AMP] = ACTIONS(3295), - [anon_sym_GT_AMP] = ACTIONS(3295), - [sym__special_characters] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_DOLLAR] = ACTIONS(3295), - [sym_raw_string] = ACTIONS(3295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), - [anon_sym_BQUOTE] = ACTIONS(3295), - [anon_sym_LT_LPAREN] = ACTIONS(3295), - [anon_sym_GT_LPAREN] = ACTIONS(3295), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - }, - [4371] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8881), - [sym_comment] = ACTIONS(56), - }, - [4372] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8883), - [sym_comment] = ACTIONS(56), - }, - [4373] = { - [anon_sym_RBRACE] = ACTIONS(8883), - [sym_comment] = ACTIONS(56), - }, - [4374] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4484), - [anon_sym_RBRACE] = ACTIONS(8885), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4375] = { - [sym_file_descriptor] = ACTIONS(3357), - [sym__concat] = ACTIONS(3357), - [sym_variable_name] = ACTIONS(3357), - [anon_sym_esac] = ACTIONS(3359), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_PIPE_AMP] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_GT_GT] = ACTIONS(3359), - [anon_sym_AMP_GT] = ACTIONS(3359), - [anon_sym_AMP_GT_GT] = ACTIONS(3359), - [anon_sym_LT_AMP] = ACTIONS(3359), - [anon_sym_GT_AMP] = ACTIONS(3359), - [sym__special_characters] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_DOLLAR] = ACTIONS(3359), - [sym_raw_string] = ACTIONS(3359), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), - [anon_sym_BQUOTE] = ACTIONS(3359), - [anon_sym_LT_LPAREN] = ACTIONS(3359), - [anon_sym_GT_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - }, - [4376] = { - [sym_concatenation] = STATE(4487), - [sym_string] = STATE(4486), - [sym_simple_expansion] = STATE(4486), - [sym_string_expansion] = STATE(4486), - [sym_expansion] = STATE(4486), - [sym_command_substitution] = STATE(4486), - [sym_process_substitution] = STATE(4486), - [anon_sym_RBRACE] = ACTIONS(8883), - [sym__special_characters] = ACTIONS(8887), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(8889), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8891), - }, - [4377] = { - [sym_file_descriptor] = ACTIONS(3402), - [sym__concat] = ACTIONS(3402), - [sym_variable_name] = ACTIONS(3402), - [anon_sym_esac] = ACTIONS(3404), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_SEMI_SEMI] = ACTIONS(3404), - [anon_sym_PIPE_AMP] = ACTIONS(3404), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3404), - [anon_sym_LT] = ACTIONS(3404), - [anon_sym_GT] = ACTIONS(3404), - [anon_sym_GT_GT] = ACTIONS(3404), - [anon_sym_AMP_GT] = ACTIONS(3404), - [anon_sym_AMP_GT_GT] = ACTIONS(3404), - [anon_sym_LT_AMP] = ACTIONS(3404), - [anon_sym_GT_AMP] = ACTIONS(3404), - [sym__special_characters] = ACTIONS(3404), - [anon_sym_DQUOTE] = ACTIONS(3404), - [anon_sym_DOLLAR] = ACTIONS(3404), - [sym_raw_string] = ACTIONS(3404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), - [anon_sym_BQUOTE] = ACTIONS(3404), - [anon_sym_LT_LPAREN] = ACTIONS(3404), - [anon_sym_GT_LPAREN] = ACTIONS(3404), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3404), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - }, - [4378] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8893), - }, - [4379] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8895), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4380] = { - [sym_file_descriptor] = ACTIONS(3410), - [sym__concat] = ACTIONS(3410), - [sym_variable_name] = ACTIONS(3410), - [anon_sym_esac] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [anon_sym_LT] = ACTIONS(3412), - [anon_sym_GT] = ACTIONS(3412), - [anon_sym_GT_GT] = ACTIONS(3412), - [anon_sym_AMP_GT] = ACTIONS(3412), - [anon_sym_AMP_GT_GT] = ACTIONS(3412), - [anon_sym_LT_AMP] = ACTIONS(3412), - [anon_sym_GT_AMP] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(3412), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3412), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - }, - [4381] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8897), - }, - [4382] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8899), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4383] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8901), - }, - [4384] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8883), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4385] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4494), - [anon_sym_RBRACE] = ACTIONS(8903), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4386] = { - [sym_file_descriptor] = ACTIONS(3422), - [sym__concat] = ACTIONS(3422), - [sym_variable_name] = ACTIONS(3422), - [anon_sym_esac] = ACTIONS(3424), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_SEMI_SEMI] = ACTIONS(3424), - [anon_sym_PIPE_AMP] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_PIPE_PIPE] = ACTIONS(3424), - [anon_sym_LT] = ACTIONS(3424), - [anon_sym_GT] = ACTIONS(3424), - [anon_sym_GT_GT] = ACTIONS(3424), - [anon_sym_AMP_GT] = ACTIONS(3424), - [anon_sym_AMP_GT_GT] = ACTIONS(3424), - [anon_sym_LT_AMP] = ACTIONS(3424), - [anon_sym_GT_AMP] = ACTIONS(3424), - [sym__special_characters] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [anon_sym_DOLLAR] = ACTIONS(3424), - [sym_raw_string] = ACTIONS(3424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), - [anon_sym_BQUOTE] = ACTIONS(3424), - [anon_sym_LT_LPAREN] = ACTIONS(3424), - [anon_sym_GT_LPAREN] = ACTIONS(3424), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - }, - [4387] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4496), - [anon_sym_RBRACE] = ACTIONS(8905), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4388] = { - [aux_sym_concatenation_repeat1] = STATE(4391), - [sym__concat] = ACTIONS(8734), - [anon_sym_esac] = ACTIONS(4044), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_SEMI_SEMI] = ACTIONS(4044), - [anon_sym_PIPE_AMP] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_PIPE_PIPE] = ACTIONS(4044), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4044), - }, - [4389] = { - [aux_sym_concatenation_repeat1] = STATE(4391), - [sym__concat] = ACTIONS(8734), - [anon_sym_esac] = ACTIONS(4046), - [anon_sym_PIPE] = ACTIONS(4046), - [anon_sym_SEMI_SEMI] = ACTIONS(4046), - [anon_sym_PIPE_AMP] = ACTIONS(4046), - [anon_sym_AMP_AMP] = ACTIONS(4046), - [anon_sym_PIPE_PIPE] = ACTIONS(4046), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4046), - [anon_sym_AMP] = ACTIONS(4046), - }, - [4390] = { - [sym_string] = STATE(4497), - [sym_simple_expansion] = STATE(4497), - [sym_string_expansion] = STATE(4497), - [sym_expansion] = STATE(4497), - [sym_command_substitution] = STATE(4497), - [sym_process_substitution] = STATE(4497), - [sym__special_characters] = ACTIONS(8907), - [anon_sym_DQUOTE] = ACTIONS(8469), - [anon_sym_DOLLAR] = ACTIONS(8471), - [sym_raw_string] = ACTIONS(8909), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8477), - [anon_sym_BQUOTE] = ACTIONS(8479), - [anon_sym_LT_LPAREN] = ACTIONS(8481), - [anon_sym_GT_LPAREN] = ACTIONS(8481), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8907), - }, - [4391] = { - [aux_sym_concatenation_repeat1] = STATE(4498), - [sym__concat] = ACTIONS(8734), - [anon_sym_esac] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(792), - [anon_sym_SEMI_SEMI] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LF] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(792), - }, - [4392] = { - [sym__concat] = ACTIONS(794), - [anon_sym_esac] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_SEMI_SEMI] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(796), - [anon_sym_LF] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - }, - [4393] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(448), - [anon_sym_DQUOTE] = ACTIONS(8911), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [4394] = { - [sym__concat] = ACTIONS(826), - [anon_sym_esac] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_SEMI_SEMI] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LF] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(828), - }, - [4395] = { - [sym__concat] = ACTIONS(830), - [anon_sym_esac] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(832), - [anon_sym_LF] = ACTIONS(832), - [anon_sym_AMP] = ACTIONS(832), - }, - [4396] = { - [sym__concat] = ACTIONS(834), - [anon_sym_esac] = ACTIONS(836), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_SEMI_SEMI] = ACTIONS(836), - [anon_sym_PIPE_AMP] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(836), - [anon_sym_PIPE_PIPE] = ACTIONS(836), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_LF] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(836), - }, - [4397] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(8913), - [sym_comment] = ACTIONS(56), - }, - [4398] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4503), - [anon_sym_RBRACE] = ACTIONS(8915), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8917), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4399] = { - [sym_subscript] = STATE(4507), - [sym_variable_name] = ACTIONS(8919), - [anon_sym_DOLLAR] = ACTIONS(8921), - [anon_sym_DASH] = ACTIONS(8921), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8923), - [anon_sym_STAR] = ACTIONS(8921), - [anon_sym_AT] = ACTIONS(8921), - [anon_sym_QMARK] = ACTIONS(8921), - [anon_sym_0] = ACTIONS(8925), - [anon_sym__] = ACTIONS(8925), - }, - [4400] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4510), - [anon_sym_RBRACE] = ACTIONS(8927), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8929), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4401] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4513), - [anon_sym_RBRACE] = ACTIONS(8931), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(8933), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4402] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(8935), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [4403] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(8935), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [4404] = { - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_BQUOTE] = ACTIONS(8935), - [sym_comment] = ACTIONS(56), - }, - [4405] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_PIPE_AMP] = ACTIONS(1074), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(8935), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [4406] = { - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(8937), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [sym_comment] = ACTIONS(56), - }, - [4407] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(8937), - [anon_sym_PIPE_AMP] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [4408] = { - [sym_variable_name] = ACTIONS(4181), - [anon_sym_esac] = ACTIONS(4183), - [anon_sym_PIPE] = ACTIONS(4183), - [anon_sym_SEMI_SEMI] = ACTIONS(4183), - [anon_sym_PIPE_AMP] = ACTIONS(4183), - [anon_sym_AMP_AMP] = ACTIONS(4183), - [anon_sym_PIPE_PIPE] = ACTIONS(4183), - [sym__special_characters] = ACTIONS(4183), - [anon_sym_DQUOTE] = ACTIONS(4183), - [anon_sym_DOLLAR] = ACTIONS(4183), - [sym_raw_string] = ACTIONS(4183), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4183), - [anon_sym_BQUOTE] = ACTIONS(4183), - [anon_sym_LT_LPAREN] = ACTIONS(4183), - [anon_sym_GT_LPAREN] = ACTIONS(4183), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4183), - [sym_word] = ACTIONS(4183), - [anon_sym_SEMI] = ACTIONS(4183), - [anon_sym_LF] = ACTIONS(4183), - [anon_sym_AMP] = ACTIONS(4183), - }, - [4409] = { - [sym__concat] = ACTIONS(4802), - [sym_variable_name] = ACTIONS(4802), - [anon_sym_esac] = ACTIONS(4804), - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [anon_sym_PIPE_AMP] = ACTIONS(4804), - [anon_sym_AMP_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4804), - [sym__special_characters] = ACTIONS(4804), - [anon_sym_DQUOTE] = ACTIONS(4804), - [anon_sym_DOLLAR] = ACTIONS(4804), - [sym_raw_string] = ACTIONS(4804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), - [anon_sym_BQUOTE] = ACTIONS(4804), - [anon_sym_LT_LPAREN] = ACTIONS(4804), - [anon_sym_GT_LPAREN] = ACTIONS(4804), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4804), - [sym_word] = ACTIONS(4804), - [anon_sym_SEMI] = ACTIONS(4804), - [anon_sym_LF] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4804), - }, - [4410] = { - [sym__concat] = ACTIONS(4808), - [sym_variable_name] = ACTIONS(4808), - [anon_sym_esac] = ACTIONS(4810), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_SEMI_SEMI] = ACTIONS(4810), - [anon_sym_PIPE_AMP] = ACTIONS(4810), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [sym__special_characters] = ACTIONS(4810), - [anon_sym_DQUOTE] = ACTIONS(4810), - [anon_sym_DOLLAR] = ACTIONS(4810), - [sym_raw_string] = ACTIONS(4810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), - [anon_sym_BQUOTE] = ACTIONS(4810), - [anon_sym_LT_LPAREN] = ACTIONS(4810), - [anon_sym_GT_LPAREN] = ACTIONS(4810), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4810), - [sym_word] = ACTIONS(4810), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LF] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4810), - }, - [4411] = { - [sym__concat] = ACTIONS(4871), - [sym_variable_name] = ACTIONS(4871), - [anon_sym_esac] = ACTIONS(4873), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [sym__special_characters] = ACTIONS(4873), - [anon_sym_DQUOTE] = ACTIONS(4873), - [anon_sym_DOLLAR] = ACTIONS(4873), - [sym_raw_string] = ACTIONS(4873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), - [anon_sym_BQUOTE] = ACTIONS(4873), - [anon_sym_LT_LPAREN] = ACTIONS(4873), - [anon_sym_GT_LPAREN] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4873), - [sym_word] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [4412] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8939), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4413] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8941), - [sym_comment] = ACTIONS(56), - }, - [4414] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8943), - [sym_comment] = ACTIONS(56), - }, - [4415] = { - [anon_sym_RBRACE] = ACTIONS(8943), - [sym_comment] = ACTIONS(56), - }, - [4416] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4520), - [anon_sym_RBRACE] = ACTIONS(8945), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4417] = { - [sym__concat] = ACTIONS(4883), - [sym_variable_name] = ACTIONS(4883), - [anon_sym_esac] = ACTIONS(4885), - [anon_sym_PIPE] = 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(4885), - [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(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4885), - [sym_word] = ACTIONS(4885), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [4418] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4522), - [anon_sym_RBRACE] = ACTIONS(8947), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4419] = { - [sym__concat] = ACTIONS(4889), - [sym_variable_name] = ACTIONS(4889), - [anon_sym_esac] = ACTIONS(4891), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [sym__special_characters] = ACTIONS(4891), - [anon_sym_DQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR] = ACTIONS(4891), - [sym_raw_string] = ACTIONS(4891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), - [anon_sym_BQUOTE] = ACTIONS(4891), - [anon_sym_LT_LPAREN] = ACTIONS(4891), - [anon_sym_GT_LPAREN] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4891), - [sym_word] = ACTIONS(4891), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [4420] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4524), - [anon_sym_RBRACE] = ACTIONS(8949), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4421] = { - [sym__concat] = ACTIONS(4895), - [sym_variable_name] = ACTIONS(4895), - [anon_sym_esac] = ACTIONS(4897), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_SEMI_SEMI] = ACTIONS(4897), - [anon_sym_PIPE_AMP] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [sym__special_characters] = ACTIONS(4897), - [anon_sym_DQUOTE] = ACTIONS(4897), - [anon_sym_DOLLAR] = ACTIONS(4897), - [sym_raw_string] = ACTIONS(4897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), - [anon_sym_BQUOTE] = ACTIONS(4897), - [anon_sym_LT_LPAREN] = ACTIONS(4897), - [anon_sym_GT_LPAREN] = ACTIONS(4897), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4897), - [sym_word] = ACTIONS(4897), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LF] = ACTIONS(4897), - [anon_sym_AMP] = ACTIONS(4897), - }, - [4422] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8951), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4423] = { - [sym__concat] = ACTIONS(4901), - [sym_variable_name] = ACTIONS(4901), - [anon_sym_esac] = ACTIONS(4903), - [anon_sym_PIPE] = ACTIONS(4903), - [anon_sym_SEMI_SEMI] = ACTIONS(4903), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [sym__special_characters] = ACTIONS(4903), - [anon_sym_DQUOTE] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4903), - [sym_raw_string] = ACTIONS(4903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), - [anon_sym_BQUOTE] = ACTIONS(4903), - [anon_sym_LT_LPAREN] = ACTIONS(4903), - [anon_sym_GT_LPAREN] = ACTIONS(4903), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4903), - [sym_word] = ACTIONS(4903), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LF] = ACTIONS(4903), - [anon_sym_AMP] = ACTIONS(4903), - }, - [4424] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8953), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4425] = { - [sym__concat] = ACTIONS(4802), - [anon_sym_esac] = ACTIONS(4804), - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [anon_sym_PIPE_AMP] = ACTIONS(4804), - [anon_sym_AMP_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4804), - [sym__special_characters] = ACTIONS(4804), - [anon_sym_DQUOTE] = ACTIONS(4804), - [anon_sym_DOLLAR] = ACTIONS(4804), - [sym_raw_string] = ACTIONS(4804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), - [anon_sym_BQUOTE] = ACTIONS(4804), - [anon_sym_LT_LPAREN] = ACTIONS(4804), - [anon_sym_GT_LPAREN] = ACTIONS(4804), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4804), - [sym_word] = ACTIONS(4804), - [anon_sym_SEMI] = ACTIONS(4804), - [anon_sym_LF] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4804), - }, - [4426] = { - [sym__concat] = ACTIONS(4808), - [anon_sym_esac] = ACTIONS(4810), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_SEMI_SEMI] = ACTIONS(4810), - [anon_sym_PIPE_AMP] = ACTIONS(4810), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [sym__special_characters] = ACTIONS(4810), - [anon_sym_DQUOTE] = ACTIONS(4810), - [anon_sym_DOLLAR] = ACTIONS(4810), - [sym_raw_string] = ACTIONS(4810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), - [anon_sym_BQUOTE] = ACTIONS(4810), - [anon_sym_LT_LPAREN] = ACTIONS(4810), - [anon_sym_GT_LPAREN] = ACTIONS(4810), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4810), - [sym_word] = ACTIONS(4810), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LF] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4810), - }, - [4427] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_esac] = ACTIONS(4873), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [sym__special_characters] = ACTIONS(4873), - [anon_sym_DQUOTE] = ACTIONS(4873), - [anon_sym_DOLLAR] = ACTIONS(4873), - [sym_raw_string] = ACTIONS(4873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), - [anon_sym_BQUOTE] = ACTIONS(4873), - [anon_sym_LT_LPAREN] = ACTIONS(4873), - [anon_sym_GT_LPAREN] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4873), - [sym_word] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [4428] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8955), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4429] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8957), - [sym_comment] = ACTIONS(56), - }, - [4430] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8959), - [sym_comment] = ACTIONS(56), - }, - [4431] = { - [anon_sym_RBRACE] = ACTIONS(8959), - [sym_comment] = ACTIONS(56), - }, - [4432] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4531), - [anon_sym_RBRACE] = ACTIONS(8961), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4433] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_esac] = ACTIONS(4885), - [anon_sym_PIPE] = 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(4885), - [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(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4885), - [sym_word] = ACTIONS(4885), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [4434] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4533), - [anon_sym_RBRACE] = ACTIONS(8963), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4435] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_esac] = ACTIONS(4891), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [sym__special_characters] = ACTIONS(4891), - [anon_sym_DQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR] = ACTIONS(4891), - [sym_raw_string] = ACTIONS(4891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), - [anon_sym_BQUOTE] = ACTIONS(4891), - [anon_sym_LT_LPAREN] = ACTIONS(4891), - [anon_sym_GT_LPAREN] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4891), - [sym_word] = ACTIONS(4891), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [4436] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4535), - [anon_sym_RBRACE] = ACTIONS(8965), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4437] = { - [sym__concat] = ACTIONS(4895), - [anon_sym_esac] = ACTIONS(4897), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_SEMI_SEMI] = ACTIONS(4897), - [anon_sym_PIPE_AMP] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [sym__special_characters] = ACTIONS(4897), - [anon_sym_DQUOTE] = ACTIONS(4897), - [anon_sym_DOLLAR] = ACTIONS(4897), - [sym_raw_string] = ACTIONS(4897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), - [anon_sym_BQUOTE] = ACTIONS(4897), - [anon_sym_LT_LPAREN] = ACTIONS(4897), - [anon_sym_GT_LPAREN] = ACTIONS(4897), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4897), - [sym_word] = ACTIONS(4897), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LF] = ACTIONS(4897), - [anon_sym_AMP] = ACTIONS(4897), - }, - [4438] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8967), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4439] = { - [sym__concat] = ACTIONS(4901), - [anon_sym_esac] = ACTIONS(4903), - [anon_sym_PIPE] = ACTIONS(4903), - [anon_sym_SEMI_SEMI] = ACTIONS(4903), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [sym__special_characters] = ACTIONS(4903), - [anon_sym_DQUOTE] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4903), - [sym_raw_string] = ACTIONS(4903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), - [anon_sym_BQUOTE] = ACTIONS(4903), - [anon_sym_LT_LPAREN] = ACTIONS(4903), - [anon_sym_GT_LPAREN] = ACTIONS(4903), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4903), - [sym_word] = ACTIONS(4903), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LF] = ACTIONS(4903), - [anon_sym_AMP] = ACTIONS(4903), - }, - [4440] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8969), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4441] = { - [sym_file_descriptor] = ACTIONS(6041), - [sym__concat] = ACTIONS(6041), - [anon_sym_esac] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_SEMI_SEMI] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [anon_sym_EQ_TILDE] = ACTIONS(6043), - [anon_sym_EQ_EQ] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6043), - [anon_sym_GT] = ACTIONS(6043), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_AMP_GT] = ACTIONS(6043), - [anon_sym_AMP_GT_GT] = ACTIONS(6043), - [anon_sym_LT_AMP] = ACTIONS(6043), - [anon_sym_GT_AMP] = ACTIONS(6043), - [anon_sym_LT_LT] = ACTIONS(6043), - [anon_sym_LT_LT_DASH] = ACTIONS(6043), - [anon_sym_LT_LT_LT] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6043), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6043), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6043), - [anon_sym_SEMI] = ACTIONS(6043), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - }, - [4442] = { - [sym_file_descriptor] = ACTIONS(6045), - [sym__concat] = ACTIONS(6045), - [anon_sym_esac] = ACTIONS(6047), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_SEMI_SEMI] = ACTIONS(6047), - [anon_sym_PIPE_AMP] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6047), - [anon_sym_PIPE_PIPE] = ACTIONS(6047), - [anon_sym_EQ_TILDE] = ACTIONS(6047), - [anon_sym_EQ_EQ] = ACTIONS(6047), - [anon_sym_LT] = ACTIONS(6047), - [anon_sym_GT] = ACTIONS(6047), - [anon_sym_GT_GT] = ACTIONS(6047), - [anon_sym_AMP_GT] = ACTIONS(6047), - [anon_sym_AMP_GT_GT] = ACTIONS(6047), - [anon_sym_LT_AMP] = ACTIONS(6047), - [anon_sym_GT_AMP] = ACTIONS(6047), - [anon_sym_LT_LT] = ACTIONS(6047), - [anon_sym_LT_LT_DASH] = ACTIONS(6047), - [anon_sym_LT_LT_LT] = ACTIONS(6047), - [sym__special_characters] = ACTIONS(6047), - [anon_sym_DQUOTE] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6047), - [sym_raw_string] = ACTIONS(6047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), - [anon_sym_BQUOTE] = ACTIONS(6047), - [anon_sym_LT_LPAREN] = ACTIONS(6047), - [anon_sym_GT_LPAREN] = ACTIONS(6047), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6047), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - }, - [4443] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [anon_sym_esac] = ACTIONS(6051), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [anon_sym_EQ_TILDE] = ACTIONS(6051), - [anon_sym_EQ_EQ] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6051), - [anon_sym_GT] = ACTIONS(6051), - [anon_sym_GT_GT] = ACTIONS(6051), - [anon_sym_AMP_GT] = ACTIONS(6051), - [anon_sym_AMP_GT_GT] = ACTIONS(6051), - [anon_sym_LT_AMP] = ACTIONS(6051), - [anon_sym_GT_AMP] = ACTIONS(6051), - [anon_sym_LT_LT] = ACTIONS(6051), - [anon_sym_LT_LT_DASH] = ACTIONS(6051), - [anon_sym_LT_LT_LT] = ACTIONS(6051), - [sym__special_characters] = ACTIONS(6051), - [anon_sym_DQUOTE] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6051), - [sym_raw_string] = ACTIONS(6051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), - [anon_sym_BQUOTE] = ACTIONS(6051), - [anon_sym_LT_LPAREN] = ACTIONS(6051), - [anon_sym_GT_LPAREN] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6051), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [4444] = { - [sym_file_descriptor] = ACTIONS(6053), - [sym__concat] = ACTIONS(6053), - [anon_sym_esac] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [anon_sym_EQ_TILDE] = ACTIONS(6055), - [anon_sym_EQ_EQ] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6055), - [anon_sym_GT] = ACTIONS(6055), - [anon_sym_GT_GT] = ACTIONS(6055), - [anon_sym_AMP_GT] = ACTIONS(6055), - [anon_sym_AMP_GT_GT] = ACTIONS(6055), - [anon_sym_LT_AMP] = ACTIONS(6055), - [anon_sym_GT_AMP] = ACTIONS(6055), - [anon_sym_LT_LT] = ACTIONS(6055), - [anon_sym_LT_LT_DASH] = ACTIONS(6055), - [anon_sym_LT_LT_LT] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6055), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6055), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6055), - [anon_sym_SEMI] = ACTIONS(6055), - [anon_sym_LF] = ACTIONS(6055), - [anon_sym_AMP] = ACTIONS(6055), - }, - [4445] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8971), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4446] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [anon_sym_esac] = ACTIONS(6061), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [anon_sym_EQ_TILDE] = ACTIONS(6061), - [anon_sym_EQ_EQ] = ACTIONS(6061), - [anon_sym_LT] = ACTIONS(6061), - [anon_sym_GT] = ACTIONS(6061), - [anon_sym_GT_GT] = ACTIONS(6061), - [anon_sym_AMP_GT] = ACTIONS(6061), - [anon_sym_AMP_GT_GT] = ACTIONS(6061), - [anon_sym_LT_AMP] = ACTIONS(6061), - [anon_sym_GT_AMP] = ACTIONS(6061), - [anon_sym_LT_LT] = ACTIONS(6061), - [anon_sym_LT_LT_DASH] = ACTIONS(6061), - [anon_sym_LT_LT_LT] = ACTIONS(6061), - [sym__special_characters] = ACTIONS(6061), - [anon_sym_DQUOTE] = ACTIONS(6061), - [anon_sym_DOLLAR] = ACTIONS(6061), - [sym_raw_string] = ACTIONS(6061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), - [anon_sym_BQUOTE] = ACTIONS(6061), - [anon_sym_LT_LPAREN] = ACTIONS(6061), - [anon_sym_GT_LPAREN] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6061), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [4447] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8973), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4448] = { - [sym_file_descriptor] = ACTIONS(6065), - [sym__concat] = ACTIONS(6065), - [anon_sym_esac] = ACTIONS(6067), - [anon_sym_PIPE] = ACTIONS(6067), - [anon_sym_SEMI_SEMI] = ACTIONS(6067), - [anon_sym_PIPE_AMP] = ACTIONS(6067), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [anon_sym_EQ_TILDE] = ACTIONS(6067), - [anon_sym_EQ_EQ] = ACTIONS(6067), - [anon_sym_LT] = ACTIONS(6067), - [anon_sym_GT] = ACTIONS(6067), - [anon_sym_GT_GT] = ACTIONS(6067), - [anon_sym_AMP_GT] = ACTIONS(6067), - [anon_sym_AMP_GT_GT] = ACTIONS(6067), - [anon_sym_LT_AMP] = ACTIONS(6067), - [anon_sym_GT_AMP] = ACTIONS(6067), - [anon_sym_LT_LT] = ACTIONS(6067), - [anon_sym_LT_LT_DASH] = ACTIONS(6067), - [anon_sym_LT_LT_LT] = ACTIONS(6067), - [sym__special_characters] = ACTIONS(6067), - [anon_sym_DQUOTE] = ACTIONS(6067), - [anon_sym_DOLLAR] = ACTIONS(6067), - [sym_raw_string] = ACTIONS(6067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), - [anon_sym_BQUOTE] = ACTIONS(6067), - [anon_sym_LT_LPAREN] = ACTIONS(6067), - [anon_sym_GT_LPAREN] = ACTIONS(6067), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6067), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LF] = ACTIONS(6067), - [anon_sym_AMP] = ACTIONS(6067), - }, - [4449] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8975), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4450] = { - [sym_file_descriptor] = ACTIONS(6071), - [sym__concat] = ACTIONS(6071), - [anon_sym_esac] = ACTIONS(6073), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [anon_sym_PIPE_AMP] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6073), - [anon_sym_PIPE_PIPE] = ACTIONS(6073), - [anon_sym_EQ_TILDE] = ACTIONS(6073), - [anon_sym_EQ_EQ] = ACTIONS(6073), - [anon_sym_LT] = ACTIONS(6073), - [anon_sym_GT] = ACTIONS(6073), - [anon_sym_GT_GT] = ACTIONS(6073), - [anon_sym_AMP_GT] = ACTIONS(6073), - [anon_sym_AMP_GT_GT] = ACTIONS(6073), - [anon_sym_LT_AMP] = ACTIONS(6073), - [anon_sym_GT_AMP] = ACTIONS(6073), - [anon_sym_LT_LT] = ACTIONS(6073), - [anon_sym_LT_LT_DASH] = ACTIONS(6073), - [anon_sym_LT_LT_LT] = ACTIONS(6073), - [sym__special_characters] = ACTIONS(6073), - [anon_sym_DQUOTE] = ACTIONS(6073), - [anon_sym_DOLLAR] = ACTIONS(6073), - [sym_raw_string] = ACTIONS(6073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), - [anon_sym_BQUOTE] = ACTIONS(6073), - [anon_sym_LT_LPAREN] = ACTIONS(6073), - [anon_sym_GT_LPAREN] = ACTIONS(6073), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6073), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LF] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - }, - [4451] = { - [sym_file_descriptor] = ACTIONS(6075), - [sym__concat] = ACTIONS(6075), - [anon_sym_esac] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_SEMI_SEMI] = ACTIONS(6077), - [anon_sym_PIPE_AMP] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6077), - [anon_sym_PIPE_PIPE] = ACTIONS(6077), - [anon_sym_EQ_TILDE] = ACTIONS(6077), - [anon_sym_EQ_EQ] = ACTIONS(6077), - [anon_sym_LT] = ACTIONS(6077), - [anon_sym_GT] = ACTIONS(6077), - [anon_sym_GT_GT] = ACTIONS(6077), - [anon_sym_AMP_GT] = ACTIONS(6077), - [anon_sym_AMP_GT_GT] = ACTIONS(6077), - [anon_sym_LT_AMP] = ACTIONS(6077), - [anon_sym_GT_AMP] = ACTIONS(6077), - [anon_sym_LT_LT] = ACTIONS(6077), - [anon_sym_LT_LT_DASH] = ACTIONS(6077), - [anon_sym_LT_LT_LT] = ACTIONS(6077), - [sym__special_characters] = ACTIONS(6077), - [anon_sym_DQUOTE] = ACTIONS(6077), - [anon_sym_DOLLAR] = ACTIONS(6077), - [sym_raw_string] = ACTIONS(6077), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), - [anon_sym_BQUOTE] = ACTIONS(6077), - [anon_sym_LT_LPAREN] = ACTIONS(6077), - [anon_sym_GT_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6077), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LF] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - }, - [4452] = { - [sym_file_descriptor] = ACTIONS(3293), - [sym__concat] = ACTIONS(3293), - [anon_sym_esac] = ACTIONS(3295), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_SEMI_SEMI] = ACTIONS(3295), - [anon_sym_PIPE_AMP] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_GT_GT] = ACTIONS(3295), - [anon_sym_AMP_GT] = ACTIONS(3295), - [anon_sym_AMP_GT_GT] = ACTIONS(3295), - [anon_sym_LT_AMP] = ACTIONS(3295), - [anon_sym_GT_AMP] = ACTIONS(3295), - [anon_sym_LT_LT] = ACTIONS(3295), - [anon_sym_LT_LT_DASH] = ACTIONS(3295), - [anon_sym_LT_LT_LT] = ACTIONS(3295), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - }, - [4453] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8977), - [sym_comment] = ACTIONS(56), - }, - [4454] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(8979), - [sym_comment] = ACTIONS(56), - }, - [4455] = { - [anon_sym_RBRACE] = ACTIONS(8979), - [sym_comment] = ACTIONS(56), - }, - [4456] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4544), - [anon_sym_RBRACE] = ACTIONS(8981), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4457] = { - [sym_file_descriptor] = ACTIONS(3357), - [sym__concat] = ACTIONS(3357), - [anon_sym_esac] = ACTIONS(3359), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_PIPE_AMP] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_GT_GT] = ACTIONS(3359), - [anon_sym_AMP_GT] = ACTIONS(3359), - [anon_sym_AMP_GT_GT] = ACTIONS(3359), - [anon_sym_LT_AMP] = ACTIONS(3359), - [anon_sym_GT_AMP] = ACTIONS(3359), - [anon_sym_LT_LT] = ACTIONS(3359), - [anon_sym_LT_LT_DASH] = ACTIONS(3359), - [anon_sym_LT_LT_LT] = ACTIONS(3359), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - }, - [4458] = { - [sym_concatenation] = STATE(4547), - [sym_string] = STATE(4546), - [sym_simple_expansion] = STATE(4546), - [sym_string_expansion] = STATE(4546), - [sym_expansion] = STATE(4546), - [sym_command_substitution] = STATE(4546), - [sym_process_substitution] = STATE(4546), - [anon_sym_RBRACE] = ACTIONS(8979), - [sym__special_characters] = ACTIONS(8983), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(8985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8987), - }, - [4459] = { - [sym_file_descriptor] = ACTIONS(3402), - [sym__concat] = ACTIONS(3402), - [anon_sym_esac] = ACTIONS(3404), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_SEMI_SEMI] = ACTIONS(3404), - [anon_sym_PIPE_AMP] = ACTIONS(3404), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3404), - [anon_sym_LT] = ACTIONS(3404), - [anon_sym_GT] = ACTIONS(3404), - [anon_sym_GT_GT] = ACTIONS(3404), - [anon_sym_AMP_GT] = ACTIONS(3404), - [anon_sym_AMP_GT_GT] = ACTIONS(3404), - [anon_sym_LT_AMP] = ACTIONS(3404), - [anon_sym_GT_AMP] = ACTIONS(3404), - [anon_sym_LT_LT] = ACTIONS(3404), - [anon_sym_LT_LT_DASH] = ACTIONS(3404), - [anon_sym_LT_LT_LT] = ACTIONS(3404), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - }, - [4460] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8989), - }, - [4461] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8991), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4462] = { - [sym_file_descriptor] = ACTIONS(3410), - [sym__concat] = ACTIONS(3410), - [anon_sym_esac] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [anon_sym_LT] = ACTIONS(3412), - [anon_sym_GT] = ACTIONS(3412), - [anon_sym_GT_GT] = ACTIONS(3412), - [anon_sym_AMP_GT] = ACTIONS(3412), - [anon_sym_AMP_GT_GT] = ACTIONS(3412), - [anon_sym_LT_AMP] = ACTIONS(3412), - [anon_sym_GT_AMP] = ACTIONS(3412), - [anon_sym_LT_LT] = ACTIONS(3412), - [anon_sym_LT_LT_DASH] = ACTIONS(3412), - [anon_sym_LT_LT_LT] = ACTIONS(3412), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - }, - [4463] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8993), - }, - [4464] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8995), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4465] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8997), - }, - [4466] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(8979), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4467] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4554), - [anon_sym_RBRACE] = ACTIONS(8999), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4468] = { - [sym_file_descriptor] = ACTIONS(3422), - [sym__concat] = ACTIONS(3422), - [anon_sym_esac] = ACTIONS(3424), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_SEMI_SEMI] = ACTIONS(3424), - [anon_sym_PIPE_AMP] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_PIPE_PIPE] = ACTIONS(3424), - [anon_sym_LT] = ACTIONS(3424), - [anon_sym_GT] = ACTIONS(3424), - [anon_sym_GT_GT] = ACTIONS(3424), - [anon_sym_AMP_GT] = ACTIONS(3424), - [anon_sym_AMP_GT_GT] = ACTIONS(3424), - [anon_sym_LT_AMP] = ACTIONS(3424), - [anon_sym_GT_AMP] = ACTIONS(3424), - [anon_sym_LT_LT] = ACTIONS(3424), - [anon_sym_LT_LT_DASH] = ACTIONS(3424), - [anon_sym_LT_LT_LT] = ACTIONS(3424), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - }, - [4469] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4556), - [anon_sym_RBRACE] = ACTIONS(9001), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4470] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_SEMI_SEMI] = ACTIONS(1102), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(8613), - [anon_sym_DQUOTE] = ACTIONS(8615), - [anon_sym_DOLLAR] = ACTIONS(8617), - [sym_raw_string] = ACTIONS(8615), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8615), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8615), - [anon_sym_BQUOTE] = ACTIONS(8615), - [anon_sym_LT_LPAREN] = ACTIONS(8615), - [anon_sym_GT_LPAREN] = ACTIONS(8615), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8613), - }, - [4471] = { - [sym_file_descriptor] = ACTIONS(1102), - [sym_variable_name] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_SEMI_SEMI] = ACTIONS(1102), - [anon_sym_function] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym_declare] = ACTIONS(1104), - [anon_sym_typeset] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1104), - [anon_sym_readonly] = ACTIONS(1104), - [anon_sym_local] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [anon_sym_unsetenv] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1104), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(8621), - [anon_sym_DQUOTE] = ACTIONS(8623), - [anon_sym_DOLLAR] = ACTIONS(8625), - [sym_raw_string] = ACTIONS(8623), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8623), - [anon_sym_BQUOTE] = ACTIONS(8623), - [anon_sym_LT_LPAREN] = ACTIONS(8623), - [anon_sym_GT_LPAREN] = ACTIONS(8623), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8621), - }, - [4472] = { - [sym__concat] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7034), - [anon_sym_RPAREN] = ACTIONS(7034), - [anon_sym_SEMI_SEMI] = ACTIONS(7034), - [anon_sym_PIPE_AMP] = ACTIONS(7034), - [anon_sym_AMP_AMP] = ACTIONS(7034), - [anon_sym_PIPE_PIPE] = ACTIONS(7034), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7034), - [anon_sym_LF] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - }, - [4473] = { - [sym__concat] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7038), - [anon_sym_RPAREN] = ACTIONS(7038), - [anon_sym_SEMI_SEMI] = ACTIONS(7038), - [anon_sym_PIPE_AMP] = ACTIONS(7038), - [anon_sym_AMP_AMP] = ACTIONS(7038), - [anon_sym_PIPE_PIPE] = ACTIONS(7038), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7038), - [anon_sym_LF] = ACTIONS(7038), - [anon_sym_AMP] = ACTIONS(7038), - }, - [4474] = { - [sym__concat] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_RPAREN] = ACTIONS(7042), - [anon_sym_SEMI_SEMI] = ACTIONS(7042), - [anon_sym_PIPE_AMP] = ACTIONS(7042), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7042), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7042), - [anon_sym_LF] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - }, - [4475] = { - [sym__concat] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7721), - [anon_sym_RPAREN] = ACTIONS(7032), - [anon_sym_PIPE_AMP] = ACTIONS(7032), - [anon_sym_AMP_AMP] = ACTIONS(7032), - [anon_sym_PIPE_PIPE] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), - }, - [4476] = { - [sym__concat] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7723), - [anon_sym_RPAREN] = ACTIONS(7036), - [anon_sym_PIPE_AMP] = ACTIONS(7036), - [anon_sym_AMP_AMP] = ACTIONS(7036), - [anon_sym_PIPE_PIPE] = ACTIONS(7036), - [sym_comment] = ACTIONS(56), - }, - [4477] = { - [sym__concat] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7725), - [anon_sym_RPAREN] = ACTIONS(7040), - [anon_sym_PIPE_AMP] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(7040), - [anon_sym_PIPE_PIPE] = ACTIONS(7040), - [sym_comment] = ACTIONS(56), - }, - [4478] = { - [sym__concat] = ACTIONS(7032), - [anon_sym_PIPE] = ACTIONS(7721), - [anon_sym_PIPE_AMP] = ACTIONS(7032), - [anon_sym_AMP_AMP] = ACTIONS(7032), - [anon_sym_PIPE_PIPE] = ACTIONS(7032), - [anon_sym_BQUOTE] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), - }, - [4479] = { - [sym__concat] = ACTIONS(7036), - [anon_sym_PIPE] = ACTIONS(7723), - [anon_sym_PIPE_AMP] = ACTIONS(7036), - [anon_sym_AMP_AMP] = ACTIONS(7036), - [anon_sym_PIPE_PIPE] = ACTIONS(7036), - [anon_sym_BQUOTE] = ACTIONS(7036), - [sym_comment] = ACTIONS(56), - }, - [4480] = { - [sym__concat] = ACTIONS(7040), - [anon_sym_PIPE] = ACTIONS(7725), - [anon_sym_PIPE_AMP] = ACTIONS(7040), - [anon_sym_AMP_AMP] = ACTIONS(7040), - [anon_sym_PIPE_PIPE] = ACTIONS(7040), - [anon_sym_BQUOTE] = ACTIONS(7040), - [sym_comment] = ACTIONS(56), - }, - [4481] = { - [sym_file_descriptor] = ACTIONS(4802), - [sym__concat] = ACTIONS(4802), - [sym_variable_name] = ACTIONS(4802), - [anon_sym_esac] = ACTIONS(4804), - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [anon_sym_PIPE_AMP] = ACTIONS(4804), - [anon_sym_AMP_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4804), - [anon_sym_LT] = ACTIONS(4804), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_GT_GT] = ACTIONS(4804), - [anon_sym_AMP_GT] = ACTIONS(4804), - [anon_sym_AMP_GT_GT] = ACTIONS(4804), - [anon_sym_LT_AMP] = ACTIONS(4804), - [anon_sym_GT_AMP] = ACTIONS(4804), - [sym__special_characters] = ACTIONS(4804), - [anon_sym_DQUOTE] = ACTIONS(4804), - [anon_sym_DOLLAR] = ACTIONS(4804), - [sym_raw_string] = ACTIONS(4804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), - [anon_sym_BQUOTE] = ACTIONS(4804), - [anon_sym_LT_LPAREN] = ACTIONS(4804), - [anon_sym_GT_LPAREN] = ACTIONS(4804), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4804), - [anon_sym_SEMI] = ACTIONS(4804), - [anon_sym_LF] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4804), - }, - [4482] = { - [sym_file_descriptor] = ACTIONS(4808), - [sym__concat] = ACTIONS(4808), - [sym_variable_name] = ACTIONS(4808), - [anon_sym_esac] = ACTIONS(4810), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_SEMI_SEMI] = ACTIONS(4810), - [anon_sym_PIPE_AMP] = ACTIONS(4810), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [anon_sym_LT] = ACTIONS(4810), - [anon_sym_GT] = ACTIONS(4810), - [anon_sym_GT_GT] = ACTIONS(4810), - [anon_sym_AMP_GT] = ACTIONS(4810), - [anon_sym_AMP_GT_GT] = ACTIONS(4810), - [anon_sym_LT_AMP] = ACTIONS(4810), - [anon_sym_GT_AMP] = ACTIONS(4810), - [sym__special_characters] = ACTIONS(4810), - [anon_sym_DQUOTE] = ACTIONS(4810), - [anon_sym_DOLLAR] = ACTIONS(4810), - [sym_raw_string] = ACTIONS(4810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), - [anon_sym_BQUOTE] = ACTIONS(4810), - [anon_sym_LT_LPAREN] = ACTIONS(4810), - [anon_sym_GT_LPAREN] = ACTIONS(4810), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4810), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LF] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4810), - }, - [4483] = { - [sym_file_descriptor] = ACTIONS(4871), - [sym__concat] = ACTIONS(4871), - [sym_variable_name] = ACTIONS(4871), - [anon_sym_esac] = ACTIONS(4873), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_GT_GT] = ACTIONS(4873), - [anon_sym_AMP_GT] = ACTIONS(4873), - [anon_sym_AMP_GT_GT] = ACTIONS(4873), - [anon_sym_LT_AMP] = ACTIONS(4873), - [anon_sym_GT_AMP] = ACTIONS(4873), - [sym__special_characters] = ACTIONS(4873), - [anon_sym_DQUOTE] = ACTIONS(4873), - [anon_sym_DOLLAR] = ACTIONS(4873), - [sym_raw_string] = ACTIONS(4873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), - [anon_sym_BQUOTE] = ACTIONS(4873), - [anon_sym_LT_LPAREN] = ACTIONS(4873), - [anon_sym_GT_LPAREN] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [4484] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9003), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4485] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(9005), - [sym_comment] = ACTIONS(56), - }, - [4486] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(9007), - [sym_comment] = ACTIONS(56), - }, - [4487] = { - [anon_sym_RBRACE] = ACTIONS(9007), - [sym_comment] = ACTIONS(56), - }, - [4488] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4561), - [anon_sym_RBRACE] = ACTIONS(9009), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4489] = { - [sym_file_descriptor] = ACTIONS(4883), - [sym__concat] = ACTIONS(4883), - [sym_variable_name] = ACTIONS(4883), - [anon_sym_esac] = ACTIONS(4885), - [anon_sym_PIPE] = 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(4885), - [anon_sym_GT] = ACTIONS(4885), - [anon_sym_GT_GT] = ACTIONS(4885), - [anon_sym_AMP_GT] = ACTIONS(4885), - [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(4885), - [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(182), - [sym_word] = ACTIONS(4885), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [4490] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4563), - [anon_sym_RBRACE] = ACTIONS(9011), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4491] = { - [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(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [anon_sym_LT] = ACTIONS(4891), - [anon_sym_GT] = ACTIONS(4891), - [anon_sym_GT_GT] = ACTIONS(4891), - [anon_sym_AMP_GT] = ACTIONS(4891), - [anon_sym_AMP_GT_GT] = ACTIONS(4891), - [anon_sym_LT_AMP] = ACTIONS(4891), - [anon_sym_GT_AMP] = ACTIONS(4891), - [sym__special_characters] = ACTIONS(4891), - [anon_sym_DQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR] = ACTIONS(4891), - [sym_raw_string] = ACTIONS(4891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), - [anon_sym_BQUOTE] = ACTIONS(4891), - [anon_sym_LT_LPAREN] = ACTIONS(4891), - [anon_sym_GT_LPAREN] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4891), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [4492] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4565), - [anon_sym_RBRACE] = ACTIONS(9013), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4493] = { - [sym_file_descriptor] = ACTIONS(4895), - [sym__concat] = ACTIONS(4895), - [sym_variable_name] = ACTIONS(4895), - [anon_sym_esac] = ACTIONS(4897), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_SEMI_SEMI] = ACTIONS(4897), - [anon_sym_PIPE_AMP] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [anon_sym_LT] = ACTIONS(4897), - [anon_sym_GT] = ACTIONS(4897), - [anon_sym_GT_GT] = ACTIONS(4897), - [anon_sym_AMP_GT] = ACTIONS(4897), - [anon_sym_AMP_GT_GT] = ACTIONS(4897), - [anon_sym_LT_AMP] = ACTIONS(4897), - [anon_sym_GT_AMP] = ACTIONS(4897), - [sym__special_characters] = ACTIONS(4897), - [anon_sym_DQUOTE] = ACTIONS(4897), - [anon_sym_DOLLAR] = ACTIONS(4897), - [sym_raw_string] = ACTIONS(4897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), - [anon_sym_BQUOTE] = ACTIONS(4897), - [anon_sym_LT_LPAREN] = ACTIONS(4897), - [anon_sym_GT_LPAREN] = ACTIONS(4897), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4897), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LF] = ACTIONS(4897), - [anon_sym_AMP] = ACTIONS(4897), - }, - [4494] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9015), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4495] = { - [sym_file_descriptor] = ACTIONS(4901), - [sym__concat] = ACTIONS(4901), - [sym_variable_name] = ACTIONS(4901), - [anon_sym_esac] = ACTIONS(4903), - [anon_sym_PIPE] = ACTIONS(4903), - [anon_sym_SEMI_SEMI] = ACTIONS(4903), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [anon_sym_LT] = ACTIONS(4903), - [anon_sym_GT] = ACTIONS(4903), - [anon_sym_GT_GT] = ACTIONS(4903), - [anon_sym_AMP_GT] = ACTIONS(4903), - [anon_sym_AMP_GT_GT] = ACTIONS(4903), - [anon_sym_LT_AMP] = ACTIONS(4903), - [anon_sym_GT_AMP] = ACTIONS(4903), - [sym__special_characters] = ACTIONS(4903), - [anon_sym_DQUOTE] = ACTIONS(4903), - [anon_sym_DOLLAR] = ACTIONS(4903), - [sym_raw_string] = ACTIONS(4903), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), - [anon_sym_BQUOTE] = ACTIONS(4903), - [anon_sym_LT_LPAREN] = ACTIONS(4903), - [anon_sym_GT_LPAREN] = ACTIONS(4903), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4903), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LF] = ACTIONS(4903), - [anon_sym_AMP] = ACTIONS(4903), - }, - [4496] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9017), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4497] = { - [sym__concat] = ACTIONS(1890), - [anon_sym_esac] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [4498] = { - [aux_sym_concatenation_repeat1] = STATE(4498), - [sym__concat] = ACTIONS(9019), - [anon_sym_esac] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_SEMI_SEMI] = ACTIONS(1892), - [anon_sym_PIPE_AMP] = ACTIONS(1892), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LF] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - }, - [4499] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_esac] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1929), - [anon_sym_PIPE_AMP] = ACTIONS(1929), - [anon_sym_AMP_AMP] = ACTIONS(1929), - [anon_sym_PIPE_PIPE] = ACTIONS(1929), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - }, - [4500] = { - [sym_concatenation] = STATE(4571), - [sym_string] = STATE(4570), - [sym_simple_expansion] = STATE(4570), - [sym_string_expansion] = STATE(4570), - [sym_expansion] = STATE(4570), - [sym_command_substitution] = STATE(4570), - [sym_process_substitution] = STATE(4570), - [anon_sym_RBRACE] = ACTIONS(9022), - [sym__special_characters] = ACTIONS(9024), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(9026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(9028), - }, - [4501] = { - [sym__concat] = ACTIONS(1972), - [anon_sym_esac] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1974), - [anon_sym_PIPE_AMP] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(1974), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_LF] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - }, - [4502] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(9030), - }, - [4503] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9032), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4504] = { - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_EQ] = ACTIONS(9034), - [sym_comment] = ACTIONS(56), - }, - [4505] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4577), - [anon_sym_RBRACE] = ACTIONS(9036), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(9038), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4506] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4580), - [anon_sym_RBRACE] = ACTIONS(9040), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(9042), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4507] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4582), - [anon_sym_RBRACE] = ACTIONS(9022), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [aux_sym_SLASH] = ACTIONS(9044), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4508] = { - [sym__concat] = ACTIONS(2026), - [anon_sym_esac] = ACTIONS(2028), - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_SEMI_SEMI] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(2028), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - }, - [4509] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(9046), - }, - [4510] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9048), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4511] = { - [sym__concat] = ACTIONS(2034), - [anon_sym_esac] = ACTIONS(2036), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_SEMI_SEMI] = ACTIONS(2036), - [anon_sym_PIPE_AMP] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2036), - [anon_sym_PIPE_PIPE] = ACTIONS(2036), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_LF] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - }, - [4512] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(9050), - }, - [4513] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9022), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4514] = { - [sym__concat] = ACTIONS(2196), - [anon_sym_esac] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_SEMI_SEMI] = ACTIONS(2198), - [anon_sym_PIPE_AMP] = ACTIONS(2198), - [anon_sym_AMP_AMP] = ACTIONS(2198), - [anon_sym_PIPE_PIPE] = ACTIONS(2198), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_LF] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - }, - [4515] = { - [sym__concat] = ACTIONS(2402), - [anon_sym_esac] = ACTIONS(2404), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_SEMI_SEMI] = ACTIONS(2404), - [anon_sym_PIPE_AMP] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LF] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - }, - [4516] = { - [sym__concat] = ACTIONS(6041), - [sym_variable_name] = ACTIONS(6041), - [anon_sym_esac] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_SEMI_SEMI] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6043), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6043), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6043), - [sym_word] = ACTIONS(6043), - [anon_sym_SEMI] = ACTIONS(6043), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - }, - [4517] = { - [sym__concat] = ACTIONS(6045), - [sym_variable_name] = ACTIONS(6045), - [anon_sym_esac] = ACTIONS(6047), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_SEMI_SEMI] = ACTIONS(6047), - [anon_sym_PIPE_AMP] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6047), - [anon_sym_PIPE_PIPE] = ACTIONS(6047), - [sym__special_characters] = ACTIONS(6047), - [anon_sym_DQUOTE] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6047), - [sym_raw_string] = ACTIONS(6047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), - [anon_sym_BQUOTE] = ACTIONS(6047), - [anon_sym_LT_LPAREN] = ACTIONS(6047), - [anon_sym_GT_LPAREN] = ACTIONS(6047), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6047), - [sym_word] = ACTIONS(6047), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - }, - [4518] = { - [sym__concat] = ACTIONS(6049), - [sym_variable_name] = ACTIONS(6049), - [anon_sym_esac] = ACTIONS(6051), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [sym__special_characters] = ACTIONS(6051), - [anon_sym_DQUOTE] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6051), - [sym_raw_string] = ACTIONS(6051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), - [anon_sym_BQUOTE] = ACTIONS(6051), - [anon_sym_LT_LPAREN] = ACTIONS(6051), - [anon_sym_GT_LPAREN] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6051), - [sym_word] = ACTIONS(6051), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [4519] = { - [sym__concat] = ACTIONS(6053), - [sym_variable_name] = ACTIONS(6053), - [anon_sym_esac] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6055), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6055), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6055), - [sym_word] = ACTIONS(6055), - [anon_sym_SEMI] = ACTIONS(6055), - [anon_sym_LF] = ACTIONS(6055), - [anon_sym_AMP] = ACTIONS(6055), - }, - [4520] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9052), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4521] = { - [sym__concat] = ACTIONS(6059), - [sym_variable_name] = ACTIONS(6059), - [anon_sym_esac] = ACTIONS(6061), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [sym__special_characters] = ACTIONS(6061), - [anon_sym_DQUOTE] = ACTIONS(6061), - [anon_sym_DOLLAR] = ACTIONS(6061), - [sym_raw_string] = ACTIONS(6061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), - [anon_sym_BQUOTE] = ACTIONS(6061), - [anon_sym_LT_LPAREN] = ACTIONS(6061), - [anon_sym_GT_LPAREN] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6061), - [sym_word] = ACTIONS(6061), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [4522] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9054), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4523] = { - [sym__concat] = ACTIONS(6065), - [sym_variable_name] = ACTIONS(6065), - [anon_sym_esac] = ACTIONS(6067), - [anon_sym_PIPE] = ACTIONS(6067), - [anon_sym_SEMI_SEMI] = ACTIONS(6067), - [anon_sym_PIPE_AMP] = ACTIONS(6067), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [sym__special_characters] = ACTIONS(6067), - [anon_sym_DQUOTE] = ACTIONS(6067), - [anon_sym_DOLLAR] = ACTIONS(6067), - [sym_raw_string] = ACTIONS(6067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), - [anon_sym_BQUOTE] = ACTIONS(6067), - [anon_sym_LT_LPAREN] = ACTIONS(6067), - [anon_sym_GT_LPAREN] = ACTIONS(6067), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6067), - [sym_word] = ACTIONS(6067), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LF] = ACTIONS(6067), - [anon_sym_AMP] = ACTIONS(6067), - }, - [4524] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9056), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4525] = { - [sym__concat] = ACTIONS(6071), - [sym_variable_name] = ACTIONS(6071), - [anon_sym_esac] = ACTIONS(6073), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [anon_sym_PIPE_AMP] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6073), - [anon_sym_PIPE_PIPE] = ACTIONS(6073), - [sym__special_characters] = ACTIONS(6073), - [anon_sym_DQUOTE] = ACTIONS(6073), - [anon_sym_DOLLAR] = ACTIONS(6073), - [sym_raw_string] = ACTIONS(6073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), - [anon_sym_BQUOTE] = ACTIONS(6073), - [anon_sym_LT_LPAREN] = ACTIONS(6073), - [anon_sym_GT_LPAREN] = ACTIONS(6073), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6073), - [sym_word] = ACTIONS(6073), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LF] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - }, - [4526] = { - [sym__concat] = ACTIONS(6075), - [sym_variable_name] = ACTIONS(6075), - [anon_sym_esac] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_SEMI_SEMI] = ACTIONS(6077), - [anon_sym_PIPE_AMP] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6077), - [anon_sym_PIPE_PIPE] = ACTIONS(6077), - [sym__special_characters] = ACTIONS(6077), - [anon_sym_DQUOTE] = ACTIONS(6077), - [anon_sym_DOLLAR] = ACTIONS(6077), - [sym_raw_string] = ACTIONS(6077), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), - [anon_sym_BQUOTE] = ACTIONS(6077), - [anon_sym_LT_LPAREN] = ACTIONS(6077), - [anon_sym_GT_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6077), - [sym_word] = ACTIONS(6077), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LF] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - }, - [4527] = { - [sym__concat] = ACTIONS(6041), - [anon_sym_esac] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_SEMI_SEMI] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6043), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6043), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6043), - [sym_word] = ACTIONS(6043), - [anon_sym_SEMI] = ACTIONS(6043), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - }, - [4528] = { - [sym__concat] = ACTIONS(6045), - [anon_sym_esac] = ACTIONS(6047), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_SEMI_SEMI] = ACTIONS(6047), - [anon_sym_PIPE_AMP] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6047), - [anon_sym_PIPE_PIPE] = ACTIONS(6047), - [sym__special_characters] = ACTIONS(6047), - [anon_sym_DQUOTE] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6047), - [sym_raw_string] = ACTIONS(6047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), - [anon_sym_BQUOTE] = ACTIONS(6047), - [anon_sym_LT_LPAREN] = ACTIONS(6047), - [anon_sym_GT_LPAREN] = ACTIONS(6047), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6047), - [sym_word] = ACTIONS(6047), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - }, - [4529] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_esac] = ACTIONS(6051), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [sym__special_characters] = ACTIONS(6051), - [anon_sym_DQUOTE] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6051), - [sym_raw_string] = ACTIONS(6051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), - [anon_sym_BQUOTE] = ACTIONS(6051), - [anon_sym_LT_LPAREN] = ACTIONS(6051), - [anon_sym_GT_LPAREN] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6051), - [sym_word] = ACTIONS(6051), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [4530] = { - [sym__concat] = ACTIONS(6053), - [anon_sym_esac] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6055), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6055), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6055), - [sym_word] = ACTIONS(6055), - [anon_sym_SEMI] = ACTIONS(6055), - [anon_sym_LF] = ACTIONS(6055), - [anon_sym_AMP] = ACTIONS(6055), - }, - [4531] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9058), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4532] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_esac] = ACTIONS(6061), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [sym__special_characters] = ACTIONS(6061), - [anon_sym_DQUOTE] = ACTIONS(6061), - [anon_sym_DOLLAR] = ACTIONS(6061), - [sym_raw_string] = ACTIONS(6061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), - [anon_sym_BQUOTE] = ACTIONS(6061), - [anon_sym_LT_LPAREN] = ACTIONS(6061), - [anon_sym_GT_LPAREN] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6061), - [sym_word] = ACTIONS(6061), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [4533] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9060), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4534] = { - [sym__concat] = ACTIONS(6065), - [anon_sym_esac] = ACTIONS(6067), - [anon_sym_PIPE] = ACTIONS(6067), - [anon_sym_SEMI_SEMI] = ACTIONS(6067), - [anon_sym_PIPE_AMP] = ACTIONS(6067), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [sym__special_characters] = ACTIONS(6067), - [anon_sym_DQUOTE] = ACTIONS(6067), - [anon_sym_DOLLAR] = ACTIONS(6067), - [sym_raw_string] = ACTIONS(6067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), - [anon_sym_BQUOTE] = ACTIONS(6067), - [anon_sym_LT_LPAREN] = ACTIONS(6067), - [anon_sym_GT_LPAREN] = ACTIONS(6067), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6067), - [sym_word] = ACTIONS(6067), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LF] = ACTIONS(6067), - [anon_sym_AMP] = ACTIONS(6067), - }, - [4535] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9062), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4536] = { - [sym__concat] = ACTIONS(6071), - [anon_sym_esac] = ACTIONS(6073), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [anon_sym_PIPE_AMP] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6073), - [anon_sym_PIPE_PIPE] = ACTIONS(6073), - [sym__special_characters] = ACTIONS(6073), - [anon_sym_DQUOTE] = ACTIONS(6073), - [anon_sym_DOLLAR] = ACTIONS(6073), - [sym_raw_string] = ACTIONS(6073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), - [anon_sym_BQUOTE] = ACTIONS(6073), - [anon_sym_LT_LPAREN] = ACTIONS(6073), - [anon_sym_GT_LPAREN] = ACTIONS(6073), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6073), - [sym_word] = ACTIONS(6073), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LF] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - }, - [4537] = { - [sym__concat] = ACTIONS(6075), - [anon_sym_esac] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_SEMI_SEMI] = ACTIONS(6077), - [anon_sym_PIPE_AMP] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6077), - [anon_sym_PIPE_PIPE] = ACTIONS(6077), - [sym__special_characters] = ACTIONS(6077), - [anon_sym_DQUOTE] = ACTIONS(6077), - [anon_sym_DOLLAR] = ACTIONS(6077), - [sym_raw_string] = ACTIONS(6077), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), - [anon_sym_BQUOTE] = ACTIONS(6077), - [anon_sym_LT_LPAREN] = ACTIONS(6077), - [anon_sym_GT_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6077), - [sym_word] = ACTIONS(6077), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LF] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - }, - [4538] = { - [sym_file_descriptor] = ACTIONS(7032), - [sym__concat] = ACTIONS(7032), - [anon_sym_esac] = ACTIONS(7034), - [anon_sym_PIPE] = ACTIONS(7034), - [anon_sym_SEMI_SEMI] = ACTIONS(7034), - [anon_sym_PIPE_AMP] = ACTIONS(7034), - [anon_sym_AMP_AMP] = ACTIONS(7034), - [anon_sym_PIPE_PIPE] = ACTIONS(7034), - [anon_sym_EQ_TILDE] = ACTIONS(7034), - [anon_sym_EQ_EQ] = ACTIONS(7034), - [anon_sym_LT] = ACTIONS(7034), - [anon_sym_GT] = ACTIONS(7034), - [anon_sym_GT_GT] = ACTIONS(7034), - [anon_sym_AMP_GT] = ACTIONS(7034), - [anon_sym_AMP_GT_GT] = ACTIONS(7034), - [anon_sym_LT_AMP] = ACTIONS(7034), - [anon_sym_GT_AMP] = ACTIONS(7034), - [anon_sym_LT_LT] = ACTIONS(7034), - [anon_sym_LT_LT_DASH] = ACTIONS(7034), - [anon_sym_LT_LT_LT] = ACTIONS(7034), - [sym__special_characters] = ACTIONS(7034), - [anon_sym_DQUOTE] = ACTIONS(7034), - [anon_sym_DOLLAR] = ACTIONS(7034), - [sym_raw_string] = ACTIONS(7034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), - [anon_sym_BQUOTE] = ACTIONS(7034), - [anon_sym_LT_LPAREN] = ACTIONS(7034), - [anon_sym_GT_LPAREN] = ACTIONS(7034), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7034), - [anon_sym_SEMI] = ACTIONS(7034), - [anon_sym_LF] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - }, - [4539] = { - [sym_file_descriptor] = ACTIONS(7036), - [sym__concat] = ACTIONS(7036), - [anon_sym_esac] = ACTIONS(7038), - [anon_sym_PIPE] = ACTIONS(7038), - [anon_sym_SEMI_SEMI] = ACTIONS(7038), - [anon_sym_PIPE_AMP] = ACTIONS(7038), - [anon_sym_AMP_AMP] = ACTIONS(7038), - [anon_sym_PIPE_PIPE] = ACTIONS(7038), - [anon_sym_EQ_TILDE] = ACTIONS(7038), - [anon_sym_EQ_EQ] = ACTIONS(7038), - [anon_sym_LT] = ACTIONS(7038), - [anon_sym_GT] = ACTIONS(7038), - [anon_sym_GT_GT] = ACTIONS(7038), - [anon_sym_AMP_GT] = ACTIONS(7038), - [anon_sym_AMP_GT_GT] = ACTIONS(7038), - [anon_sym_LT_AMP] = ACTIONS(7038), - [anon_sym_GT_AMP] = ACTIONS(7038), - [anon_sym_LT_LT] = ACTIONS(7038), - [anon_sym_LT_LT_DASH] = ACTIONS(7038), - [anon_sym_LT_LT_LT] = ACTIONS(7038), - [sym__special_characters] = ACTIONS(7038), - [anon_sym_DQUOTE] = ACTIONS(7038), - [anon_sym_DOLLAR] = ACTIONS(7038), - [sym_raw_string] = ACTIONS(7038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), - [anon_sym_BQUOTE] = ACTIONS(7038), - [anon_sym_LT_LPAREN] = ACTIONS(7038), - [anon_sym_GT_LPAREN] = ACTIONS(7038), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7038), - [anon_sym_SEMI] = ACTIONS(7038), - [anon_sym_LF] = ACTIONS(7038), - [anon_sym_AMP] = ACTIONS(7038), - }, - [4540] = { - [sym_file_descriptor] = ACTIONS(7040), - [sym__concat] = ACTIONS(7040), - [anon_sym_esac] = ACTIONS(7042), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_SEMI_SEMI] = ACTIONS(7042), - [anon_sym_PIPE_AMP] = ACTIONS(7042), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7042), - [anon_sym_EQ_TILDE] = ACTIONS(7042), - [anon_sym_EQ_EQ] = ACTIONS(7042), - [anon_sym_LT] = ACTIONS(7042), - [anon_sym_GT] = ACTIONS(7042), - [anon_sym_GT_GT] = ACTIONS(7042), - [anon_sym_AMP_GT] = ACTIONS(7042), - [anon_sym_AMP_GT_GT] = ACTIONS(7042), - [anon_sym_LT_AMP] = ACTIONS(7042), - [anon_sym_GT_AMP] = ACTIONS(7042), - [anon_sym_LT_LT] = ACTIONS(7042), - [anon_sym_LT_LT_DASH] = ACTIONS(7042), - [anon_sym_LT_LT_LT] = ACTIONS(7042), - [sym__special_characters] = ACTIONS(7042), - [anon_sym_DQUOTE] = ACTIONS(7042), - [anon_sym_DOLLAR] = ACTIONS(7042), - [sym_raw_string] = ACTIONS(7042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), - [anon_sym_BQUOTE] = ACTIONS(7042), - [anon_sym_LT_LPAREN] = ACTIONS(7042), - [anon_sym_GT_LPAREN] = ACTIONS(7042), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7042), - [anon_sym_SEMI] = ACTIONS(7042), - [anon_sym_LF] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - }, - [4541] = { - [sym_file_descriptor] = ACTIONS(4802), - [sym__concat] = ACTIONS(4802), - [anon_sym_esac] = ACTIONS(4804), - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [anon_sym_PIPE_AMP] = ACTIONS(4804), - [anon_sym_AMP_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4804), - [anon_sym_LT] = ACTIONS(4804), - [anon_sym_GT] = ACTIONS(4804), - [anon_sym_GT_GT] = ACTIONS(4804), - [anon_sym_AMP_GT] = ACTIONS(4804), - [anon_sym_AMP_GT_GT] = ACTIONS(4804), - [anon_sym_LT_AMP] = ACTIONS(4804), - [anon_sym_GT_AMP] = ACTIONS(4804), - [anon_sym_LT_LT] = ACTIONS(4804), - [anon_sym_LT_LT_DASH] = ACTIONS(4804), - [anon_sym_LT_LT_LT] = ACTIONS(4804), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4804), - [anon_sym_LF] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4804), - }, - [4542] = { - [sym_file_descriptor] = ACTIONS(4808), - [sym__concat] = ACTIONS(4808), - [anon_sym_esac] = ACTIONS(4810), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_SEMI_SEMI] = ACTIONS(4810), - [anon_sym_PIPE_AMP] = ACTIONS(4810), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [anon_sym_LT] = ACTIONS(4810), - [anon_sym_GT] = ACTIONS(4810), - [anon_sym_GT_GT] = ACTIONS(4810), - [anon_sym_AMP_GT] = ACTIONS(4810), - [anon_sym_AMP_GT_GT] = ACTIONS(4810), - [anon_sym_LT_AMP] = ACTIONS(4810), - [anon_sym_GT_AMP] = ACTIONS(4810), - [anon_sym_LT_LT] = ACTIONS(4810), - [anon_sym_LT_LT_DASH] = ACTIONS(4810), - [anon_sym_LT_LT_LT] = ACTIONS(4810), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LF] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4810), - }, - [4543] = { - [sym_file_descriptor] = ACTIONS(4871), - [sym__concat] = ACTIONS(4871), - [anon_sym_esac] = ACTIONS(4873), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [anon_sym_LT] = ACTIONS(4873), - [anon_sym_GT] = ACTIONS(4873), - [anon_sym_GT_GT] = ACTIONS(4873), - [anon_sym_AMP_GT] = ACTIONS(4873), - [anon_sym_AMP_GT_GT] = ACTIONS(4873), - [anon_sym_LT_AMP] = ACTIONS(4873), - [anon_sym_GT_AMP] = ACTIONS(4873), - [anon_sym_LT_LT] = ACTIONS(4873), - [anon_sym_LT_LT_DASH] = ACTIONS(4873), - [anon_sym_LT_LT_LT] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [4544] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9064), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4545] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(9066), - [sym_comment] = ACTIONS(56), - }, - [4546] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(9068), - [sym_comment] = ACTIONS(56), - }, - [4547] = { - [anon_sym_RBRACE] = ACTIONS(9068), - [sym_comment] = ACTIONS(56), - }, - [4548] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4596), - [anon_sym_RBRACE] = ACTIONS(9070), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4549] = { - [sym_file_descriptor] = ACTIONS(4883), - [sym__concat] = ACTIONS(4883), - [anon_sym_esac] = ACTIONS(4885), - [anon_sym_PIPE] = 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(4885), - [anon_sym_GT] = ACTIONS(4885), - [anon_sym_GT_GT] = ACTIONS(4885), - [anon_sym_AMP_GT] = ACTIONS(4885), - [anon_sym_AMP_GT_GT] = ACTIONS(4885), - [anon_sym_LT_AMP] = ACTIONS(4885), - [anon_sym_GT_AMP] = ACTIONS(4885), - [anon_sym_LT_LT] = ACTIONS(4885), - [anon_sym_LT_LT_DASH] = ACTIONS(4885), - [anon_sym_LT_LT_LT] = ACTIONS(4885), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [4550] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4598), - [anon_sym_RBRACE] = ACTIONS(9072), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4551] = { - [sym_file_descriptor] = ACTIONS(4889), - [sym__concat] = ACTIONS(4889), - [anon_sym_esac] = ACTIONS(4891), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [anon_sym_LT] = ACTIONS(4891), - [anon_sym_GT] = ACTIONS(4891), - [anon_sym_GT_GT] = ACTIONS(4891), - [anon_sym_AMP_GT] = ACTIONS(4891), - [anon_sym_AMP_GT_GT] = ACTIONS(4891), - [anon_sym_LT_AMP] = ACTIONS(4891), - [anon_sym_GT_AMP] = ACTIONS(4891), - [anon_sym_LT_LT] = ACTIONS(4891), - [anon_sym_LT_LT_DASH] = ACTIONS(4891), - [anon_sym_LT_LT_LT] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [4552] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4600), - [anon_sym_RBRACE] = ACTIONS(9074), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4553] = { - [sym_file_descriptor] = ACTIONS(4895), - [sym__concat] = ACTIONS(4895), - [anon_sym_esac] = ACTIONS(4897), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_SEMI_SEMI] = ACTIONS(4897), - [anon_sym_PIPE_AMP] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [anon_sym_LT] = ACTIONS(4897), - [anon_sym_GT] = ACTIONS(4897), - [anon_sym_GT_GT] = ACTIONS(4897), - [anon_sym_AMP_GT] = ACTIONS(4897), - [anon_sym_AMP_GT_GT] = ACTIONS(4897), - [anon_sym_LT_AMP] = ACTIONS(4897), - [anon_sym_GT_AMP] = ACTIONS(4897), - [anon_sym_LT_LT] = ACTIONS(4897), - [anon_sym_LT_LT_DASH] = ACTIONS(4897), - [anon_sym_LT_LT_LT] = ACTIONS(4897), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LF] = ACTIONS(4897), - [anon_sym_AMP] = ACTIONS(4897), - }, - [4554] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9076), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4555] = { - [sym_file_descriptor] = ACTIONS(4901), - [sym__concat] = ACTIONS(4901), - [anon_sym_esac] = ACTIONS(4903), - [anon_sym_PIPE] = ACTIONS(4903), - [anon_sym_SEMI_SEMI] = ACTIONS(4903), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [anon_sym_LT] = ACTIONS(4903), - [anon_sym_GT] = ACTIONS(4903), - [anon_sym_GT_GT] = ACTIONS(4903), - [anon_sym_AMP_GT] = ACTIONS(4903), - [anon_sym_AMP_GT_GT] = ACTIONS(4903), - [anon_sym_LT_AMP] = ACTIONS(4903), - [anon_sym_GT_AMP] = ACTIONS(4903), - [anon_sym_LT_LT] = ACTIONS(4903), - [anon_sym_LT_LT_DASH] = ACTIONS(4903), - [anon_sym_LT_LT_LT] = ACTIONS(4903), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LF] = ACTIONS(4903), - [anon_sym_AMP] = ACTIONS(4903), - }, - [4556] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9078), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4557] = { - [sym_file_descriptor] = ACTIONS(6041), - [sym__concat] = ACTIONS(6041), - [sym_variable_name] = ACTIONS(6041), - [anon_sym_esac] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_SEMI_SEMI] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6043), - [anon_sym_GT] = ACTIONS(6043), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_AMP_GT] = ACTIONS(6043), - [anon_sym_AMP_GT_GT] = ACTIONS(6043), - [anon_sym_LT_AMP] = ACTIONS(6043), - [anon_sym_GT_AMP] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6043), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6043), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6043), - [anon_sym_SEMI] = ACTIONS(6043), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - }, - [4558] = { - [sym_file_descriptor] = ACTIONS(6045), - [sym__concat] = ACTIONS(6045), - [sym_variable_name] = ACTIONS(6045), - [anon_sym_esac] = ACTIONS(6047), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_SEMI_SEMI] = ACTIONS(6047), - [anon_sym_PIPE_AMP] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6047), - [anon_sym_PIPE_PIPE] = ACTIONS(6047), - [anon_sym_LT] = ACTIONS(6047), - [anon_sym_GT] = ACTIONS(6047), - [anon_sym_GT_GT] = ACTIONS(6047), - [anon_sym_AMP_GT] = ACTIONS(6047), - [anon_sym_AMP_GT_GT] = ACTIONS(6047), - [anon_sym_LT_AMP] = ACTIONS(6047), - [anon_sym_GT_AMP] = ACTIONS(6047), - [sym__special_characters] = ACTIONS(6047), - [anon_sym_DQUOTE] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6047), - [sym_raw_string] = ACTIONS(6047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), - [anon_sym_BQUOTE] = ACTIONS(6047), - [anon_sym_LT_LPAREN] = ACTIONS(6047), - [anon_sym_GT_LPAREN] = ACTIONS(6047), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6047), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - }, - [4559] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [sym_variable_name] = ACTIONS(6049), - [anon_sym_esac] = ACTIONS(6051), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6051), - [anon_sym_GT] = ACTIONS(6051), - [anon_sym_GT_GT] = ACTIONS(6051), - [anon_sym_AMP_GT] = ACTIONS(6051), - [anon_sym_AMP_GT_GT] = ACTIONS(6051), - [anon_sym_LT_AMP] = ACTIONS(6051), - [anon_sym_GT_AMP] = ACTIONS(6051), - [sym__special_characters] = ACTIONS(6051), - [anon_sym_DQUOTE] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6051), - [sym_raw_string] = ACTIONS(6051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), - [anon_sym_BQUOTE] = ACTIONS(6051), - [anon_sym_LT_LPAREN] = ACTIONS(6051), - [anon_sym_GT_LPAREN] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6051), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [4560] = { - [sym_file_descriptor] = ACTIONS(6053), - [sym__concat] = ACTIONS(6053), - [sym_variable_name] = ACTIONS(6053), - [anon_sym_esac] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6055), - [anon_sym_GT] = ACTIONS(6055), - [anon_sym_GT_GT] = ACTIONS(6055), - [anon_sym_AMP_GT] = ACTIONS(6055), - [anon_sym_AMP_GT_GT] = ACTIONS(6055), - [anon_sym_LT_AMP] = ACTIONS(6055), - [anon_sym_GT_AMP] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6055), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6055), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6055), - [anon_sym_SEMI] = ACTIONS(6055), - [anon_sym_LF] = ACTIONS(6055), - [anon_sym_AMP] = ACTIONS(6055), - }, - [4561] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9080), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4562] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [sym_variable_name] = ACTIONS(6059), - [anon_sym_esac] = ACTIONS(6061), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [anon_sym_LT] = ACTIONS(6061), - [anon_sym_GT] = ACTIONS(6061), - [anon_sym_GT_GT] = ACTIONS(6061), - [anon_sym_AMP_GT] = ACTIONS(6061), - [anon_sym_AMP_GT_GT] = ACTIONS(6061), - [anon_sym_LT_AMP] = ACTIONS(6061), - [anon_sym_GT_AMP] = ACTIONS(6061), - [sym__special_characters] = ACTIONS(6061), - [anon_sym_DQUOTE] = ACTIONS(6061), - [anon_sym_DOLLAR] = ACTIONS(6061), - [sym_raw_string] = ACTIONS(6061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), - [anon_sym_BQUOTE] = ACTIONS(6061), - [anon_sym_LT_LPAREN] = ACTIONS(6061), - [anon_sym_GT_LPAREN] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6061), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [4563] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9082), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4564] = { - [sym_file_descriptor] = ACTIONS(6065), - [sym__concat] = ACTIONS(6065), - [sym_variable_name] = ACTIONS(6065), - [anon_sym_esac] = ACTIONS(6067), - [anon_sym_PIPE] = ACTIONS(6067), - [anon_sym_SEMI_SEMI] = ACTIONS(6067), - [anon_sym_PIPE_AMP] = ACTIONS(6067), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [anon_sym_LT] = ACTIONS(6067), - [anon_sym_GT] = ACTIONS(6067), - [anon_sym_GT_GT] = ACTIONS(6067), - [anon_sym_AMP_GT] = ACTIONS(6067), - [anon_sym_AMP_GT_GT] = ACTIONS(6067), - [anon_sym_LT_AMP] = ACTIONS(6067), - [anon_sym_GT_AMP] = ACTIONS(6067), - [sym__special_characters] = ACTIONS(6067), - [anon_sym_DQUOTE] = ACTIONS(6067), - [anon_sym_DOLLAR] = ACTIONS(6067), - [sym_raw_string] = ACTIONS(6067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), - [anon_sym_BQUOTE] = ACTIONS(6067), - [anon_sym_LT_LPAREN] = ACTIONS(6067), - [anon_sym_GT_LPAREN] = ACTIONS(6067), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6067), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LF] = ACTIONS(6067), - [anon_sym_AMP] = ACTIONS(6067), - }, - [4565] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9084), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4566] = { - [sym_file_descriptor] = ACTIONS(6071), - [sym__concat] = ACTIONS(6071), - [sym_variable_name] = ACTIONS(6071), - [anon_sym_esac] = ACTIONS(6073), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [anon_sym_PIPE_AMP] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6073), - [anon_sym_PIPE_PIPE] = ACTIONS(6073), - [anon_sym_LT] = ACTIONS(6073), - [anon_sym_GT] = ACTIONS(6073), - [anon_sym_GT_GT] = ACTIONS(6073), - [anon_sym_AMP_GT] = ACTIONS(6073), - [anon_sym_AMP_GT_GT] = ACTIONS(6073), - [anon_sym_LT_AMP] = ACTIONS(6073), - [anon_sym_GT_AMP] = ACTIONS(6073), - [sym__special_characters] = ACTIONS(6073), - [anon_sym_DQUOTE] = ACTIONS(6073), - [anon_sym_DOLLAR] = ACTIONS(6073), - [sym_raw_string] = ACTIONS(6073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), - [anon_sym_BQUOTE] = ACTIONS(6073), - [anon_sym_LT_LPAREN] = ACTIONS(6073), - [anon_sym_GT_LPAREN] = ACTIONS(6073), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6073), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LF] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - }, - [4567] = { - [sym_file_descriptor] = ACTIONS(6075), - [sym__concat] = ACTIONS(6075), - [sym_variable_name] = ACTIONS(6075), - [anon_sym_esac] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_SEMI_SEMI] = ACTIONS(6077), - [anon_sym_PIPE_AMP] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6077), - [anon_sym_PIPE_PIPE] = ACTIONS(6077), - [anon_sym_LT] = ACTIONS(6077), - [anon_sym_GT] = ACTIONS(6077), - [anon_sym_GT_GT] = ACTIONS(6077), - [anon_sym_AMP_GT] = ACTIONS(6077), - [anon_sym_AMP_GT_GT] = ACTIONS(6077), - [anon_sym_LT_AMP] = ACTIONS(6077), - [anon_sym_GT_AMP] = ACTIONS(6077), - [sym__special_characters] = ACTIONS(6077), - [anon_sym_DQUOTE] = ACTIONS(6077), - [anon_sym_DOLLAR] = ACTIONS(6077), - [sym_raw_string] = ACTIONS(6077), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), - [anon_sym_BQUOTE] = ACTIONS(6077), - [anon_sym_LT_LPAREN] = ACTIONS(6077), - [anon_sym_GT_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6077), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LF] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - }, - [4568] = { - [sym__concat] = ACTIONS(3293), - [anon_sym_esac] = ACTIONS(3295), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_SEMI_SEMI] = ACTIONS(3295), - [anon_sym_PIPE_AMP] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - }, - [4569] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(9086), - [sym_comment] = ACTIONS(56), - }, - [4570] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(9088), - [sym_comment] = ACTIONS(56), - }, - [4571] = { - [anon_sym_RBRACE] = ACTIONS(9088), - [sym_comment] = ACTIONS(56), - }, - [4572] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4609), - [anon_sym_RBRACE] = ACTIONS(9090), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4573] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_esac] = ACTIONS(3359), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_PIPE_AMP] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - }, - [4574] = { - [sym_concatenation] = STATE(4612), - [sym_string] = STATE(4611), - [sym_simple_expansion] = STATE(4611), - [sym_string_expansion] = STATE(4611), - [sym_expansion] = STATE(4611), - [sym_command_substitution] = STATE(4611), - [sym_process_substitution] = STATE(4611), - [anon_sym_RBRACE] = ACTIONS(9088), - [sym__special_characters] = ACTIONS(9092), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1958), - [sym_raw_string] = ACTIONS(9094), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(9096), - }, - [4575] = { - [sym__concat] = ACTIONS(3402), - [anon_sym_esac] = ACTIONS(3404), - [anon_sym_PIPE] = ACTIONS(3404), - [anon_sym_SEMI_SEMI] = ACTIONS(3404), - [anon_sym_PIPE_AMP] = ACTIONS(3404), - [anon_sym_AMP_AMP] = ACTIONS(3404), - [anon_sym_PIPE_PIPE] = ACTIONS(3404), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_LF] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3404), - }, - [4576] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(9098), - }, - [4577] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9100), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4578] = { - [sym__concat] = ACTIONS(3410), - [anon_sym_esac] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_LF] = ACTIONS(3412), - [anon_sym_AMP] = ACTIONS(3412), - }, - [4579] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(9102), - }, - [4580] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9104), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4581] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(9106), - }, - [4582] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9088), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4583] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4619), - [anon_sym_RBRACE] = ACTIONS(9108), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4584] = { - [sym__concat] = ACTIONS(3422), - [anon_sym_esac] = ACTIONS(3424), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_SEMI_SEMI] = ACTIONS(3424), - [anon_sym_PIPE_AMP] = ACTIONS(3424), - [anon_sym_AMP_AMP] = ACTIONS(3424), - [anon_sym_PIPE_PIPE] = ACTIONS(3424), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_LF] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - }, - [4585] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4621), - [anon_sym_RBRACE] = ACTIONS(9110), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4586] = { - [sym__concat] = ACTIONS(7032), - [sym_variable_name] = ACTIONS(7032), - [anon_sym_esac] = ACTIONS(7034), - [anon_sym_PIPE] = ACTIONS(7034), - [anon_sym_SEMI_SEMI] = ACTIONS(7034), - [anon_sym_PIPE_AMP] = ACTIONS(7034), - [anon_sym_AMP_AMP] = ACTIONS(7034), - [anon_sym_PIPE_PIPE] = ACTIONS(7034), - [sym__special_characters] = ACTIONS(7034), - [anon_sym_DQUOTE] = ACTIONS(7034), - [anon_sym_DOLLAR] = ACTIONS(7034), - [sym_raw_string] = ACTIONS(7034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), - [anon_sym_BQUOTE] = ACTIONS(7034), - [anon_sym_LT_LPAREN] = ACTIONS(7034), - [anon_sym_GT_LPAREN] = ACTIONS(7034), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7034), - [sym_word] = ACTIONS(7034), - [anon_sym_SEMI] = ACTIONS(7034), - [anon_sym_LF] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - }, - [4587] = { - [sym__concat] = ACTIONS(7036), - [sym_variable_name] = ACTIONS(7036), - [anon_sym_esac] = ACTIONS(7038), - [anon_sym_PIPE] = ACTIONS(7038), - [anon_sym_SEMI_SEMI] = ACTIONS(7038), - [anon_sym_PIPE_AMP] = ACTIONS(7038), - [anon_sym_AMP_AMP] = ACTIONS(7038), - [anon_sym_PIPE_PIPE] = ACTIONS(7038), - [sym__special_characters] = ACTIONS(7038), - [anon_sym_DQUOTE] = ACTIONS(7038), - [anon_sym_DOLLAR] = ACTIONS(7038), - [sym_raw_string] = ACTIONS(7038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), - [anon_sym_BQUOTE] = ACTIONS(7038), - [anon_sym_LT_LPAREN] = ACTIONS(7038), - [anon_sym_GT_LPAREN] = ACTIONS(7038), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7038), - [sym_word] = ACTIONS(7038), - [anon_sym_SEMI] = ACTIONS(7038), - [anon_sym_LF] = ACTIONS(7038), - [anon_sym_AMP] = ACTIONS(7038), - }, - [4588] = { - [sym__concat] = ACTIONS(7040), - [sym_variable_name] = ACTIONS(7040), - [anon_sym_esac] = ACTIONS(7042), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_SEMI_SEMI] = ACTIONS(7042), - [anon_sym_PIPE_AMP] = ACTIONS(7042), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7042), - [sym__special_characters] = ACTIONS(7042), - [anon_sym_DQUOTE] = ACTIONS(7042), - [anon_sym_DOLLAR] = ACTIONS(7042), - [sym_raw_string] = ACTIONS(7042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), - [anon_sym_BQUOTE] = ACTIONS(7042), - [anon_sym_LT_LPAREN] = ACTIONS(7042), - [anon_sym_GT_LPAREN] = ACTIONS(7042), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7042), - [sym_word] = ACTIONS(7042), - [anon_sym_SEMI] = ACTIONS(7042), - [anon_sym_LF] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - }, - [4589] = { - [sym__concat] = ACTIONS(7032), - [anon_sym_esac] = ACTIONS(7034), - [anon_sym_PIPE] = ACTIONS(7034), - [anon_sym_SEMI_SEMI] = ACTIONS(7034), - [anon_sym_PIPE_AMP] = ACTIONS(7034), - [anon_sym_AMP_AMP] = ACTIONS(7034), - [anon_sym_PIPE_PIPE] = ACTIONS(7034), - [sym__special_characters] = ACTIONS(7034), - [anon_sym_DQUOTE] = ACTIONS(7034), - [anon_sym_DOLLAR] = ACTIONS(7034), - [sym_raw_string] = ACTIONS(7034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), - [anon_sym_BQUOTE] = ACTIONS(7034), - [anon_sym_LT_LPAREN] = ACTIONS(7034), - [anon_sym_GT_LPAREN] = ACTIONS(7034), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7034), - [sym_word] = ACTIONS(7034), - [anon_sym_SEMI] = ACTIONS(7034), - [anon_sym_LF] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - }, - [4590] = { - [sym__concat] = ACTIONS(7036), - [anon_sym_esac] = ACTIONS(7038), - [anon_sym_PIPE] = ACTIONS(7038), - [anon_sym_SEMI_SEMI] = ACTIONS(7038), - [anon_sym_PIPE_AMP] = ACTIONS(7038), - [anon_sym_AMP_AMP] = ACTIONS(7038), - [anon_sym_PIPE_PIPE] = ACTIONS(7038), - [sym__special_characters] = ACTIONS(7038), - [anon_sym_DQUOTE] = ACTIONS(7038), - [anon_sym_DOLLAR] = ACTIONS(7038), - [sym_raw_string] = ACTIONS(7038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), - [anon_sym_BQUOTE] = ACTIONS(7038), - [anon_sym_LT_LPAREN] = ACTIONS(7038), - [anon_sym_GT_LPAREN] = ACTIONS(7038), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7038), - [sym_word] = ACTIONS(7038), - [anon_sym_SEMI] = ACTIONS(7038), - [anon_sym_LF] = ACTIONS(7038), - [anon_sym_AMP] = ACTIONS(7038), - }, - [4591] = { - [sym__concat] = ACTIONS(7040), - [anon_sym_esac] = ACTIONS(7042), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_SEMI_SEMI] = ACTIONS(7042), - [anon_sym_PIPE_AMP] = ACTIONS(7042), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7042), - [sym__special_characters] = ACTIONS(7042), - [anon_sym_DQUOTE] = ACTIONS(7042), - [anon_sym_DOLLAR] = ACTIONS(7042), - [sym_raw_string] = ACTIONS(7042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), - [anon_sym_BQUOTE] = ACTIONS(7042), - [anon_sym_LT_LPAREN] = ACTIONS(7042), - [anon_sym_GT_LPAREN] = ACTIONS(7042), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7042), - [sym_word] = ACTIONS(7042), - [anon_sym_SEMI] = ACTIONS(7042), - [anon_sym_LF] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - }, - [4592] = { - [sym_file_descriptor] = ACTIONS(6041), - [sym__concat] = ACTIONS(6041), - [anon_sym_esac] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_SEMI_SEMI] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6043), - [anon_sym_GT] = ACTIONS(6043), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_AMP_GT] = ACTIONS(6043), - [anon_sym_AMP_GT_GT] = ACTIONS(6043), - [anon_sym_LT_AMP] = ACTIONS(6043), - [anon_sym_GT_AMP] = ACTIONS(6043), - [anon_sym_LT_LT] = ACTIONS(6043), - [anon_sym_LT_LT_DASH] = ACTIONS(6043), - [anon_sym_LT_LT_LT] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6043), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - }, - [4593] = { - [sym_file_descriptor] = ACTIONS(6045), - [sym__concat] = ACTIONS(6045), - [anon_sym_esac] = ACTIONS(6047), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_SEMI_SEMI] = ACTIONS(6047), - [anon_sym_PIPE_AMP] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6047), - [anon_sym_PIPE_PIPE] = ACTIONS(6047), - [anon_sym_LT] = ACTIONS(6047), - [anon_sym_GT] = ACTIONS(6047), - [anon_sym_GT_GT] = ACTIONS(6047), - [anon_sym_AMP_GT] = ACTIONS(6047), - [anon_sym_AMP_GT_GT] = ACTIONS(6047), - [anon_sym_LT_AMP] = ACTIONS(6047), - [anon_sym_GT_AMP] = ACTIONS(6047), - [anon_sym_LT_LT] = ACTIONS(6047), - [anon_sym_LT_LT_DASH] = ACTIONS(6047), - [anon_sym_LT_LT_LT] = ACTIONS(6047), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - }, - [4594] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [anon_sym_esac] = ACTIONS(6051), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6051), - [anon_sym_GT] = ACTIONS(6051), - [anon_sym_GT_GT] = ACTIONS(6051), - [anon_sym_AMP_GT] = ACTIONS(6051), - [anon_sym_AMP_GT_GT] = ACTIONS(6051), - [anon_sym_LT_AMP] = ACTIONS(6051), - [anon_sym_GT_AMP] = ACTIONS(6051), - [anon_sym_LT_LT] = ACTIONS(6051), - [anon_sym_LT_LT_DASH] = ACTIONS(6051), - [anon_sym_LT_LT_LT] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [4595] = { - [sym_file_descriptor] = ACTIONS(6053), - [sym__concat] = ACTIONS(6053), - [anon_sym_esac] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6055), - [anon_sym_GT] = ACTIONS(6055), - [anon_sym_GT_GT] = ACTIONS(6055), - [anon_sym_AMP_GT] = ACTIONS(6055), - [anon_sym_AMP_GT_GT] = ACTIONS(6055), - [anon_sym_LT_AMP] = ACTIONS(6055), - [anon_sym_GT_AMP] = ACTIONS(6055), - [anon_sym_LT_LT] = ACTIONS(6055), - [anon_sym_LT_LT_DASH] = ACTIONS(6055), - [anon_sym_LT_LT_LT] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6055), - [anon_sym_LF] = ACTIONS(6055), - [anon_sym_AMP] = ACTIONS(6055), - }, - [4596] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9112), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4597] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [anon_sym_esac] = ACTIONS(6061), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [anon_sym_LT] = ACTIONS(6061), - [anon_sym_GT] = ACTIONS(6061), - [anon_sym_GT_GT] = ACTIONS(6061), - [anon_sym_AMP_GT] = ACTIONS(6061), - [anon_sym_AMP_GT_GT] = ACTIONS(6061), - [anon_sym_LT_AMP] = ACTIONS(6061), - [anon_sym_GT_AMP] = ACTIONS(6061), - [anon_sym_LT_LT] = ACTIONS(6061), - [anon_sym_LT_LT_DASH] = ACTIONS(6061), - [anon_sym_LT_LT_LT] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [4598] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9114), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4599] = { - [sym_file_descriptor] = ACTIONS(6065), - [sym__concat] = ACTIONS(6065), - [anon_sym_esac] = ACTIONS(6067), - [anon_sym_PIPE] = ACTIONS(6067), - [anon_sym_SEMI_SEMI] = ACTIONS(6067), - [anon_sym_PIPE_AMP] = ACTIONS(6067), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [anon_sym_LT] = ACTIONS(6067), - [anon_sym_GT] = ACTIONS(6067), - [anon_sym_GT_GT] = ACTIONS(6067), - [anon_sym_AMP_GT] = ACTIONS(6067), - [anon_sym_AMP_GT_GT] = ACTIONS(6067), - [anon_sym_LT_AMP] = ACTIONS(6067), - [anon_sym_GT_AMP] = ACTIONS(6067), - [anon_sym_LT_LT] = ACTIONS(6067), - [anon_sym_LT_LT_DASH] = ACTIONS(6067), - [anon_sym_LT_LT_LT] = ACTIONS(6067), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LF] = ACTIONS(6067), - [anon_sym_AMP] = ACTIONS(6067), - }, - [4600] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9116), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4601] = { - [sym_file_descriptor] = ACTIONS(6071), - [sym__concat] = ACTIONS(6071), - [anon_sym_esac] = ACTIONS(6073), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [anon_sym_PIPE_AMP] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6073), - [anon_sym_PIPE_PIPE] = ACTIONS(6073), - [anon_sym_LT] = ACTIONS(6073), - [anon_sym_GT] = ACTIONS(6073), - [anon_sym_GT_GT] = ACTIONS(6073), - [anon_sym_AMP_GT] = ACTIONS(6073), - [anon_sym_AMP_GT_GT] = ACTIONS(6073), - [anon_sym_LT_AMP] = ACTIONS(6073), - [anon_sym_GT_AMP] = ACTIONS(6073), - [anon_sym_LT_LT] = ACTIONS(6073), - [anon_sym_LT_LT_DASH] = ACTIONS(6073), - [anon_sym_LT_LT_LT] = ACTIONS(6073), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LF] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - }, - [4602] = { - [sym_file_descriptor] = ACTIONS(6075), - [sym__concat] = ACTIONS(6075), - [anon_sym_esac] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_SEMI_SEMI] = ACTIONS(6077), - [anon_sym_PIPE_AMP] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6077), - [anon_sym_PIPE_PIPE] = ACTIONS(6077), - [anon_sym_LT] = ACTIONS(6077), - [anon_sym_GT] = ACTIONS(6077), - [anon_sym_GT_GT] = ACTIONS(6077), - [anon_sym_AMP_GT] = ACTIONS(6077), - [anon_sym_AMP_GT_GT] = ACTIONS(6077), - [anon_sym_LT_AMP] = ACTIONS(6077), - [anon_sym_GT_AMP] = ACTIONS(6077), - [anon_sym_LT_LT] = ACTIONS(6077), - [anon_sym_LT_LT_DASH] = ACTIONS(6077), - [anon_sym_LT_LT_LT] = ACTIONS(6077), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LF] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - }, - [4603] = { - [sym_file_descriptor] = ACTIONS(7032), - [sym__concat] = ACTIONS(7032), - [sym_variable_name] = ACTIONS(7032), - [anon_sym_esac] = ACTIONS(7034), - [anon_sym_PIPE] = ACTIONS(7034), - [anon_sym_SEMI_SEMI] = ACTIONS(7034), - [anon_sym_PIPE_AMP] = ACTIONS(7034), - [anon_sym_AMP_AMP] = ACTIONS(7034), - [anon_sym_PIPE_PIPE] = ACTIONS(7034), - [anon_sym_LT] = ACTIONS(7034), - [anon_sym_GT] = ACTIONS(7034), - [anon_sym_GT_GT] = ACTIONS(7034), - [anon_sym_AMP_GT] = ACTIONS(7034), - [anon_sym_AMP_GT_GT] = ACTIONS(7034), - [anon_sym_LT_AMP] = ACTIONS(7034), - [anon_sym_GT_AMP] = ACTIONS(7034), - [sym__special_characters] = ACTIONS(7034), - [anon_sym_DQUOTE] = ACTIONS(7034), - [anon_sym_DOLLAR] = ACTIONS(7034), - [sym_raw_string] = ACTIONS(7034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), - [anon_sym_BQUOTE] = ACTIONS(7034), - [anon_sym_LT_LPAREN] = ACTIONS(7034), - [anon_sym_GT_LPAREN] = ACTIONS(7034), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7034), - [anon_sym_SEMI] = ACTIONS(7034), - [anon_sym_LF] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - }, - [4604] = { - [sym_file_descriptor] = ACTIONS(7036), - [sym__concat] = ACTIONS(7036), - [sym_variable_name] = ACTIONS(7036), - [anon_sym_esac] = ACTIONS(7038), - [anon_sym_PIPE] = ACTIONS(7038), - [anon_sym_SEMI_SEMI] = ACTIONS(7038), - [anon_sym_PIPE_AMP] = ACTIONS(7038), - [anon_sym_AMP_AMP] = ACTIONS(7038), - [anon_sym_PIPE_PIPE] = ACTIONS(7038), - [anon_sym_LT] = ACTIONS(7038), - [anon_sym_GT] = ACTIONS(7038), - [anon_sym_GT_GT] = ACTIONS(7038), - [anon_sym_AMP_GT] = ACTIONS(7038), - [anon_sym_AMP_GT_GT] = ACTIONS(7038), - [anon_sym_LT_AMP] = ACTIONS(7038), - [anon_sym_GT_AMP] = ACTIONS(7038), - [sym__special_characters] = ACTIONS(7038), - [anon_sym_DQUOTE] = ACTIONS(7038), - [anon_sym_DOLLAR] = ACTIONS(7038), - [sym_raw_string] = ACTIONS(7038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), - [anon_sym_BQUOTE] = ACTIONS(7038), - [anon_sym_LT_LPAREN] = ACTIONS(7038), - [anon_sym_GT_LPAREN] = ACTIONS(7038), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7038), - [anon_sym_SEMI] = ACTIONS(7038), - [anon_sym_LF] = ACTIONS(7038), - [anon_sym_AMP] = ACTIONS(7038), - }, - [4605] = { - [sym_file_descriptor] = ACTIONS(7040), - [sym__concat] = ACTIONS(7040), - [sym_variable_name] = ACTIONS(7040), - [anon_sym_esac] = ACTIONS(7042), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_SEMI_SEMI] = ACTIONS(7042), - [anon_sym_PIPE_AMP] = ACTIONS(7042), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7042), - [anon_sym_LT] = ACTIONS(7042), - [anon_sym_GT] = ACTIONS(7042), - [anon_sym_GT_GT] = ACTIONS(7042), - [anon_sym_AMP_GT] = ACTIONS(7042), - [anon_sym_AMP_GT_GT] = ACTIONS(7042), - [anon_sym_LT_AMP] = ACTIONS(7042), - [anon_sym_GT_AMP] = ACTIONS(7042), - [sym__special_characters] = ACTIONS(7042), - [anon_sym_DQUOTE] = ACTIONS(7042), - [anon_sym_DOLLAR] = ACTIONS(7042), - [sym_raw_string] = ACTIONS(7042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), - [anon_sym_BQUOTE] = ACTIONS(7042), - [anon_sym_LT_LPAREN] = ACTIONS(7042), - [anon_sym_GT_LPAREN] = ACTIONS(7042), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7042), - [anon_sym_SEMI] = ACTIONS(7042), - [anon_sym_LF] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - }, - [4606] = { - [sym__concat] = ACTIONS(4802), - [anon_sym_esac] = ACTIONS(4804), - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [anon_sym_PIPE_AMP] = ACTIONS(4804), - [anon_sym_AMP_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4804), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4804), - [anon_sym_LF] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4804), - }, - [4607] = { - [sym__concat] = ACTIONS(4808), - [anon_sym_esac] = ACTIONS(4810), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_SEMI_SEMI] = ACTIONS(4810), - [anon_sym_PIPE_AMP] = ACTIONS(4810), - [anon_sym_AMP_AMP] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4810), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_LF] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4810), - }, - [4608] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_esac] = ACTIONS(4873), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [4609] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9118), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4610] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(9120), - [sym_comment] = ACTIONS(56), - }, - [4611] = { - [aux_sym_concatenation_repeat1] = STATE(1600), - [sym__concat] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(9122), - [sym_comment] = ACTIONS(56), - }, - [4612] = { - [anon_sym_RBRACE] = ACTIONS(9122), - [sym_comment] = ACTIONS(56), - }, - [4613] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4629), - [anon_sym_RBRACE] = ACTIONS(9124), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4614] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_esac] = ACTIONS(4885), - [anon_sym_PIPE] = 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_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [4615] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4631), - [anon_sym_RBRACE] = ACTIONS(9126), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4616] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_esac] = ACTIONS(4891), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [4617] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(4633), - [anon_sym_RBRACE] = ACTIONS(9128), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4618] = { - [sym__concat] = ACTIONS(4895), - [anon_sym_esac] = ACTIONS(4897), - [anon_sym_PIPE] = ACTIONS(4897), - [anon_sym_SEMI_SEMI] = ACTIONS(4897), - [anon_sym_PIPE_AMP] = ACTIONS(4897), - [anon_sym_AMP_AMP] = ACTIONS(4897), - [anon_sym_PIPE_PIPE] = ACTIONS(4897), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LF] = ACTIONS(4897), - [anon_sym_AMP] = ACTIONS(4897), - }, - [4619] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9130), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4620] = { - [sym__concat] = ACTIONS(4901), - [anon_sym_esac] = ACTIONS(4903), - [anon_sym_PIPE] = ACTIONS(4903), - [anon_sym_SEMI_SEMI] = ACTIONS(4903), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4903), - [anon_sym_PIPE_PIPE] = ACTIONS(4903), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LF] = ACTIONS(4903), - [anon_sym_AMP] = ACTIONS(4903), - }, - [4621] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9132), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4622] = { - [sym_file_descriptor] = ACTIONS(7032), - [sym__concat] = ACTIONS(7032), - [anon_sym_esac] = ACTIONS(7034), - [anon_sym_PIPE] = ACTIONS(7034), - [anon_sym_SEMI_SEMI] = ACTIONS(7034), - [anon_sym_PIPE_AMP] = ACTIONS(7034), - [anon_sym_AMP_AMP] = ACTIONS(7034), - [anon_sym_PIPE_PIPE] = ACTIONS(7034), - [anon_sym_LT] = ACTIONS(7034), - [anon_sym_GT] = ACTIONS(7034), - [anon_sym_GT_GT] = ACTIONS(7034), - [anon_sym_AMP_GT] = ACTIONS(7034), - [anon_sym_AMP_GT_GT] = ACTIONS(7034), - [anon_sym_LT_AMP] = ACTIONS(7034), - [anon_sym_GT_AMP] = ACTIONS(7034), - [anon_sym_LT_LT] = ACTIONS(7034), - [anon_sym_LT_LT_DASH] = ACTIONS(7034), - [anon_sym_LT_LT_LT] = ACTIONS(7034), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7034), - [anon_sym_LF] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - }, - [4623] = { - [sym_file_descriptor] = ACTIONS(7036), - [sym__concat] = ACTIONS(7036), - [anon_sym_esac] = ACTIONS(7038), - [anon_sym_PIPE] = ACTIONS(7038), - [anon_sym_SEMI_SEMI] = ACTIONS(7038), - [anon_sym_PIPE_AMP] = ACTIONS(7038), - [anon_sym_AMP_AMP] = ACTIONS(7038), - [anon_sym_PIPE_PIPE] = ACTIONS(7038), - [anon_sym_LT] = ACTIONS(7038), - [anon_sym_GT] = ACTIONS(7038), - [anon_sym_GT_GT] = ACTIONS(7038), - [anon_sym_AMP_GT] = ACTIONS(7038), - [anon_sym_AMP_GT_GT] = ACTIONS(7038), - [anon_sym_LT_AMP] = ACTIONS(7038), - [anon_sym_GT_AMP] = ACTIONS(7038), - [anon_sym_LT_LT] = ACTIONS(7038), - [anon_sym_LT_LT_DASH] = ACTIONS(7038), - [anon_sym_LT_LT_LT] = ACTIONS(7038), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7038), - [anon_sym_LF] = ACTIONS(7038), - [anon_sym_AMP] = ACTIONS(7038), - }, - [4624] = { - [sym_file_descriptor] = ACTIONS(7040), - [sym__concat] = ACTIONS(7040), - [anon_sym_esac] = ACTIONS(7042), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_SEMI_SEMI] = ACTIONS(7042), - [anon_sym_PIPE_AMP] = ACTIONS(7042), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7042), - [anon_sym_LT] = ACTIONS(7042), - [anon_sym_GT] = ACTIONS(7042), - [anon_sym_GT_GT] = ACTIONS(7042), - [anon_sym_AMP_GT] = ACTIONS(7042), - [anon_sym_AMP_GT_GT] = ACTIONS(7042), - [anon_sym_LT_AMP] = ACTIONS(7042), - [anon_sym_GT_AMP] = ACTIONS(7042), - [anon_sym_LT_LT] = ACTIONS(7042), - [anon_sym_LT_LT_DASH] = ACTIONS(7042), - [anon_sym_LT_LT_LT] = ACTIONS(7042), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7042), - [anon_sym_LF] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), - }, - [4625] = { - [sym__concat] = ACTIONS(6041), - [anon_sym_esac] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_SEMI_SEMI] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6043), - [anon_sym_LF] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - }, - [4626] = { - [sym__concat] = ACTIONS(6045), - [anon_sym_esac] = ACTIONS(6047), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_SEMI_SEMI] = ACTIONS(6047), - [anon_sym_PIPE_AMP] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6047), - [anon_sym_PIPE_PIPE] = ACTIONS(6047), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_LF] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - }, - [4627] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_esac] = ACTIONS(6051), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [4628] = { - [sym__concat] = ACTIONS(6053), - [anon_sym_esac] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6055), - [anon_sym_LF] = ACTIONS(6055), - [anon_sym_AMP] = ACTIONS(6055), - }, - [4629] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9134), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4630] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_esac] = ACTIONS(6061), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [4631] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9136), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4632] = { - [sym__concat] = ACTIONS(6065), - [anon_sym_esac] = ACTIONS(6067), - [anon_sym_PIPE] = ACTIONS(6067), - [anon_sym_SEMI_SEMI] = ACTIONS(6067), - [anon_sym_PIPE_AMP] = ACTIONS(6067), - [anon_sym_AMP_AMP] = ACTIONS(6067), - [anon_sym_PIPE_PIPE] = ACTIONS(6067), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_LF] = ACTIONS(6067), - [anon_sym_AMP] = ACTIONS(6067), - }, - [4633] = { - [sym_concatenation] = STATE(452), - [sym_string] = STATE(456), - [sym_simple_expansion] = STATE(456), - [sym_string_expansion] = STATE(456), - [sym_expansion] = STATE(456), - [sym_command_substitution] = STATE(456), - [sym_process_substitution] = STATE(456), - [aux_sym_expansion_repeat1] = STATE(982), - [anon_sym_RBRACE] = ACTIONS(9138), - [anon_sym_EQ] = ACTIONS(844), - [sym__special_characters] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [anon_sym_DOLLAR] = ACTIONS(850), - [sym_raw_string] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_COLON_QMARK] = ACTIONS(844), - [anon_sym_COLON_DASH] = ACTIONS(844), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LT_LPAREN] = ACTIONS(864), - [anon_sym_GT_LPAREN] = ACTIONS(864), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(866), - }, - [4634] = { - [sym__concat] = ACTIONS(6071), - [anon_sym_esac] = ACTIONS(6073), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_SEMI_SEMI] = ACTIONS(6073), - [anon_sym_PIPE_AMP] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6073), - [anon_sym_PIPE_PIPE] = ACTIONS(6073), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6073), - [anon_sym_LF] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - }, - [4635] = { - [sym__concat] = ACTIONS(6075), - [anon_sym_esac] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_SEMI_SEMI] = ACTIONS(6077), - [anon_sym_PIPE_AMP] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6077), - [anon_sym_PIPE_PIPE] = ACTIONS(6077), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6077), - [anon_sym_LF] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - }, - [4636] = { - [sym__concat] = ACTIONS(7032), - [anon_sym_esac] = ACTIONS(7034), - [anon_sym_PIPE] = ACTIONS(7034), - [anon_sym_SEMI_SEMI] = ACTIONS(7034), - [anon_sym_PIPE_AMP] = ACTIONS(7034), - [anon_sym_AMP_AMP] = ACTIONS(7034), - [anon_sym_PIPE_PIPE] = ACTIONS(7034), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7034), - [anon_sym_LF] = ACTIONS(7034), - [anon_sym_AMP] = ACTIONS(7034), - }, - [4637] = { - [sym__concat] = ACTIONS(7036), - [anon_sym_esac] = ACTIONS(7038), - [anon_sym_PIPE] = ACTIONS(7038), - [anon_sym_SEMI_SEMI] = ACTIONS(7038), - [anon_sym_PIPE_AMP] = ACTIONS(7038), - [anon_sym_AMP_AMP] = ACTIONS(7038), - [anon_sym_PIPE_PIPE] = ACTIONS(7038), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7038), - [anon_sym_LF] = ACTIONS(7038), - [anon_sym_AMP] = ACTIONS(7038), - }, - [4638] = { - [sym__concat] = ACTIONS(7040), - [anon_sym_esac] = ACTIONS(7042), - [anon_sym_PIPE] = ACTIONS(7042), - [anon_sym_SEMI_SEMI] = ACTIONS(7042), - [anon_sym_PIPE_AMP] = ACTIONS(7042), - [anon_sym_AMP_AMP] = ACTIONS(7042), - [anon_sym_PIPE_PIPE] = ACTIONS(7042), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7042), - [anon_sym_LF] = ACTIONS(7042), - [anon_sym_AMP] = ACTIONS(7042), + [aux_sym_program_repeat1] = STATE(2544), + [aux_sym_command_repeat1] = STATE(31), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_SEMI_SEMI] = ACTIONS(6214), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_LBRACK] = ACTIONS(26), + [anon_sym_LBRACK_LBRACK] = ACTIONS(28), + [anon_sym_declare] = ACTIONS(30), + [anon_sym_typeset] = ACTIONS(30), + [anon_sym_export] = ACTIONS(30), + [anon_sym_readonly] = ACTIONS(30), + [anon_sym_local] = ACTIONS(30), + [anon_sym_unset] = ACTIONS(32), + [anon_sym_unsetenv] = ACTIONS(32), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(38), + [anon_sym_DQUOTE] = ACTIONS(40), + [anon_sym_DOLLAR] = ACTIONS(42), + [sym_raw_string] = ACTIONS(44), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(48), + [anon_sym_BQUOTE] = ACTIONS(50), + [anon_sym_LT_LPAREN] = ACTIONS(52), + [anon_sym_GT_LPAREN] = ACTIONS(52), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(56), + }, + [2551] = { + [sym__concat] = ACTIONS(5178), + [anon_sym_RBRACE] = ACTIONS(5178), + [sym_comment] = ACTIONS(54), + }, + [2552] = { + [sym__concat] = ACTIONS(5182), + [anon_sym_RBRACE] = ACTIONS(5182), + [sym_comment] = ACTIONS(54), + }, + [2553] = { + [sym__concat] = ACTIONS(5186), + [anon_sym_RBRACE] = ACTIONS(5186), + [sym_comment] = ACTIONS(54), + }, + [2554] = { + [sym__heredoc_middle] = ACTIONS(5178), + [sym__heredoc_end] = ACTIONS(5178), + [anon_sym_DOLLAR] = ACTIONS(5180), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5178), + [sym_comment] = ACTIONS(54), + }, + [2555] = { + [sym__heredoc_middle] = ACTIONS(5182), + [sym__heredoc_end] = ACTIONS(5182), + [anon_sym_DOLLAR] = ACTIONS(5184), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5182), + [sym_comment] = ACTIONS(54), + }, + [2556] = { + [sym__heredoc_middle] = ACTIONS(5186), + [sym__heredoc_end] = ACTIONS(5186), + [anon_sym_DOLLAR] = ACTIONS(5188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5186), + [sym_comment] = ACTIONS(54), + }, + [2557] = { + [sym_file_descriptor] = ACTIONS(3258), + [sym_variable_name] = ACTIONS(3258), + [anon_sym_esac] = ACTIONS(3260), + [anon_sym_PIPE] = ACTIONS(3260), + [anon_sym_SEMI_SEMI] = ACTIONS(3260), + [anon_sym_PIPE_AMP] = ACTIONS(3260), + [anon_sym_AMP_AMP] = ACTIONS(3260), + [anon_sym_PIPE_PIPE] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_GT] = ACTIONS(3260), + [anon_sym_GT_GT] = ACTIONS(3260), + [anon_sym_AMP_GT] = ACTIONS(3260), + [anon_sym_AMP_GT_GT] = ACTIONS(3260), + [anon_sym_LT_AMP] = ACTIONS(3260), + [anon_sym_GT_AMP] = ACTIONS(3260), + [sym__special_characters] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [anon_sym_DOLLAR] = ACTIONS(3260), + [sym_raw_string] = ACTIONS(3260), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3260), + [anon_sym_BQUOTE] = ACTIONS(3260), + [anon_sym_LT_LPAREN] = ACTIONS(3260), + [anon_sym_GT_LPAREN] = ACTIONS(3260), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3260), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_LF] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3260), + }, + [2558] = { + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(1634), + [sym_variable_name] = ACTIONS(1634), + [anon_sym_esac] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1636), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1636), + [anon_sym_LT_AMP] = ACTIONS(1636), + [anon_sym_GT_AMP] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [2559] = { + [aux_sym_concatenation_repeat1] = STATE(2559), + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(6216), + [sym_variable_name] = ACTIONS(1634), + [anon_sym_esac] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1636), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1636), + [anon_sym_LT_AMP] = ACTIONS(1636), + [anon_sym_GT_AMP] = ACTIONS(1636), + [sym__special_characters] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [sym_raw_string] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LT_LPAREN] = ACTIONS(1636), + [anon_sym_GT_LPAREN] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [2560] = { + [sym_file_descriptor] = ACTIONS(1683), + [sym__concat] = ACTIONS(1683), + [sym_variable_name] = ACTIONS(1683), + [anon_sym_esac] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1685), + [anon_sym_AMP_GT] = ACTIONS(1685), + [anon_sym_AMP_GT_GT] = ACTIONS(1685), + [anon_sym_LT_AMP] = ACTIONS(1685), + [anon_sym_GT_AMP] = ACTIONS(1685), + [sym__special_characters] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [sym_raw_string] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1685), + [anon_sym_BQUOTE] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1685), + [anon_sym_GT_LPAREN] = ACTIONS(1685), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + }, + [2561] = { + [sym_concatenation] = STATE(2671), + [sym_string] = STATE(2670), + [sym_simple_expansion] = STATE(2670), + [sym_string_expansion] = STATE(2670), + [sym_expansion] = STATE(2670), + [sym_command_substitution] = STATE(2670), + [sym_process_substitution] = STATE(2670), + [anon_sym_RBRACE] = ACTIONS(6219), + [sym__special_characters] = ACTIONS(6221), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(6223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(6223), + }, + [2562] = { + [sym_file_descriptor] = ACTIONS(1724), + [sym__concat] = ACTIONS(1724), + [sym_variable_name] = ACTIONS(1724), + [anon_sym_esac] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1726), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1726), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1726), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LF] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1726), + }, + [2563] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6225), + }, + [2564] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6227), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2565] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(6229), + [sym_comment] = ACTIONS(54), + }, + [2566] = { + [sym_concatenation] = STATE(2677), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2677), + [anon_sym_RBRACE] = ACTIONS(6231), + [anon_sym_EQ] = ACTIONS(6233), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6237), + [anon_sym_COLON] = ACTIONS(6233), + [anon_sym_COLON_QMARK] = ACTIONS(6233), + [anon_sym_COLON_DASH] = ACTIONS(6233), + [anon_sym_PERCENT] = ACTIONS(6233), + [anon_sym_DASH] = ACTIONS(6233), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2567] = { + [sym_concatenation] = STATE(2680), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2680), + [anon_sym_RBRACE] = ACTIONS(6239), + [anon_sym_EQ] = ACTIONS(6241), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6245), + [anon_sym_COLON] = ACTIONS(6241), + [anon_sym_COLON_QMARK] = ACTIONS(6241), + [anon_sym_COLON_DASH] = ACTIONS(6241), + [anon_sym_PERCENT] = ACTIONS(6241), + [anon_sym_DASH] = ACTIONS(6241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2568] = { + [sym_concatenation] = STATE(2682), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2682), + [anon_sym_RBRACE] = ACTIONS(6219), + [anon_sym_EQ] = ACTIONS(6247), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6249), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6251), + [anon_sym_COLON] = ACTIONS(6247), + [anon_sym_COLON_QMARK] = ACTIONS(6247), + [anon_sym_COLON_DASH] = ACTIONS(6247), + [anon_sym_PERCENT] = ACTIONS(6247), + [anon_sym_DASH] = ACTIONS(6247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2569] = { + [sym_file_descriptor] = ACTIONS(1790), + [sym__concat] = ACTIONS(1790), + [sym_variable_name] = ACTIONS(1790), + [anon_sym_esac] = ACTIONS(1792), + [anon_sym_PIPE] = ACTIONS(1792), + [anon_sym_SEMI_SEMI] = ACTIONS(1792), + [anon_sym_PIPE_AMP] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1792), + [anon_sym_GT] = ACTIONS(1792), + [anon_sym_GT_GT] = ACTIONS(1792), + [anon_sym_AMP_GT] = ACTIONS(1792), + [anon_sym_AMP_GT_GT] = ACTIONS(1792), + [anon_sym_LT_AMP] = ACTIONS(1792), + [anon_sym_GT_AMP] = ACTIONS(1792), + [sym__special_characters] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1792), + [anon_sym_DOLLAR] = ACTIONS(1792), + [sym_raw_string] = ACTIONS(1792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1792), + [anon_sym_LT_LPAREN] = ACTIONS(1792), + [anon_sym_GT_LPAREN] = ACTIONS(1792), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1792), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_LF] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1792), + }, + [2570] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6253), + }, + [2571] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6255), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2572] = { + [sym_file_descriptor] = ACTIONS(1798), + [sym__concat] = ACTIONS(1798), + [sym_variable_name] = ACTIONS(1798), + [anon_sym_esac] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_SEMI_SEMI] = ACTIONS(1800), + [anon_sym_PIPE_AMP] = ACTIONS(1800), + [anon_sym_AMP_AMP] = ACTIONS(1800), + [anon_sym_PIPE_PIPE] = ACTIONS(1800), + [anon_sym_LT] = ACTIONS(1800), + [anon_sym_GT] = ACTIONS(1800), + [anon_sym_GT_GT] = ACTIONS(1800), + [anon_sym_AMP_GT] = ACTIONS(1800), + [anon_sym_AMP_GT_GT] = ACTIONS(1800), + [anon_sym_LT_AMP] = ACTIONS(1800), + [anon_sym_GT_AMP] = ACTIONS(1800), + [sym__special_characters] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1800), + [sym_raw_string] = ACTIONS(1800), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1800), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1800), + [anon_sym_BQUOTE] = ACTIONS(1800), + [anon_sym_LT_LPAREN] = ACTIONS(1800), + [anon_sym_GT_LPAREN] = ACTIONS(1800), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_LF] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1800), + }, + [2573] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6257), + }, + [2574] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6219), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2575] = { + [sym_file_descriptor] = ACTIONS(1936), + [sym__concat] = ACTIONS(1936), + [sym_variable_name] = ACTIONS(1936), + [anon_sym_esac] = ACTIONS(1938), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_SEMI_SEMI] = ACTIONS(1938), + [anon_sym_PIPE_AMP] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_PIPE_PIPE] = ACTIONS(1938), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1938), + [anon_sym_GT_GT] = ACTIONS(1938), + [anon_sym_AMP_GT] = ACTIONS(1938), + [anon_sym_AMP_GT_GT] = ACTIONS(1938), + [anon_sym_LT_AMP] = ACTIONS(1938), + [anon_sym_GT_AMP] = ACTIONS(1938), + [sym__special_characters] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_DOLLAR] = ACTIONS(1938), + [sym_raw_string] = ACTIONS(1938), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1938), + [anon_sym_BQUOTE] = ACTIONS(1938), + [anon_sym_LT_LPAREN] = ACTIONS(1938), + [anon_sym_GT_LPAREN] = ACTIONS(1938), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1938), + }, + [2576] = { + [sym_file_descriptor] = ACTIONS(2000), + [sym__concat] = ACTIONS(2000), + [sym_variable_name] = ACTIONS(2000), + [anon_sym_esac] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [anon_sym_LT] = ACTIONS(2002), + [anon_sym_GT] = ACTIONS(2002), + [anon_sym_GT_GT] = ACTIONS(2002), + [anon_sym_AMP_GT] = ACTIONS(2002), + [anon_sym_AMP_GT_GT] = ACTIONS(2002), + [anon_sym_LT_AMP] = ACTIONS(2002), + [anon_sym_GT_AMP] = ACTIONS(2002), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2002), + [anon_sym_BQUOTE] = ACTIONS(2002), + [anon_sym_LT_LPAREN] = ACTIONS(2002), + [anon_sym_GT_LPAREN] = ACTIONS(2002), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2002), + }, + [2577] = { + [sym_file_redirect] = STATE(1476), + [sym_file_descriptor] = ACTIONS(5656), + [anon_sym_esac] = ACTIONS(3484), + [anon_sym_PIPE] = 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_LT] = ACTIONS(5658), + [anon_sym_GT] = ACTIONS(5658), + [anon_sym_GT_GT] = ACTIONS(5658), + [anon_sym_AMP_GT] = ACTIONS(5658), + [anon_sym_AMP_GT_GT] = ACTIONS(5658), + [anon_sym_LT_AMP] = ACTIONS(5658), + [anon_sym_GT_AMP] = ACTIONS(5658), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_LF] = ACTIONS(3486), + [anon_sym_AMP] = ACTIONS(3484), + }, + [2578] = { + [sym_concatenation] = STATE(1479), + [sym_string] = STATE(2687), + [sym_simple_expansion] = STATE(2687), + [sym_string_expansion] = STATE(2687), + [sym_expansion] = STATE(2687), + [sym_command_substitution] = STATE(2687), + [sym_process_substitution] = STATE(2687), + [sym__special_characters] = ACTIONS(6259), + [anon_sym_DQUOTE] = ACTIONS(6016), + [anon_sym_DOLLAR] = ACTIONS(6018), + [sym_raw_string] = ACTIONS(6261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6024), + [anon_sym_BQUOTE] = ACTIONS(6026), + [anon_sym_LT_LPAREN] = ACTIONS(6028), + [anon_sym_GT_LPAREN] = ACTIONS(6028), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(6261), + }, + [2579] = { + [aux_sym_concatenation_repeat1] = STATE(2689), + [sym__concat] = ACTIONS(6263), + [anon_sym_esac] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(660), + [anon_sym_SEMI_SEMI] = ACTIONS(660), + [anon_sym_PIPE_AMP] = ACTIONS(660), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(660), + [anon_sym_LF] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(660), + }, + [2580] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(2691), + [anon_sym_DQUOTE] = ACTIONS(6265), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [2581] = { + [sym_string] = STATE(2693), + [anon_sym_DQUOTE] = ACTIONS(6016), + [anon_sym_DOLLAR] = ACTIONS(6267), + [sym_raw_string] = ACTIONS(6269), + [anon_sym_POUND] = ACTIONS(6267), + [anon_sym_DASH] = ACTIONS(6267), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6271), + [anon_sym_STAR] = ACTIONS(6267), + [anon_sym_AT] = ACTIONS(6267), + [anon_sym_QMARK] = ACTIONS(6267), + [anon_sym_0] = ACTIONS(6273), + [anon_sym__] = ACTIONS(6273), + }, + [2582] = { + [aux_sym_concatenation_repeat1] = STATE(2689), + [sym__concat] = ACTIONS(6263), + [anon_sym_esac] = ACTIONS(674), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_SEMI_SEMI] = ACTIONS(674), + [anon_sym_PIPE_AMP] = ACTIONS(674), + [anon_sym_AMP_AMP] = ACTIONS(674), + [anon_sym_PIPE_PIPE] = ACTIONS(674), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(674), + [anon_sym_LF] = ACTIONS(672), + [anon_sym_AMP] = ACTIONS(674), + }, + [2583] = { + [sym_subscript] = STATE(2699), + [sym_variable_name] = ACTIONS(6275), + [anon_sym_DOLLAR] = ACTIONS(6277), + [anon_sym_POUND] = ACTIONS(6279), + [anon_sym_DASH] = ACTIONS(6277), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6281), + [anon_sym_STAR] = ACTIONS(6277), + [anon_sym_AT] = ACTIONS(6277), + [anon_sym_QMARK] = ACTIONS(6277), + [anon_sym_0] = ACTIONS(6283), + [anon_sym__] = ACTIONS(6283), + }, + [2584] = { + [sym_for_statement] = STATE(2700), + [sym_while_statement] = STATE(2700), + [sym_if_statement] = STATE(2700), + [sym_case_statement] = STATE(2700), + [sym_function_definition] = STATE(2700), + [sym_subshell] = STATE(2700), + [sym_pipeline] = STATE(2700), + [sym_list] = STATE(2700), + [sym_command] = STATE(2700), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(2700), + [sym_variable_assignment] = STATE(2701), + [sym_declaration_command] = STATE(2700), + [sym_unset_command] = STATE(2700), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [2585] = { + [sym_for_statement] = STATE(2702), + [sym_while_statement] = STATE(2702), + [sym_if_statement] = STATE(2702), + [sym_case_statement] = STATE(2702), + [sym_function_definition] = STATE(2702), + [sym_subshell] = STATE(2702), + [sym_pipeline] = STATE(2702), + [sym_list] = STATE(2702), + [sym_command] = STATE(2702), + [sym_command_name] = STATE(174), + [sym_bracket_command] = STATE(2702), + [sym_variable_assignment] = STATE(2703), + [sym_declaration_command] = STATE(2702), + [sym_unset_command] = STATE(2702), + [sym_subscript] = STATE(176), + [sym_file_redirect] = STATE(177), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(171), + [sym_simple_expansion] = STATE(171), + [sym_string_expansion] = STATE(171), + [sym_expansion] = STATE(171), + [sym_command_substitution] = STATE(171), + [sym_process_substitution] = STATE(171), + [aux_sym_command_repeat1] = STATE(177), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(290), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(292), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(298), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(304), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(308), + }, + [2586] = { + [sym_for_statement] = STATE(2704), + [sym_while_statement] = STATE(2704), + [sym_if_statement] = STATE(2704), + [sym_case_statement] = STATE(2704), + [sym_function_definition] = STATE(2704), + [sym_subshell] = STATE(2704), + [sym_pipeline] = STATE(2704), + [sym_list] = STATE(2704), + [sym_command] = STATE(2704), + [sym_command_name] = STATE(158), + [sym_bracket_command] = STATE(2704), + [sym_variable_assignment] = STATE(2705), + [sym_declaration_command] = STATE(2704), + [sym_unset_command] = STATE(2704), + [sym_subscript] = STATE(160), + [sym_file_redirect] = STATE(162), + [sym_concatenation] = STATE(161), + [sym_string] = STATE(151), + [sym_simple_expansion] = STATE(151), + [sym_string_expansion] = STATE(151), + [sym_expansion] = STATE(151), + [sym_command_substitution] = STATE(151), + [sym_process_substitution] = STATE(151), + [aux_sym_command_repeat1] = STATE(162), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(250), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(254), + [anon_sym_if] = ACTIONS(256), + [anon_sym_case] = ACTIONS(258), + [anon_sym_function] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(34), + [anon_sym_GT_GT] = ACTIONS(36), + [anon_sym_AMP_GT] = ACTIONS(34), + [anon_sym_AMP_GT_GT] = ACTIONS(36), + [anon_sym_LT_AMP] = ACTIONS(36), + [anon_sym_GT_AMP] = ACTIONS(36), + [sym__special_characters] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [sym_raw_string] = ACTIONS(278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(288), + }, + [2587] = { + [sym_variable_name] = ACTIONS(2105), + [anon_sym_esac] = ACTIONS(2107), + [anon_sym_PIPE] = ACTIONS(2107), + [anon_sym_SEMI_SEMI] = ACTIONS(2107), + [anon_sym_PIPE_AMP] = ACTIONS(2107), + [anon_sym_AMP_AMP] = ACTIONS(2107), + [anon_sym_PIPE_PIPE] = ACTIONS(2107), + [sym__special_characters] = ACTIONS(2107), + [anon_sym_DQUOTE] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(2107), + [sym_raw_string] = ACTIONS(2107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2107), + [anon_sym_LT_LPAREN] = ACTIONS(2107), + [anon_sym_GT_LPAREN] = ACTIONS(2107), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2107), + [sym_word] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_LF] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2107), + }, + [2588] = { + [sym_concatenation] = STATE(984), + [sym_string] = STATE(549), + [sym_simple_expansion] = STATE(549), + [sym_string_expansion] = STATE(549), + [sym_expansion] = STATE(549), + [sym_command_substitution] = STATE(549), + [sym_process_substitution] = STATE(549), + [aux_sym_for_statement_repeat1] = STATE(984), + [anon_sym_RPAREN] = ACTIONS(6285), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(1089), + [sym_raw_string] = ACTIONS(1091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1095), + [anon_sym_BQUOTE] = ACTIONS(1097), + [anon_sym_LT_LPAREN] = ACTIONS(1099), + [anon_sym_GT_LPAREN] = ACTIONS(1099), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(1091), + }, + [2589] = { + [sym__concat] = ACTIONS(2672), + [sym_variable_name] = ACTIONS(2672), + [anon_sym_esac] = ACTIONS(2674), + [anon_sym_PIPE] = ACTIONS(2674), + [anon_sym_SEMI_SEMI] = ACTIONS(2674), + [anon_sym_PIPE_AMP] = ACTIONS(2674), + [anon_sym_AMP_AMP] = ACTIONS(2674), + [anon_sym_PIPE_PIPE] = ACTIONS(2674), + [sym__special_characters] = ACTIONS(2674), + [anon_sym_DQUOTE] = ACTIONS(2674), + [anon_sym_DOLLAR] = ACTIONS(2674), + [sym_raw_string] = ACTIONS(2674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2674), + [anon_sym_BQUOTE] = ACTIONS(2674), + [anon_sym_LT_LPAREN] = ACTIONS(2674), + [anon_sym_GT_LPAREN] = ACTIONS(2674), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2674), + [sym_word] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_LF] = ACTIONS(2672), + [anon_sym_AMP] = ACTIONS(2674), + }, + [2590] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6287), + [sym_comment] = ACTIONS(54), + }, + [2591] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6289), + [sym_comment] = ACTIONS(54), + }, + [2592] = { + [anon_sym_RBRACE] = ACTIONS(6289), + [sym_comment] = ACTIONS(54), + }, + [2593] = { + [sym_concatenation] = STATE(2710), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2710), + [anon_sym_RBRACE] = ACTIONS(6291), + [anon_sym_EQ] = ACTIONS(6293), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6293), + [anon_sym_COLON_QMARK] = ACTIONS(6293), + [anon_sym_COLON_DASH] = ACTIONS(6293), + [anon_sym_PERCENT] = ACTIONS(6293), + [anon_sym_DASH] = ACTIONS(6293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2594] = { + [sym__concat] = ACTIONS(2750), + [sym_variable_name] = ACTIONS(2750), + [anon_sym_esac] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_SEMI_SEMI] = ACTIONS(2752), + [anon_sym_PIPE_AMP] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [sym__special_characters] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2752), + [anon_sym_BQUOTE] = ACTIONS(2752), + [anon_sym_LT_LPAREN] = ACTIONS(2752), + [anon_sym_GT_LPAREN] = ACTIONS(2752), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2752), + [sym_word] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2752), + }, + [2595] = { + [sym_concatenation] = STATE(2713), + [sym_string] = STATE(2712), + [sym_simple_expansion] = STATE(2712), + [sym_string_expansion] = STATE(2712), + [sym_expansion] = STATE(2712), + [sym_command_substitution] = STATE(2712), + [sym_process_substitution] = STATE(2712), + [anon_sym_RBRACE] = ACTIONS(6289), + [sym__special_characters] = ACTIONS(6297), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(6299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(6299), + }, + [2596] = { + [sym__concat] = ACTIONS(2793), + [sym_variable_name] = ACTIONS(2793), + [anon_sym_esac] = ACTIONS(2795), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_SEMI_SEMI] = ACTIONS(2795), + [anon_sym_PIPE_AMP] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [sym__special_characters] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [anon_sym_DOLLAR] = ACTIONS(2795), + [sym_raw_string] = ACTIONS(2795), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2795), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2795), + [anon_sym_BQUOTE] = ACTIONS(2795), + [anon_sym_LT_LPAREN] = ACTIONS(2795), + [anon_sym_GT_LPAREN] = ACTIONS(2795), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2795), + [sym_word] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_LF] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2795), + }, + [2597] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6301), + }, + [2598] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6303), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2599] = { + [sym__concat] = ACTIONS(2801), + [sym_variable_name] = ACTIONS(2801), + [anon_sym_esac] = ACTIONS(2803), + [anon_sym_PIPE] = ACTIONS(2803), + [anon_sym_SEMI_SEMI] = ACTIONS(2803), + [anon_sym_PIPE_AMP] = ACTIONS(2803), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_PIPE_PIPE] = ACTIONS(2803), + [sym__special_characters] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2803), + [sym_raw_string] = ACTIONS(2803), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2803), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2803), + [anon_sym_BQUOTE] = ACTIONS(2803), + [anon_sym_LT_LPAREN] = ACTIONS(2803), + [anon_sym_GT_LPAREN] = ACTIONS(2803), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2803), + [sym_word] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_LF] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + }, + [2600] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6305), + }, + [2601] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6307), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2602] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6309), + }, + [2603] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6289), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2604] = { + [sym_concatenation] = STATE(2720), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2720), + [anon_sym_RBRACE] = ACTIONS(6311), + [anon_sym_EQ] = ACTIONS(6313), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6315), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6313), + [anon_sym_COLON_QMARK] = ACTIONS(6313), + [anon_sym_COLON_DASH] = ACTIONS(6313), + [anon_sym_PERCENT] = ACTIONS(6313), + [anon_sym_DASH] = ACTIONS(6313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2605] = { + [sym__concat] = ACTIONS(2817), + [sym_variable_name] = ACTIONS(2817), + [anon_sym_esac] = ACTIONS(2819), + [anon_sym_PIPE] = ACTIONS(2819), + [anon_sym_SEMI_SEMI] = ACTIONS(2819), + [anon_sym_PIPE_AMP] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_PIPE_PIPE] = ACTIONS(2819), + [sym__special_characters] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [anon_sym_DOLLAR] = ACTIONS(2819), + [sym_raw_string] = ACTIONS(2819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2819), + [anon_sym_BQUOTE] = ACTIONS(2819), + [anon_sym_LT_LPAREN] = ACTIONS(2819), + [anon_sym_GT_LPAREN] = ACTIONS(2819), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2819), + [sym_word] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_LF] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2819), + }, + [2606] = { + [sym_concatenation] = STATE(2722), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2722), + [anon_sym_RBRACE] = ACTIONS(6317), + [anon_sym_EQ] = ACTIONS(6319), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6321), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6319), + [anon_sym_COLON_QMARK] = ACTIONS(6319), + [anon_sym_COLON_DASH] = ACTIONS(6319), + [anon_sym_PERCENT] = ACTIONS(6319), + [anon_sym_DASH] = ACTIONS(6319), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2607] = { + [sym__concat] = ACTIONS(2672), + [anon_sym_esac] = ACTIONS(2674), + [anon_sym_PIPE] = ACTIONS(2674), + [anon_sym_SEMI_SEMI] = ACTIONS(2674), + [anon_sym_PIPE_AMP] = ACTIONS(2674), + [anon_sym_AMP_AMP] = ACTIONS(2674), + [anon_sym_PIPE_PIPE] = ACTIONS(2674), + [sym__special_characters] = ACTIONS(2674), + [anon_sym_DQUOTE] = ACTIONS(2674), + [anon_sym_DOLLAR] = ACTIONS(2674), + [sym_raw_string] = ACTIONS(2674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2674), + [anon_sym_BQUOTE] = ACTIONS(2674), + [anon_sym_LT_LPAREN] = ACTIONS(2674), + [anon_sym_GT_LPAREN] = ACTIONS(2674), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2674), + [sym_word] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_LF] = ACTIONS(2672), + [anon_sym_AMP] = ACTIONS(2674), + }, + [2608] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6323), + [sym_comment] = ACTIONS(54), + }, + [2609] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6325), + [sym_comment] = ACTIONS(54), + }, + [2610] = { + [anon_sym_RBRACE] = ACTIONS(6325), + [sym_comment] = ACTIONS(54), + }, + [2611] = { + [sym_concatenation] = STATE(2726), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2726), + [anon_sym_RBRACE] = ACTIONS(6327), + [anon_sym_EQ] = ACTIONS(6329), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6329), + [anon_sym_COLON_QMARK] = ACTIONS(6329), + [anon_sym_COLON_DASH] = ACTIONS(6329), + [anon_sym_PERCENT] = ACTIONS(6329), + [anon_sym_DASH] = ACTIONS(6329), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2612] = { + [sym__concat] = ACTIONS(2750), + [anon_sym_esac] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_SEMI_SEMI] = ACTIONS(2752), + [anon_sym_PIPE_AMP] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [sym__special_characters] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2752), + [anon_sym_BQUOTE] = ACTIONS(2752), + [anon_sym_LT_LPAREN] = ACTIONS(2752), + [anon_sym_GT_LPAREN] = ACTIONS(2752), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2752), + [sym_word] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2752), + }, + [2613] = { + [sym_concatenation] = STATE(2729), + [sym_string] = STATE(2728), + [sym_simple_expansion] = STATE(2728), + [sym_string_expansion] = STATE(2728), + [sym_expansion] = STATE(2728), + [sym_command_substitution] = STATE(2728), + [sym_process_substitution] = STATE(2728), + [anon_sym_RBRACE] = ACTIONS(6325), + [sym__special_characters] = ACTIONS(6333), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(6335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(6335), + }, + [2614] = { + [sym__concat] = ACTIONS(2793), + [anon_sym_esac] = ACTIONS(2795), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_SEMI_SEMI] = ACTIONS(2795), + [anon_sym_PIPE_AMP] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [sym__special_characters] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [anon_sym_DOLLAR] = ACTIONS(2795), + [sym_raw_string] = ACTIONS(2795), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2795), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2795), + [anon_sym_BQUOTE] = ACTIONS(2795), + [anon_sym_LT_LPAREN] = ACTIONS(2795), + [anon_sym_GT_LPAREN] = ACTIONS(2795), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2795), + [sym_word] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_LF] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2795), + }, + [2615] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6337), + }, + [2616] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6339), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2617] = { + [sym__concat] = ACTIONS(2801), + [anon_sym_esac] = ACTIONS(2803), + [anon_sym_PIPE] = ACTIONS(2803), + [anon_sym_SEMI_SEMI] = ACTIONS(2803), + [anon_sym_PIPE_AMP] = ACTIONS(2803), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_PIPE_PIPE] = ACTIONS(2803), + [sym__special_characters] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2803), + [sym_raw_string] = ACTIONS(2803), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2803), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2803), + [anon_sym_BQUOTE] = ACTIONS(2803), + [anon_sym_LT_LPAREN] = ACTIONS(2803), + [anon_sym_GT_LPAREN] = ACTIONS(2803), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2803), + [sym_word] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_LF] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + }, + [2618] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6341), + }, + [2619] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6343), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2620] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6345), + }, + [2621] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6325), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2622] = { + [sym_concatenation] = STATE(2736), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2736), + [anon_sym_RBRACE] = ACTIONS(6347), + [anon_sym_EQ] = ACTIONS(6349), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6351), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6349), + [anon_sym_COLON_QMARK] = ACTIONS(6349), + [anon_sym_COLON_DASH] = ACTIONS(6349), + [anon_sym_PERCENT] = ACTIONS(6349), + [anon_sym_DASH] = ACTIONS(6349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2623] = { + [sym__concat] = ACTIONS(2817), + [anon_sym_esac] = ACTIONS(2819), + [anon_sym_PIPE] = ACTIONS(2819), + [anon_sym_SEMI_SEMI] = ACTIONS(2819), + [anon_sym_PIPE_AMP] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_PIPE_PIPE] = ACTIONS(2819), + [sym__special_characters] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [anon_sym_DOLLAR] = ACTIONS(2819), + [sym_raw_string] = ACTIONS(2819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2819), + [anon_sym_BQUOTE] = ACTIONS(2819), + [anon_sym_LT_LPAREN] = ACTIONS(2819), + [anon_sym_GT_LPAREN] = ACTIONS(2819), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2819), + [sym_word] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_LF] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2819), + }, + [2624] = { + [sym_concatenation] = STATE(2738), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2738), + [anon_sym_RBRACE] = ACTIONS(6353), + [anon_sym_EQ] = ACTIONS(6355), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6355), + [anon_sym_COLON_QMARK] = ACTIONS(6355), + [anon_sym_COLON_DASH] = ACTIONS(6355), + [anon_sym_PERCENT] = ACTIONS(6355), + [anon_sym_DASH] = ACTIONS(6355), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2625] = { + [sym_file_descriptor] = ACTIONS(3740), + [sym__concat] = ACTIONS(3740), + [anon_sym_esac] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3742), + [anon_sym_SEMI_SEMI] = ACTIONS(3742), + [anon_sym_PIPE_AMP] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_EQ_TILDE] = ACTIONS(3742), + [anon_sym_EQ_EQ] = ACTIONS(3742), + [anon_sym_LT] = ACTIONS(3742), + [anon_sym_GT] = ACTIONS(3742), + [anon_sym_GT_GT] = ACTIONS(3742), + [anon_sym_AMP_GT] = ACTIONS(3742), + [anon_sym_AMP_GT_GT] = ACTIONS(3742), + [anon_sym_LT_AMP] = ACTIONS(3742), + [anon_sym_GT_AMP] = ACTIONS(3742), + [anon_sym_LT_LT] = ACTIONS(3742), + [anon_sym_LT_LT_DASH] = ACTIONS(3742), + [anon_sym_LT_LT_LT] = ACTIONS(3742), + [sym__special_characters] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_DOLLAR] = ACTIONS(3742), + [sym_raw_string] = ACTIONS(3742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3742), + [anon_sym_BQUOTE] = ACTIONS(3742), + [anon_sym_LT_LPAREN] = ACTIONS(3742), + [anon_sym_GT_LPAREN] = ACTIONS(3742), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_LF] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3742), + }, + [2626] = { + [sym_file_descriptor] = ACTIONS(3746), + [sym__concat] = ACTIONS(3746), + [anon_sym_esac] = ACTIONS(3748), + [anon_sym_PIPE] = ACTIONS(3748), + [anon_sym_SEMI_SEMI] = ACTIONS(3748), + [anon_sym_PIPE_AMP] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_PIPE_PIPE] = ACTIONS(3748), + [anon_sym_EQ_TILDE] = ACTIONS(3748), + [anon_sym_EQ_EQ] = ACTIONS(3748), + [anon_sym_LT] = ACTIONS(3748), + [anon_sym_GT] = ACTIONS(3748), + [anon_sym_GT_GT] = ACTIONS(3748), + [anon_sym_AMP_GT] = ACTIONS(3748), + [anon_sym_AMP_GT_GT] = ACTIONS(3748), + [anon_sym_LT_AMP] = ACTIONS(3748), + [anon_sym_GT_AMP] = ACTIONS(3748), + [anon_sym_LT_LT] = ACTIONS(3748), + [anon_sym_LT_LT_DASH] = ACTIONS(3748), + [anon_sym_LT_LT_LT] = ACTIONS(3748), + [sym__special_characters] = ACTIONS(3748), + [anon_sym_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3748), + [sym_raw_string] = ACTIONS(3748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3748), + [anon_sym_BQUOTE] = ACTIONS(3748), + [anon_sym_LT_LPAREN] = ACTIONS(3748), + [anon_sym_GT_LPAREN] = ACTIONS(3748), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3748), + [anon_sym_SEMI] = ACTIONS(3748), + [anon_sym_LF] = ACTIONS(3746), + [anon_sym_AMP] = ACTIONS(3748), + }, + [2627] = { + [sym_file_descriptor] = ACTIONS(3831), + [sym__concat] = ACTIONS(3831), + [anon_sym_esac] = ACTIONS(3833), + [anon_sym_PIPE] = ACTIONS(3833), + [anon_sym_SEMI_SEMI] = ACTIONS(3833), + [anon_sym_PIPE_AMP] = ACTIONS(3833), + [anon_sym_AMP_AMP] = ACTIONS(3833), + [anon_sym_PIPE_PIPE] = ACTIONS(3833), + [anon_sym_EQ_TILDE] = ACTIONS(3833), + [anon_sym_EQ_EQ] = ACTIONS(3833), + [anon_sym_LT] = ACTIONS(3833), + [anon_sym_GT] = ACTIONS(3833), + [anon_sym_GT_GT] = ACTIONS(3833), + [anon_sym_AMP_GT] = ACTIONS(3833), + [anon_sym_AMP_GT_GT] = ACTIONS(3833), + [anon_sym_LT_AMP] = ACTIONS(3833), + [anon_sym_GT_AMP] = ACTIONS(3833), + [anon_sym_LT_LT] = ACTIONS(3833), + [anon_sym_LT_LT_DASH] = ACTIONS(3833), + [anon_sym_LT_LT_LT] = ACTIONS(3833), + [sym__special_characters] = ACTIONS(3833), + [anon_sym_DQUOTE] = ACTIONS(3833), + [anon_sym_DOLLAR] = ACTIONS(3833), + [sym_raw_string] = ACTIONS(3833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3833), + [anon_sym_BQUOTE] = ACTIONS(3833), + [anon_sym_LT_LPAREN] = ACTIONS(3833), + [anon_sym_GT_LPAREN] = ACTIONS(3833), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3833), + [anon_sym_SEMI] = ACTIONS(3833), + [anon_sym_LF] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3833), + }, + [2628] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6359), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2629] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6361), + [sym_comment] = ACTIONS(54), + }, + [2630] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6363), + [sym_comment] = ACTIONS(54), + }, + [2631] = { + [anon_sym_RBRACE] = ACTIONS(6363), + [sym_comment] = ACTIONS(54), + }, + [2632] = { + [sym_concatenation] = STATE(2743), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2743), + [anon_sym_RBRACE] = ACTIONS(6365), + [anon_sym_EQ] = ACTIONS(6367), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6367), + [anon_sym_COLON_QMARK] = ACTIONS(6367), + [anon_sym_COLON_DASH] = ACTIONS(6367), + [anon_sym_PERCENT] = ACTIONS(6367), + [anon_sym_DASH] = ACTIONS(6367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2633] = { + [sym_file_descriptor] = ACTIONS(3847), + [sym__concat] = ACTIONS(3847), + [anon_sym_esac] = ACTIONS(3849), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_SEMI_SEMI] = ACTIONS(3849), + [anon_sym_PIPE_AMP] = ACTIONS(3849), + [anon_sym_AMP_AMP] = ACTIONS(3849), + [anon_sym_PIPE_PIPE] = ACTIONS(3849), + [anon_sym_EQ_TILDE] = ACTIONS(3849), + [anon_sym_EQ_EQ] = ACTIONS(3849), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_GT] = ACTIONS(3849), + [anon_sym_GT_GT] = ACTIONS(3849), + [anon_sym_AMP_GT] = ACTIONS(3849), + [anon_sym_AMP_GT_GT] = ACTIONS(3849), + [anon_sym_LT_AMP] = ACTIONS(3849), + [anon_sym_GT_AMP] = ACTIONS(3849), + [anon_sym_LT_LT] = ACTIONS(3849), + [anon_sym_LT_LT_DASH] = ACTIONS(3849), + [anon_sym_LT_LT_LT] = ACTIONS(3849), + [sym__special_characters] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3849), + [sym_raw_string] = ACTIONS(3849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3849), + [anon_sym_BQUOTE] = ACTIONS(3849), + [anon_sym_LT_LPAREN] = ACTIONS(3849), + [anon_sym_GT_LPAREN] = ACTIONS(3849), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3849), + [anon_sym_SEMI] = ACTIONS(3849), + [anon_sym_LF] = ACTIONS(3847), + [anon_sym_AMP] = ACTIONS(3849), + }, + [2634] = { + [sym_concatenation] = STATE(2745), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2745), + [anon_sym_RBRACE] = ACTIONS(6371), + [anon_sym_EQ] = ACTIONS(6373), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6375), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6373), + [anon_sym_COLON_QMARK] = ACTIONS(6373), + [anon_sym_COLON_DASH] = ACTIONS(6373), + [anon_sym_PERCENT] = ACTIONS(6373), + [anon_sym_DASH] = ACTIONS(6373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2635] = { + [sym_file_descriptor] = ACTIONS(3857), + [sym__concat] = ACTIONS(3857), + [anon_sym_esac] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3859), + [anon_sym_SEMI_SEMI] = ACTIONS(3859), + [anon_sym_PIPE_AMP] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_EQ_TILDE] = ACTIONS(3859), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_GT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3859), + [anon_sym_AMP_GT] = ACTIONS(3859), + [anon_sym_AMP_GT_GT] = ACTIONS(3859), + [anon_sym_LT_AMP] = ACTIONS(3859), + [anon_sym_GT_AMP] = ACTIONS(3859), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_LT_LT_DASH] = ACTIONS(3859), + [anon_sym_LT_LT_LT] = ACTIONS(3859), + [sym__special_characters] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_DOLLAR] = ACTIONS(3859), + [sym_raw_string] = ACTIONS(3859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3859), + [anon_sym_BQUOTE] = ACTIONS(3859), + [anon_sym_LT_LPAREN] = ACTIONS(3859), + [anon_sym_GT_LPAREN] = ACTIONS(3859), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3859), + [anon_sym_SEMI] = ACTIONS(3859), + [anon_sym_LF] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(3859), + }, + [2636] = { + [sym_concatenation] = STATE(2747), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2747), + [anon_sym_RBRACE] = ACTIONS(6377), + [anon_sym_EQ] = ACTIONS(6379), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6379), + [anon_sym_COLON_QMARK] = ACTIONS(6379), + [anon_sym_COLON_DASH] = ACTIONS(6379), + [anon_sym_PERCENT] = ACTIONS(6379), + [anon_sym_DASH] = ACTIONS(6379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2637] = { + [sym_file_descriptor] = ACTIONS(3867), + [sym__concat] = ACTIONS(3867), + [anon_sym_esac] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3869), + [anon_sym_SEMI_SEMI] = ACTIONS(3869), + [anon_sym_PIPE_AMP] = ACTIONS(3869), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_EQ_TILDE] = ACTIONS(3869), + [anon_sym_EQ_EQ] = ACTIONS(3869), + [anon_sym_LT] = ACTIONS(3869), + [anon_sym_GT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3869), + [anon_sym_AMP_GT] = ACTIONS(3869), + [anon_sym_AMP_GT_GT] = ACTIONS(3869), + [anon_sym_LT_AMP] = ACTIONS(3869), + [anon_sym_GT_AMP] = ACTIONS(3869), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_LT_LT_DASH] = ACTIONS(3869), + [anon_sym_LT_LT_LT] = ACTIONS(3869), + [sym__special_characters] = ACTIONS(3869), + [anon_sym_DQUOTE] = ACTIONS(3869), + [anon_sym_DOLLAR] = ACTIONS(3869), + [sym_raw_string] = ACTIONS(3869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3869), + [anon_sym_BQUOTE] = ACTIONS(3869), + [anon_sym_LT_LPAREN] = ACTIONS(3869), + [anon_sym_GT_LPAREN] = ACTIONS(3869), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3869), + [anon_sym_SEMI] = ACTIONS(3869), + [anon_sym_LF] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3869), + }, + [2638] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6383), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2639] = { + [sym_file_descriptor] = ACTIONS(3873), + [sym__concat] = ACTIONS(3873), + [anon_sym_esac] = ACTIONS(3875), + [anon_sym_PIPE] = ACTIONS(3875), + [anon_sym_SEMI_SEMI] = ACTIONS(3875), + [anon_sym_PIPE_AMP] = ACTIONS(3875), + [anon_sym_AMP_AMP] = ACTIONS(3875), + [anon_sym_PIPE_PIPE] = ACTIONS(3875), + [anon_sym_EQ_TILDE] = ACTIONS(3875), + [anon_sym_EQ_EQ] = ACTIONS(3875), + [anon_sym_LT] = ACTIONS(3875), + [anon_sym_GT] = ACTIONS(3875), + [anon_sym_GT_GT] = ACTIONS(3875), + [anon_sym_AMP_GT] = ACTIONS(3875), + [anon_sym_AMP_GT_GT] = ACTIONS(3875), + [anon_sym_LT_AMP] = ACTIONS(3875), + [anon_sym_GT_AMP] = ACTIONS(3875), + [anon_sym_LT_LT] = ACTIONS(3875), + [anon_sym_LT_LT_DASH] = ACTIONS(3875), + [anon_sym_LT_LT_LT] = ACTIONS(3875), + [sym__special_characters] = ACTIONS(3875), + [anon_sym_DQUOTE] = ACTIONS(3875), + [anon_sym_DOLLAR] = ACTIONS(3875), + [sym_raw_string] = ACTIONS(3875), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3875), + [anon_sym_BQUOTE] = ACTIONS(3875), + [anon_sym_LT_LPAREN] = ACTIONS(3875), + [anon_sym_GT_LPAREN] = ACTIONS(3875), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3875), + [anon_sym_SEMI] = ACTIONS(3875), + [anon_sym_LF] = ACTIONS(3873), + [anon_sym_AMP] = ACTIONS(3875), + }, + [2640] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6385), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2641] = { + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(1634), + [anon_sym_esac] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1636), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1636), + [anon_sym_LT_AMP] = ACTIONS(1636), + [anon_sym_GT_AMP] = ACTIONS(1636), + [anon_sym_LT_LT] = ACTIONS(1636), + [anon_sym_LT_LT_DASH] = ACTIONS(1636), + [anon_sym_LT_LT_LT] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [2642] = { + [aux_sym_concatenation_repeat1] = STATE(2642), + [sym_file_descriptor] = ACTIONS(1634), + [sym__concat] = ACTIONS(6387), + [anon_sym_esac] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1636), + [anon_sym_AMP_GT] = ACTIONS(1636), + [anon_sym_AMP_GT_GT] = ACTIONS(1636), + [anon_sym_LT_AMP] = ACTIONS(1636), + [anon_sym_GT_AMP] = ACTIONS(1636), + [anon_sym_LT_LT] = ACTIONS(1636), + [anon_sym_LT_LT_DASH] = ACTIONS(1636), + [anon_sym_LT_LT_LT] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [2643] = { + [sym_file_descriptor] = ACTIONS(1683), + [sym__concat] = ACTIONS(1683), + [anon_sym_esac] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_GT] = ACTIONS(1685), + [anon_sym_AMP_GT] = ACTIONS(1685), + [anon_sym_AMP_GT_GT] = ACTIONS(1685), + [anon_sym_LT_AMP] = ACTIONS(1685), + [anon_sym_GT_AMP] = ACTIONS(1685), + [anon_sym_LT_LT] = ACTIONS(1685), + [anon_sym_LT_LT_DASH] = ACTIONS(1685), + [anon_sym_LT_LT_LT] = ACTIONS(1685), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + }, + [2644] = { + [sym_concatenation] = STATE(2753), + [sym_string] = STATE(2752), + [sym_simple_expansion] = STATE(2752), + [sym_string_expansion] = STATE(2752), + [sym_expansion] = STATE(2752), + [sym_command_substitution] = STATE(2752), + [sym_process_substitution] = STATE(2752), + [anon_sym_RBRACE] = ACTIONS(6390), + [sym__special_characters] = ACTIONS(6392), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(6394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(6394), + }, + [2645] = { + [sym_file_descriptor] = ACTIONS(1724), + [sym__concat] = ACTIONS(1724), + [anon_sym_esac] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1726), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1726), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1726), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LF] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1726), + }, + [2646] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6396), + }, + [2647] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6398), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2648] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(6400), + [sym_comment] = ACTIONS(54), + }, + [2649] = { + [sym_concatenation] = STATE(2759), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2759), + [anon_sym_RBRACE] = ACTIONS(6402), + [anon_sym_EQ] = ACTIONS(6404), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6406), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6408), + [anon_sym_COLON] = ACTIONS(6404), + [anon_sym_COLON_QMARK] = ACTIONS(6404), + [anon_sym_COLON_DASH] = ACTIONS(6404), + [anon_sym_PERCENT] = ACTIONS(6404), + [anon_sym_DASH] = ACTIONS(6404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2650] = { + [sym_concatenation] = STATE(2762), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2762), + [anon_sym_RBRACE] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(6412), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6416), + [anon_sym_COLON] = ACTIONS(6412), + [anon_sym_COLON_QMARK] = ACTIONS(6412), + [anon_sym_COLON_DASH] = ACTIONS(6412), + [anon_sym_PERCENT] = ACTIONS(6412), + [anon_sym_DASH] = ACTIONS(6412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2651] = { + [sym_concatenation] = STATE(2764), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2764), + [anon_sym_RBRACE] = ACTIONS(6390), + [anon_sym_EQ] = ACTIONS(6418), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6420), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6422), + [anon_sym_COLON] = ACTIONS(6418), + [anon_sym_COLON_QMARK] = ACTIONS(6418), + [anon_sym_COLON_DASH] = ACTIONS(6418), + [anon_sym_PERCENT] = ACTIONS(6418), + [anon_sym_DASH] = ACTIONS(6418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2652] = { + [sym_file_descriptor] = ACTIONS(1790), + [sym__concat] = ACTIONS(1790), + [anon_sym_esac] = ACTIONS(1792), + [anon_sym_PIPE] = ACTIONS(1792), + [anon_sym_SEMI_SEMI] = ACTIONS(1792), + [anon_sym_PIPE_AMP] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1792), + [anon_sym_GT] = ACTIONS(1792), + [anon_sym_GT_GT] = ACTIONS(1792), + [anon_sym_AMP_GT] = ACTIONS(1792), + [anon_sym_AMP_GT_GT] = ACTIONS(1792), + [anon_sym_LT_AMP] = ACTIONS(1792), + [anon_sym_GT_AMP] = ACTIONS(1792), + [anon_sym_LT_LT] = ACTIONS(1792), + [anon_sym_LT_LT_DASH] = ACTIONS(1792), + [anon_sym_LT_LT_LT] = ACTIONS(1792), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_LF] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1792), + }, + [2653] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6424), + }, + [2654] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6426), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2655] = { + [sym_file_descriptor] = ACTIONS(1798), + [sym__concat] = ACTIONS(1798), + [anon_sym_esac] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_SEMI_SEMI] = ACTIONS(1800), + [anon_sym_PIPE_AMP] = ACTIONS(1800), + [anon_sym_AMP_AMP] = ACTIONS(1800), + [anon_sym_PIPE_PIPE] = ACTIONS(1800), + [anon_sym_LT] = ACTIONS(1800), + [anon_sym_GT] = ACTIONS(1800), + [anon_sym_GT_GT] = ACTIONS(1800), + [anon_sym_AMP_GT] = ACTIONS(1800), + [anon_sym_AMP_GT_GT] = ACTIONS(1800), + [anon_sym_LT_AMP] = ACTIONS(1800), + [anon_sym_GT_AMP] = ACTIONS(1800), + [anon_sym_LT_LT] = ACTIONS(1800), + [anon_sym_LT_LT_DASH] = ACTIONS(1800), + [anon_sym_LT_LT_LT] = ACTIONS(1800), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_LF] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1800), + }, + [2656] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6428), + }, + [2657] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6390), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2658] = { + [sym_file_descriptor] = ACTIONS(1936), + [sym__concat] = ACTIONS(1936), + [anon_sym_esac] = ACTIONS(1938), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_SEMI_SEMI] = ACTIONS(1938), + [anon_sym_PIPE_AMP] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_PIPE_PIPE] = ACTIONS(1938), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1938), + [anon_sym_GT_GT] = ACTIONS(1938), + [anon_sym_AMP_GT] = ACTIONS(1938), + [anon_sym_AMP_GT_GT] = ACTIONS(1938), + [anon_sym_LT_AMP] = ACTIONS(1938), + [anon_sym_GT_AMP] = ACTIONS(1938), + [anon_sym_LT_LT] = ACTIONS(1938), + [anon_sym_LT_LT_DASH] = ACTIONS(1938), + [anon_sym_LT_LT_LT] = ACTIONS(1938), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1938), + }, + [2659] = { + [sym_file_descriptor] = ACTIONS(2000), + [sym__concat] = ACTIONS(2000), + [anon_sym_esac] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [anon_sym_LT] = ACTIONS(2002), + [anon_sym_GT] = ACTIONS(2002), + [anon_sym_GT_GT] = ACTIONS(2002), + [anon_sym_AMP_GT] = ACTIONS(2002), + [anon_sym_AMP_GT_GT] = ACTIONS(2002), + [anon_sym_LT_AMP] = ACTIONS(2002), + [anon_sym_GT_AMP] = ACTIONS(2002), + [anon_sym_LT_LT] = ACTIONS(2002), + [anon_sym_LT_LT_DASH] = ACTIONS(2002), + [anon_sym_LT_LT_LT] = ACTIONS(2002), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2002), + }, + [2660] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(5932), + [anon_sym_DQUOTE] = ACTIONS(5934), + [anon_sym_DOLLAR] = ACTIONS(5932), + [sym_raw_string] = ACTIONS(5934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5934), + [anon_sym_BQUOTE] = ACTIONS(5934), + [anon_sym_LT_LPAREN] = ACTIONS(5934), + [anon_sym_GT_LPAREN] = ACTIONS(5934), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5932), + }, + [2661] = { + [sym__special_characters] = ACTIONS(5934), + [anon_sym_DQUOTE] = ACTIONS(5934), + [anon_sym_DOLLAR] = ACTIONS(5932), + [sym_raw_string] = ACTIONS(5934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5934), + [anon_sym_BQUOTE] = ACTIONS(5934), + [anon_sym_LT_LPAREN] = ACTIONS(5934), + [anon_sym_GT_LPAREN] = ACTIONS(5934), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5934), + }, + [2662] = { + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(6430), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LF] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(316), + }, + [2663] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(6430), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LF] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(316), + }, + [2664] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(5940), + [anon_sym_DQUOTE] = ACTIONS(5942), + [anon_sym_DOLLAR] = ACTIONS(5940), + [sym_raw_string] = ACTIONS(5942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5942), + [anon_sym_BQUOTE] = ACTIONS(5942), + [anon_sym_LT_LPAREN] = ACTIONS(5942), + [anon_sym_GT_LPAREN] = ACTIONS(5942), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5940), + }, + [2665] = { + [sym__special_characters] = ACTIONS(5942), + [anon_sym_DQUOTE] = ACTIONS(5942), + [anon_sym_DOLLAR] = ACTIONS(5940), + [sym_raw_string] = ACTIONS(5942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5942), + [anon_sym_BQUOTE] = ACTIONS(5942), + [anon_sym_LT_LPAREN] = ACTIONS(5942), + [anon_sym_GT_LPAREN] = ACTIONS(5942), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(5942), + }, + [2666] = { + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(6432), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LF] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(316), + }, + [2667] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(314), + [anon_sym_SEMI_SEMI] = ACTIONS(6432), + [anon_sym_PIPE_AMP] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(352), + [anon_sym_LT_AMP] = ACTIONS(352), + [anon_sym_GT_AMP] = ACTIONS(352), + [sym__special_characters] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(352), + [anon_sym_BQUOTE] = ACTIONS(352), + [anon_sym_LT_LPAREN] = ACTIONS(352), + [anon_sym_GT_LPAREN] = ACTIONS(352), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LF] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(316), + }, + [2668] = { + [sym_file_descriptor] = ACTIONS(2672), + [sym__concat] = ACTIONS(2672), + [sym_variable_name] = ACTIONS(2672), + [anon_sym_esac] = ACTIONS(2674), + [anon_sym_PIPE] = ACTIONS(2674), + [anon_sym_SEMI_SEMI] = ACTIONS(2674), + [anon_sym_PIPE_AMP] = ACTIONS(2674), + [anon_sym_AMP_AMP] = ACTIONS(2674), + [anon_sym_PIPE_PIPE] = ACTIONS(2674), + [anon_sym_LT] = ACTIONS(2674), + [anon_sym_GT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_AMP_GT] = ACTIONS(2674), + [anon_sym_AMP_GT_GT] = ACTIONS(2674), + [anon_sym_LT_AMP] = ACTIONS(2674), + [anon_sym_GT_AMP] = ACTIONS(2674), + [sym__special_characters] = ACTIONS(2674), + [anon_sym_DQUOTE] = ACTIONS(2674), + [anon_sym_DOLLAR] = ACTIONS(2674), + [sym_raw_string] = ACTIONS(2674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2674), + [anon_sym_BQUOTE] = ACTIONS(2674), + [anon_sym_LT_LPAREN] = ACTIONS(2674), + [anon_sym_GT_LPAREN] = ACTIONS(2674), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_LF] = ACTIONS(2672), + [anon_sym_AMP] = ACTIONS(2674), + }, + [2669] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6434), + [sym_comment] = ACTIONS(54), + }, + [2670] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6436), + [sym_comment] = ACTIONS(54), + }, + [2671] = { + [anon_sym_RBRACE] = ACTIONS(6436), + [sym_comment] = ACTIONS(54), + }, + [2672] = { + [sym_concatenation] = STATE(2773), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2773), + [anon_sym_RBRACE] = ACTIONS(6438), + [anon_sym_EQ] = ACTIONS(6440), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6440), + [anon_sym_COLON_QMARK] = ACTIONS(6440), + [anon_sym_COLON_DASH] = ACTIONS(6440), + [anon_sym_PERCENT] = ACTIONS(6440), + [anon_sym_DASH] = ACTIONS(6440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2673] = { + [sym_file_descriptor] = ACTIONS(2750), + [sym__concat] = ACTIONS(2750), + [sym_variable_name] = ACTIONS(2750), + [anon_sym_esac] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_SEMI_SEMI] = ACTIONS(2752), + [anon_sym_PIPE_AMP] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2752), + [anon_sym_GT] = ACTIONS(2752), + [anon_sym_GT_GT] = ACTIONS(2752), + [anon_sym_AMP_GT] = ACTIONS(2752), + [anon_sym_AMP_GT_GT] = ACTIONS(2752), + [anon_sym_LT_AMP] = ACTIONS(2752), + [anon_sym_GT_AMP] = ACTIONS(2752), + [sym__special_characters] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2752), + [anon_sym_BQUOTE] = ACTIONS(2752), + [anon_sym_LT_LPAREN] = ACTIONS(2752), + [anon_sym_GT_LPAREN] = ACTIONS(2752), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2752), + }, + [2674] = { + [sym_concatenation] = STATE(2776), + [sym_string] = STATE(2775), + [sym_simple_expansion] = STATE(2775), + [sym_string_expansion] = STATE(2775), + [sym_expansion] = STATE(2775), + [sym_command_substitution] = STATE(2775), + [sym_process_substitution] = STATE(2775), + [anon_sym_RBRACE] = ACTIONS(6436), + [sym__special_characters] = ACTIONS(6444), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(6446), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(6446), + }, + [2675] = { + [sym_file_descriptor] = ACTIONS(2793), + [sym__concat] = ACTIONS(2793), + [sym_variable_name] = ACTIONS(2793), + [anon_sym_esac] = ACTIONS(2795), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_SEMI_SEMI] = ACTIONS(2795), + [anon_sym_PIPE_AMP] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2795), + [anon_sym_GT] = ACTIONS(2795), + [anon_sym_GT_GT] = ACTIONS(2795), + [anon_sym_AMP_GT] = ACTIONS(2795), + [anon_sym_AMP_GT_GT] = ACTIONS(2795), + [anon_sym_LT_AMP] = ACTIONS(2795), + [anon_sym_GT_AMP] = ACTIONS(2795), + [sym__special_characters] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [anon_sym_DOLLAR] = ACTIONS(2795), + [sym_raw_string] = ACTIONS(2795), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2795), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2795), + [anon_sym_BQUOTE] = ACTIONS(2795), + [anon_sym_LT_LPAREN] = ACTIONS(2795), + [anon_sym_GT_LPAREN] = ACTIONS(2795), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_LF] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2795), + }, + [2676] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6448), + }, + [2677] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6450), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2678] = { + [sym_file_descriptor] = ACTIONS(2801), + [sym__concat] = ACTIONS(2801), + [sym_variable_name] = ACTIONS(2801), + [anon_sym_esac] = ACTIONS(2803), + [anon_sym_PIPE] = ACTIONS(2803), + [anon_sym_SEMI_SEMI] = ACTIONS(2803), + [anon_sym_PIPE_AMP] = ACTIONS(2803), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_PIPE_PIPE] = ACTIONS(2803), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_GT] = ACTIONS(2803), + [anon_sym_GT_GT] = ACTIONS(2803), + [anon_sym_AMP_GT] = ACTIONS(2803), + [anon_sym_AMP_GT_GT] = ACTIONS(2803), + [anon_sym_LT_AMP] = ACTIONS(2803), + [anon_sym_GT_AMP] = ACTIONS(2803), + [sym__special_characters] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2803), + [sym_raw_string] = ACTIONS(2803), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2803), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2803), + [anon_sym_BQUOTE] = ACTIONS(2803), + [anon_sym_LT_LPAREN] = ACTIONS(2803), + [anon_sym_GT_LPAREN] = ACTIONS(2803), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_LF] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + }, + [2679] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6452), + }, + [2680] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6454), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2681] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6456), + }, + [2682] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6436), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2683] = { + [sym_concatenation] = STATE(2783), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2783), + [anon_sym_RBRACE] = ACTIONS(6458), + [anon_sym_EQ] = ACTIONS(6460), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6462), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6460), + [anon_sym_COLON_QMARK] = ACTIONS(6460), + [anon_sym_COLON_DASH] = ACTIONS(6460), + [anon_sym_PERCENT] = ACTIONS(6460), + [anon_sym_DASH] = ACTIONS(6460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2684] = { + [sym_file_descriptor] = ACTIONS(2817), + [sym__concat] = ACTIONS(2817), + [sym_variable_name] = ACTIONS(2817), + [anon_sym_esac] = ACTIONS(2819), + [anon_sym_PIPE] = ACTIONS(2819), + [anon_sym_SEMI_SEMI] = ACTIONS(2819), + [anon_sym_PIPE_AMP] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_PIPE_PIPE] = ACTIONS(2819), + [anon_sym_LT] = ACTIONS(2819), + [anon_sym_GT] = ACTIONS(2819), + [anon_sym_GT_GT] = ACTIONS(2819), + [anon_sym_AMP_GT] = ACTIONS(2819), + [anon_sym_AMP_GT_GT] = ACTIONS(2819), + [anon_sym_LT_AMP] = ACTIONS(2819), + [anon_sym_GT_AMP] = ACTIONS(2819), + [sym__special_characters] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [anon_sym_DOLLAR] = ACTIONS(2819), + [sym_raw_string] = ACTIONS(2819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2819), + [anon_sym_BQUOTE] = ACTIONS(2819), + [anon_sym_LT_LPAREN] = ACTIONS(2819), + [anon_sym_GT_LPAREN] = ACTIONS(2819), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_LF] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2819), + }, + [2685] = { + [sym_concatenation] = STATE(2785), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2785), + [anon_sym_RBRACE] = ACTIONS(6464), + [anon_sym_EQ] = ACTIONS(6466), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6468), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6466), + [anon_sym_COLON_QMARK] = ACTIONS(6466), + [anon_sym_COLON_DASH] = ACTIONS(6466), + [anon_sym_PERCENT] = ACTIONS(6466), + [anon_sym_DASH] = ACTIONS(6466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2686] = { + [aux_sym_concatenation_repeat1] = STATE(2689), + [sym__concat] = ACTIONS(6263), + [anon_sym_esac] = ACTIONS(1063), + [anon_sym_PIPE] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1063), + [anon_sym_PIPE_AMP] = ACTIONS(1063), + [anon_sym_AMP_AMP] = ACTIONS(1063), + [anon_sym_PIPE_PIPE] = ACTIONS(1063), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1063), + [anon_sym_LF] = ACTIONS(1061), + [anon_sym_AMP] = ACTIONS(1063), + }, + [2687] = { + [aux_sym_concatenation_repeat1] = STATE(2689), + [sym__concat] = ACTIONS(6263), + [anon_sym_esac] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1067), + [anon_sym_SEMI_SEMI] = ACTIONS(1067), + [anon_sym_PIPE_AMP] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1067), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1067), + [anon_sym_LF] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + }, + [2688] = { + [sym_string] = STATE(2786), + [sym_simple_expansion] = STATE(2786), + [sym_string_expansion] = STATE(2786), + [sym_expansion] = STATE(2786), + [sym_command_substitution] = STATE(2786), + [sym_process_substitution] = STATE(2786), + [sym__special_characters] = ACTIONS(6470), + [anon_sym_DQUOTE] = ACTIONS(6016), + [anon_sym_DOLLAR] = ACTIONS(6018), + [sym_raw_string] = ACTIONS(6470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6024), + [anon_sym_BQUOTE] = ACTIONS(6026), + [anon_sym_LT_LPAREN] = ACTIONS(6028), + [anon_sym_GT_LPAREN] = ACTIONS(6028), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(6470), + }, + [2689] = { + [aux_sym_concatenation_repeat1] = STATE(2787), + [sym__concat] = ACTIONS(6263), + [anon_sym_esac] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), + }, + [2690] = { + [sym__concat] = ACTIONS(692), + [anon_sym_esac] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_SEMI_SEMI] = ACTIONS(694), + [anon_sym_PIPE_AMP] = ACTIONS(694), + [anon_sym_AMP_AMP] = ACTIONS(694), + [anon_sym_PIPE_PIPE] = ACTIONS(694), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(694), + }, + [2691] = { + [sym_simple_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [aux_sym_string_repeat1] = STATE(396), + [anon_sym_DQUOTE] = ACTIONS(6472), + [anon_sym_DOLLAR] = ACTIONS(218), + [sym__string_content] = ACTIONS(220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(226), + [sym_comment] = ACTIONS(166), + }, + [2692] = { + [sym__concat] = ACTIONS(722), + [anon_sym_esac] = ACTIONS(724), + [anon_sym_PIPE] = ACTIONS(724), + [anon_sym_SEMI_SEMI] = ACTIONS(724), + [anon_sym_PIPE_AMP] = ACTIONS(724), + [anon_sym_AMP_AMP] = ACTIONS(724), + [anon_sym_PIPE_PIPE] = ACTIONS(724), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LF] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(724), + }, + [2693] = { + [sym__concat] = ACTIONS(726), + [anon_sym_esac] = ACTIONS(728), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_SEMI_SEMI] = ACTIONS(728), + [anon_sym_PIPE_AMP] = ACTIONS(728), + [anon_sym_AMP_AMP] = ACTIONS(728), + [anon_sym_PIPE_PIPE] = ACTIONS(728), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(728), + [anon_sym_LF] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(728), + }, + [2694] = { + [sym__concat] = ACTIONS(730), + [anon_sym_esac] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(732), + [anon_sym_SEMI_SEMI] = ACTIONS(732), + [anon_sym_PIPE_AMP] = ACTIONS(732), + [anon_sym_AMP_AMP] = ACTIONS(732), + [anon_sym_PIPE_PIPE] = ACTIONS(732), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(732), + [anon_sym_LF] = ACTIONS(730), + [anon_sym_AMP] = ACTIONS(732), + }, + [2695] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(6474), + [sym_comment] = ACTIONS(54), + }, + [2696] = { + [sym_concatenation] = STATE(2792), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2792), + [anon_sym_RBRACE] = ACTIONS(6476), + [anon_sym_EQ] = ACTIONS(6478), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6482), + [anon_sym_COLON] = ACTIONS(6478), + [anon_sym_COLON_QMARK] = ACTIONS(6478), + [anon_sym_COLON_DASH] = ACTIONS(6478), + [anon_sym_PERCENT] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2697] = { + [sym_subscript] = STATE(2796), + [sym_variable_name] = ACTIONS(6484), + [anon_sym_DOLLAR] = ACTIONS(6486), + [anon_sym_DASH] = ACTIONS(6486), + [sym_comment] = ACTIONS(54), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6488), + [anon_sym_STAR] = ACTIONS(6486), + [anon_sym_AT] = ACTIONS(6486), + [anon_sym_QMARK] = ACTIONS(6486), + [anon_sym_0] = ACTIONS(6490), + [anon_sym__] = ACTIONS(6490), + }, + [2698] = { + [sym_concatenation] = STATE(2799), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2799), + [anon_sym_RBRACE] = ACTIONS(6492), + [anon_sym_EQ] = ACTIONS(6494), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6496), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6498), + [anon_sym_COLON] = ACTIONS(6494), + [anon_sym_COLON_QMARK] = ACTIONS(6494), + [anon_sym_COLON_DASH] = ACTIONS(6494), + [anon_sym_PERCENT] = ACTIONS(6494), + [anon_sym_DASH] = ACTIONS(6494), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2699] = { + [sym_concatenation] = STATE(2802), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2802), + [anon_sym_RBRACE] = ACTIONS(6500), + [anon_sym_EQ] = ACTIONS(6502), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6504), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6506), + [anon_sym_COLON] = ACTIONS(6502), + [anon_sym_COLON_QMARK] = ACTIONS(6502), + [anon_sym_COLON_DASH] = ACTIONS(6502), + [anon_sym_PERCENT] = ACTIONS(6502), + [anon_sym_DASH] = ACTIONS(6502), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2700] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(6508), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [2701] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(6508), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [2702] = { + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(6508), + [sym_comment] = ACTIONS(54), + }, + [2703] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_PIPE_AMP] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(6508), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [2704] = { + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(6510), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [sym_comment] = ACTIONS(54), + }, + [2705] = { + [sym_file_descriptor] = ACTIONS(350), + [sym_variable_name] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(6510), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(870), + [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(350), + [anon_sym_AMP_GT] = ACTIONS(352), + [anon_sym_AMP_GT_GT] = ACTIONS(350), + [anon_sym_LT_AMP] = ACTIONS(350), + [anon_sym_GT_AMP] = ACTIONS(350), + [sym__special_characters] = ACTIONS(350), + [anon_sym_DQUOTE] = ACTIONS(350), + [anon_sym_DOLLAR] = ACTIONS(352), + [sym_raw_string] = ACTIONS(350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(350), + [anon_sym_BQUOTE] = ACTIONS(350), + [anon_sym_LT_LPAREN] = ACTIONS(350), + [anon_sym_GT_LPAREN] = ACTIONS(350), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(350), + }, + [2706] = { + [sym_variable_name] = ACTIONS(3258), + [anon_sym_esac] = ACTIONS(3260), + [anon_sym_PIPE] = ACTIONS(3260), + [anon_sym_SEMI_SEMI] = ACTIONS(3260), + [anon_sym_PIPE_AMP] = ACTIONS(3260), + [anon_sym_AMP_AMP] = ACTIONS(3260), + [anon_sym_PIPE_PIPE] = ACTIONS(3260), + [sym__special_characters] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [anon_sym_DOLLAR] = ACTIONS(3260), + [sym_raw_string] = ACTIONS(3260), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3260), + [anon_sym_BQUOTE] = ACTIONS(3260), + [anon_sym_LT_LPAREN] = ACTIONS(3260), + [anon_sym_GT_LPAREN] = ACTIONS(3260), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3260), + [sym_word] = ACTIONS(3260), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_LF] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3260), + }, + [2707] = { + [sym__concat] = ACTIONS(3740), + [sym_variable_name] = ACTIONS(3740), + [anon_sym_esac] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3742), + [anon_sym_SEMI_SEMI] = ACTIONS(3742), + [anon_sym_PIPE_AMP] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [sym__special_characters] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_DOLLAR] = ACTIONS(3742), + [sym_raw_string] = ACTIONS(3742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3742), + [anon_sym_BQUOTE] = ACTIONS(3742), + [anon_sym_LT_LPAREN] = ACTIONS(3742), + [anon_sym_GT_LPAREN] = ACTIONS(3742), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3742), + [sym_word] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_LF] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3742), + }, + [2708] = { + [sym__concat] = ACTIONS(3746), + [sym_variable_name] = ACTIONS(3746), + [anon_sym_esac] = ACTIONS(3748), + [anon_sym_PIPE] = ACTIONS(3748), + [anon_sym_SEMI_SEMI] = ACTIONS(3748), + [anon_sym_PIPE_AMP] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_PIPE_PIPE] = ACTIONS(3748), + [sym__special_characters] = ACTIONS(3748), + [anon_sym_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3748), + [sym_raw_string] = ACTIONS(3748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3748), + [anon_sym_BQUOTE] = ACTIONS(3748), + [anon_sym_LT_LPAREN] = ACTIONS(3748), + [anon_sym_GT_LPAREN] = ACTIONS(3748), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3748), + [sym_word] = ACTIONS(3748), + [anon_sym_SEMI] = ACTIONS(3748), + [anon_sym_LF] = ACTIONS(3746), + [anon_sym_AMP] = ACTIONS(3748), + }, + [2709] = { + [sym__concat] = ACTIONS(3831), + [sym_variable_name] = ACTIONS(3831), + [anon_sym_esac] = ACTIONS(3833), + [anon_sym_PIPE] = ACTIONS(3833), + [anon_sym_SEMI_SEMI] = ACTIONS(3833), + [anon_sym_PIPE_AMP] = ACTIONS(3833), + [anon_sym_AMP_AMP] = ACTIONS(3833), + [anon_sym_PIPE_PIPE] = ACTIONS(3833), + [sym__special_characters] = ACTIONS(3833), + [anon_sym_DQUOTE] = ACTIONS(3833), + [anon_sym_DOLLAR] = ACTIONS(3833), + [sym_raw_string] = ACTIONS(3833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3833), + [anon_sym_BQUOTE] = ACTIONS(3833), + [anon_sym_LT_LPAREN] = ACTIONS(3833), + [anon_sym_GT_LPAREN] = ACTIONS(3833), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3833), + [sym_word] = ACTIONS(3833), + [anon_sym_SEMI] = ACTIONS(3833), + [anon_sym_LF] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3833), + }, + [2710] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6512), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2711] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6514), + [sym_comment] = ACTIONS(54), + }, + [2712] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6516), + [sym_comment] = ACTIONS(54), + }, + [2713] = { + [anon_sym_RBRACE] = ACTIONS(6516), + [sym_comment] = ACTIONS(54), + }, + [2714] = { + [sym_concatenation] = STATE(2809), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2809), + [anon_sym_RBRACE] = ACTIONS(6518), + [anon_sym_EQ] = ACTIONS(6520), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6522), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6520), + [anon_sym_COLON_QMARK] = ACTIONS(6520), + [anon_sym_COLON_DASH] = ACTIONS(6520), + [anon_sym_PERCENT] = ACTIONS(6520), + [anon_sym_DASH] = ACTIONS(6520), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2715] = { + [sym__concat] = ACTIONS(3847), + [sym_variable_name] = ACTIONS(3847), + [anon_sym_esac] = ACTIONS(3849), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_SEMI_SEMI] = ACTIONS(3849), + [anon_sym_PIPE_AMP] = ACTIONS(3849), + [anon_sym_AMP_AMP] = ACTIONS(3849), + [anon_sym_PIPE_PIPE] = ACTIONS(3849), + [sym__special_characters] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3849), + [sym_raw_string] = ACTIONS(3849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3849), + [anon_sym_BQUOTE] = ACTIONS(3849), + [anon_sym_LT_LPAREN] = ACTIONS(3849), + [anon_sym_GT_LPAREN] = ACTIONS(3849), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3849), + [sym_word] = ACTIONS(3849), + [anon_sym_SEMI] = ACTIONS(3849), + [anon_sym_LF] = ACTIONS(3847), + [anon_sym_AMP] = ACTIONS(3849), + }, + [2716] = { + [sym_concatenation] = STATE(2811), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2811), + [anon_sym_RBRACE] = ACTIONS(6524), + [anon_sym_EQ] = ACTIONS(6526), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6528), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6526), + [anon_sym_COLON_QMARK] = ACTIONS(6526), + [anon_sym_COLON_DASH] = ACTIONS(6526), + [anon_sym_PERCENT] = ACTIONS(6526), + [anon_sym_DASH] = ACTIONS(6526), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2717] = { + [sym__concat] = ACTIONS(3857), + [sym_variable_name] = ACTIONS(3857), + [anon_sym_esac] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3859), + [anon_sym_SEMI_SEMI] = ACTIONS(3859), + [anon_sym_PIPE_AMP] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [sym__special_characters] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_DOLLAR] = ACTIONS(3859), + [sym_raw_string] = ACTIONS(3859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3859), + [anon_sym_BQUOTE] = ACTIONS(3859), + [anon_sym_LT_LPAREN] = ACTIONS(3859), + [anon_sym_GT_LPAREN] = ACTIONS(3859), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3859), + [sym_word] = ACTIONS(3859), + [anon_sym_SEMI] = ACTIONS(3859), + [anon_sym_LF] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(3859), + }, + [2718] = { + [sym_concatenation] = STATE(2813), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2813), + [anon_sym_RBRACE] = ACTIONS(6530), + [anon_sym_EQ] = ACTIONS(6532), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6534), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6532), + [anon_sym_COLON_QMARK] = ACTIONS(6532), + [anon_sym_COLON_DASH] = ACTIONS(6532), + [anon_sym_PERCENT] = ACTIONS(6532), + [anon_sym_DASH] = ACTIONS(6532), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2719] = { + [sym__concat] = ACTIONS(3867), + [sym_variable_name] = ACTIONS(3867), + [anon_sym_esac] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3869), + [anon_sym_SEMI_SEMI] = ACTIONS(3869), + [anon_sym_PIPE_AMP] = ACTIONS(3869), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [sym__special_characters] = ACTIONS(3869), + [anon_sym_DQUOTE] = ACTIONS(3869), + [anon_sym_DOLLAR] = ACTIONS(3869), + [sym_raw_string] = ACTIONS(3869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3869), + [anon_sym_BQUOTE] = ACTIONS(3869), + [anon_sym_LT_LPAREN] = ACTIONS(3869), + [anon_sym_GT_LPAREN] = ACTIONS(3869), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3869), + [sym_word] = ACTIONS(3869), + [anon_sym_SEMI] = ACTIONS(3869), + [anon_sym_LF] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3869), + }, + [2720] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6536), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2721] = { + [sym__concat] = ACTIONS(3873), + [sym_variable_name] = ACTIONS(3873), + [anon_sym_esac] = ACTIONS(3875), + [anon_sym_PIPE] = ACTIONS(3875), + [anon_sym_SEMI_SEMI] = ACTIONS(3875), + [anon_sym_PIPE_AMP] = ACTIONS(3875), + [anon_sym_AMP_AMP] = ACTIONS(3875), + [anon_sym_PIPE_PIPE] = ACTIONS(3875), + [sym__special_characters] = ACTIONS(3875), + [anon_sym_DQUOTE] = ACTIONS(3875), + [anon_sym_DOLLAR] = ACTIONS(3875), + [sym_raw_string] = ACTIONS(3875), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3875), + [anon_sym_BQUOTE] = ACTIONS(3875), + [anon_sym_LT_LPAREN] = ACTIONS(3875), + [anon_sym_GT_LPAREN] = ACTIONS(3875), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3875), + [sym_word] = ACTIONS(3875), + [anon_sym_SEMI] = ACTIONS(3875), + [anon_sym_LF] = ACTIONS(3873), + [anon_sym_AMP] = ACTIONS(3875), + }, + [2722] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6538), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2723] = { + [sym__concat] = ACTIONS(3740), + [anon_sym_esac] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3742), + [anon_sym_SEMI_SEMI] = ACTIONS(3742), + [anon_sym_PIPE_AMP] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [sym__special_characters] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_DOLLAR] = ACTIONS(3742), + [sym_raw_string] = ACTIONS(3742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3742), + [anon_sym_BQUOTE] = ACTIONS(3742), + [anon_sym_LT_LPAREN] = ACTIONS(3742), + [anon_sym_GT_LPAREN] = ACTIONS(3742), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3742), + [sym_word] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_LF] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3742), + }, + [2724] = { + [sym__concat] = ACTIONS(3746), + [anon_sym_esac] = ACTIONS(3748), + [anon_sym_PIPE] = ACTIONS(3748), + [anon_sym_SEMI_SEMI] = ACTIONS(3748), + [anon_sym_PIPE_AMP] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_PIPE_PIPE] = ACTIONS(3748), + [sym__special_characters] = ACTIONS(3748), + [anon_sym_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3748), + [sym_raw_string] = ACTIONS(3748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3748), + [anon_sym_BQUOTE] = ACTIONS(3748), + [anon_sym_LT_LPAREN] = ACTIONS(3748), + [anon_sym_GT_LPAREN] = ACTIONS(3748), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3748), + [sym_word] = ACTIONS(3748), + [anon_sym_SEMI] = ACTIONS(3748), + [anon_sym_LF] = ACTIONS(3746), + [anon_sym_AMP] = ACTIONS(3748), + }, + [2725] = { + [sym__concat] = ACTIONS(3831), + [anon_sym_esac] = ACTIONS(3833), + [anon_sym_PIPE] = ACTIONS(3833), + [anon_sym_SEMI_SEMI] = ACTIONS(3833), + [anon_sym_PIPE_AMP] = ACTIONS(3833), + [anon_sym_AMP_AMP] = ACTIONS(3833), + [anon_sym_PIPE_PIPE] = ACTIONS(3833), + [sym__special_characters] = ACTIONS(3833), + [anon_sym_DQUOTE] = ACTIONS(3833), + [anon_sym_DOLLAR] = ACTIONS(3833), + [sym_raw_string] = ACTIONS(3833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3833), + [anon_sym_BQUOTE] = ACTIONS(3833), + [anon_sym_LT_LPAREN] = ACTIONS(3833), + [anon_sym_GT_LPAREN] = ACTIONS(3833), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3833), + [sym_word] = ACTIONS(3833), + [anon_sym_SEMI] = ACTIONS(3833), + [anon_sym_LF] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3833), + }, + [2726] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6540), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2727] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6542), + [sym_comment] = ACTIONS(54), + }, + [2728] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6544), + [sym_comment] = ACTIONS(54), + }, + [2729] = { + [anon_sym_RBRACE] = ACTIONS(6544), + [sym_comment] = ACTIONS(54), + }, + [2730] = { + [sym_concatenation] = STATE(2820), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2820), + [anon_sym_RBRACE] = ACTIONS(6546), + [anon_sym_EQ] = ACTIONS(6548), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6550), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6548), + [anon_sym_COLON_QMARK] = ACTIONS(6548), + [anon_sym_COLON_DASH] = ACTIONS(6548), + [anon_sym_PERCENT] = ACTIONS(6548), + [anon_sym_DASH] = ACTIONS(6548), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2731] = { + [sym__concat] = ACTIONS(3847), + [anon_sym_esac] = ACTIONS(3849), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_SEMI_SEMI] = ACTIONS(3849), + [anon_sym_PIPE_AMP] = ACTIONS(3849), + [anon_sym_AMP_AMP] = ACTIONS(3849), + [anon_sym_PIPE_PIPE] = ACTIONS(3849), + [sym__special_characters] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3849), + [sym_raw_string] = ACTIONS(3849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3849), + [anon_sym_BQUOTE] = ACTIONS(3849), + [anon_sym_LT_LPAREN] = ACTIONS(3849), + [anon_sym_GT_LPAREN] = ACTIONS(3849), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3849), + [sym_word] = ACTIONS(3849), + [anon_sym_SEMI] = ACTIONS(3849), + [anon_sym_LF] = ACTIONS(3847), + [anon_sym_AMP] = ACTIONS(3849), + }, + [2732] = { + [sym_concatenation] = STATE(2822), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2822), + [anon_sym_RBRACE] = ACTIONS(6552), + [anon_sym_EQ] = ACTIONS(6554), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6556), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6554), + [anon_sym_COLON_QMARK] = ACTIONS(6554), + [anon_sym_COLON_DASH] = ACTIONS(6554), + [anon_sym_PERCENT] = ACTIONS(6554), + [anon_sym_DASH] = ACTIONS(6554), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2733] = { + [sym__concat] = ACTIONS(3857), + [anon_sym_esac] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3859), + [anon_sym_SEMI_SEMI] = ACTIONS(3859), + [anon_sym_PIPE_AMP] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [sym__special_characters] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_DOLLAR] = ACTIONS(3859), + [sym_raw_string] = ACTIONS(3859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3859), + [anon_sym_BQUOTE] = ACTIONS(3859), + [anon_sym_LT_LPAREN] = ACTIONS(3859), + [anon_sym_GT_LPAREN] = ACTIONS(3859), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3859), + [sym_word] = ACTIONS(3859), + [anon_sym_SEMI] = ACTIONS(3859), + [anon_sym_LF] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(3859), + }, + [2734] = { + [sym_concatenation] = STATE(2824), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2824), + [anon_sym_RBRACE] = ACTIONS(6558), + [anon_sym_EQ] = ACTIONS(6560), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6562), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6560), + [anon_sym_COLON_QMARK] = ACTIONS(6560), + [anon_sym_COLON_DASH] = ACTIONS(6560), + [anon_sym_PERCENT] = ACTIONS(6560), + [anon_sym_DASH] = ACTIONS(6560), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2735] = { + [sym__concat] = ACTIONS(3867), + [anon_sym_esac] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3869), + [anon_sym_SEMI_SEMI] = ACTIONS(3869), + [anon_sym_PIPE_AMP] = ACTIONS(3869), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [sym__special_characters] = ACTIONS(3869), + [anon_sym_DQUOTE] = ACTIONS(3869), + [anon_sym_DOLLAR] = ACTIONS(3869), + [sym_raw_string] = ACTIONS(3869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3869), + [anon_sym_BQUOTE] = ACTIONS(3869), + [anon_sym_LT_LPAREN] = ACTIONS(3869), + [anon_sym_GT_LPAREN] = ACTIONS(3869), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3869), + [sym_word] = ACTIONS(3869), + [anon_sym_SEMI] = ACTIONS(3869), + [anon_sym_LF] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3869), + }, + [2736] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6564), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2737] = { + [sym__concat] = ACTIONS(3873), + [anon_sym_esac] = ACTIONS(3875), + [anon_sym_PIPE] = ACTIONS(3875), + [anon_sym_SEMI_SEMI] = ACTIONS(3875), + [anon_sym_PIPE_AMP] = ACTIONS(3875), + [anon_sym_AMP_AMP] = ACTIONS(3875), + [anon_sym_PIPE_PIPE] = ACTIONS(3875), + [sym__special_characters] = ACTIONS(3875), + [anon_sym_DQUOTE] = ACTIONS(3875), + [anon_sym_DOLLAR] = ACTIONS(3875), + [sym_raw_string] = ACTIONS(3875), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3875), + [anon_sym_BQUOTE] = ACTIONS(3875), + [anon_sym_LT_LPAREN] = ACTIONS(3875), + [anon_sym_GT_LPAREN] = ACTIONS(3875), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3875), + [sym_word] = ACTIONS(3875), + [anon_sym_SEMI] = ACTIONS(3875), + [anon_sym_LF] = ACTIONS(3873), + [anon_sym_AMP] = ACTIONS(3875), + }, + [2738] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6566), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2739] = { + [sym_file_descriptor] = ACTIONS(4621), + [sym__concat] = ACTIONS(4621), + [anon_sym_esac] = ACTIONS(4623), + [anon_sym_PIPE] = ACTIONS(4623), + [anon_sym_SEMI_SEMI] = ACTIONS(4623), + [anon_sym_PIPE_AMP] = ACTIONS(4623), + [anon_sym_AMP_AMP] = ACTIONS(4623), + [anon_sym_PIPE_PIPE] = ACTIONS(4623), + [anon_sym_EQ_TILDE] = ACTIONS(4623), + [anon_sym_EQ_EQ] = ACTIONS(4623), + [anon_sym_LT] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_GT_GT] = ACTIONS(4623), + [anon_sym_AMP_GT] = ACTIONS(4623), + [anon_sym_AMP_GT_GT] = ACTIONS(4623), + [anon_sym_LT_AMP] = ACTIONS(4623), + [anon_sym_GT_AMP] = ACTIONS(4623), + [anon_sym_LT_LT] = ACTIONS(4623), + [anon_sym_LT_LT_DASH] = ACTIONS(4623), + [anon_sym_LT_LT_LT] = ACTIONS(4623), + [sym__special_characters] = ACTIONS(4623), + [anon_sym_DQUOTE] = ACTIONS(4623), + [anon_sym_DOLLAR] = ACTIONS(4623), + [sym_raw_string] = ACTIONS(4623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4623), + [anon_sym_BQUOTE] = ACTIONS(4623), + [anon_sym_LT_LPAREN] = ACTIONS(4623), + [anon_sym_GT_LPAREN] = ACTIONS(4623), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_LF] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4623), + }, + [2740] = { + [sym_file_descriptor] = ACTIONS(4625), + [sym__concat] = ACTIONS(4625), + [anon_sym_esac] = ACTIONS(4627), + [anon_sym_PIPE] = ACTIONS(4627), + [anon_sym_SEMI_SEMI] = ACTIONS(4627), + [anon_sym_PIPE_AMP] = ACTIONS(4627), + [anon_sym_AMP_AMP] = ACTIONS(4627), + [anon_sym_PIPE_PIPE] = ACTIONS(4627), + [anon_sym_EQ_TILDE] = ACTIONS(4627), + [anon_sym_EQ_EQ] = ACTIONS(4627), + [anon_sym_LT] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4627), + [anon_sym_GT_GT] = ACTIONS(4627), + [anon_sym_AMP_GT] = ACTIONS(4627), + [anon_sym_AMP_GT_GT] = ACTIONS(4627), + [anon_sym_LT_AMP] = ACTIONS(4627), + [anon_sym_GT_AMP] = ACTIONS(4627), + [anon_sym_LT_LT] = ACTIONS(4627), + [anon_sym_LT_LT_DASH] = ACTIONS(4627), + [anon_sym_LT_LT_LT] = ACTIONS(4627), + [sym__special_characters] = ACTIONS(4627), + [anon_sym_DQUOTE] = ACTIONS(4627), + [anon_sym_DOLLAR] = ACTIONS(4627), + [sym_raw_string] = ACTIONS(4627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4627), + [anon_sym_BQUOTE] = ACTIONS(4627), + [anon_sym_LT_LPAREN] = ACTIONS(4627), + [anon_sym_GT_LPAREN] = ACTIONS(4627), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4627), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_LF] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4627), + }, + [2741] = { + [sym_file_descriptor] = ACTIONS(4629), + [sym__concat] = ACTIONS(4629), + [anon_sym_esac] = ACTIONS(4631), + [anon_sym_PIPE] = ACTIONS(4631), + [anon_sym_SEMI_SEMI] = ACTIONS(4631), + [anon_sym_PIPE_AMP] = ACTIONS(4631), + [anon_sym_AMP_AMP] = ACTIONS(4631), + [anon_sym_PIPE_PIPE] = ACTIONS(4631), + [anon_sym_EQ_TILDE] = ACTIONS(4631), + [anon_sym_EQ_EQ] = ACTIONS(4631), + [anon_sym_LT] = ACTIONS(4631), + [anon_sym_GT] = ACTIONS(4631), + [anon_sym_GT_GT] = ACTIONS(4631), + [anon_sym_AMP_GT] = ACTIONS(4631), + [anon_sym_AMP_GT_GT] = ACTIONS(4631), + [anon_sym_LT_AMP] = ACTIONS(4631), + [anon_sym_GT_AMP] = ACTIONS(4631), + [anon_sym_LT_LT] = ACTIONS(4631), + [anon_sym_LT_LT_DASH] = ACTIONS(4631), + [anon_sym_LT_LT_LT] = ACTIONS(4631), + [sym__special_characters] = ACTIONS(4631), + [anon_sym_DQUOTE] = ACTIONS(4631), + [anon_sym_DOLLAR] = ACTIONS(4631), + [sym_raw_string] = ACTIONS(4631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4631), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4631), + [anon_sym_BQUOTE] = ACTIONS(4631), + [anon_sym_LT_LPAREN] = ACTIONS(4631), + [anon_sym_GT_LPAREN] = ACTIONS(4631), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4631), + [anon_sym_SEMI] = ACTIONS(4631), + [anon_sym_LF] = ACTIONS(4629), + [anon_sym_AMP] = ACTIONS(4631), + }, + [2742] = { + [sym_file_descriptor] = ACTIONS(4633), + [sym__concat] = ACTIONS(4633), + [anon_sym_esac] = ACTIONS(4635), + [anon_sym_PIPE] = ACTIONS(4635), + [anon_sym_SEMI_SEMI] = ACTIONS(4635), + [anon_sym_PIPE_AMP] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_EQ_TILDE] = ACTIONS(4635), + [anon_sym_EQ_EQ] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_GT_GT] = ACTIONS(4635), + [anon_sym_AMP_GT] = ACTIONS(4635), + [anon_sym_AMP_GT_GT] = ACTIONS(4635), + [anon_sym_LT_AMP] = ACTIONS(4635), + [anon_sym_GT_AMP] = ACTIONS(4635), + [anon_sym_LT_LT] = ACTIONS(4635), + [anon_sym_LT_LT_DASH] = ACTIONS(4635), + [anon_sym_LT_LT_LT] = ACTIONS(4635), + [sym__special_characters] = ACTIONS(4635), + [anon_sym_DQUOTE] = ACTIONS(4635), + [anon_sym_DOLLAR] = ACTIONS(4635), + [sym_raw_string] = ACTIONS(4635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4635), + [anon_sym_BQUOTE] = ACTIONS(4635), + [anon_sym_LT_LPAREN] = ACTIONS(4635), + [anon_sym_GT_LPAREN] = ACTIONS(4635), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_LF] = ACTIONS(4633), + [anon_sym_AMP] = ACTIONS(4635), + }, + [2743] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6568), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2744] = { + [sym_file_descriptor] = ACTIONS(4639), + [sym__concat] = ACTIONS(4639), + [anon_sym_esac] = ACTIONS(4641), + [anon_sym_PIPE] = ACTIONS(4641), + [anon_sym_SEMI_SEMI] = ACTIONS(4641), + [anon_sym_PIPE_AMP] = ACTIONS(4641), + [anon_sym_AMP_AMP] = ACTIONS(4641), + [anon_sym_PIPE_PIPE] = ACTIONS(4641), + [anon_sym_EQ_TILDE] = ACTIONS(4641), + [anon_sym_EQ_EQ] = ACTIONS(4641), + [anon_sym_LT] = ACTIONS(4641), + [anon_sym_GT] = ACTIONS(4641), + [anon_sym_GT_GT] = ACTIONS(4641), + [anon_sym_AMP_GT] = ACTIONS(4641), + [anon_sym_AMP_GT_GT] = ACTIONS(4641), + [anon_sym_LT_AMP] = ACTIONS(4641), + [anon_sym_GT_AMP] = ACTIONS(4641), + [anon_sym_LT_LT] = ACTIONS(4641), + [anon_sym_LT_LT_DASH] = ACTIONS(4641), + [anon_sym_LT_LT_LT] = ACTIONS(4641), + [sym__special_characters] = ACTIONS(4641), + [anon_sym_DQUOTE] = ACTIONS(4641), + [anon_sym_DOLLAR] = ACTIONS(4641), + [sym_raw_string] = ACTIONS(4641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4641), + [anon_sym_BQUOTE] = ACTIONS(4641), + [anon_sym_LT_LPAREN] = ACTIONS(4641), + [anon_sym_GT_LPAREN] = ACTIONS(4641), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4641), + [anon_sym_SEMI] = ACTIONS(4641), + [anon_sym_LF] = ACTIONS(4639), + [anon_sym_AMP] = ACTIONS(4641), + }, + [2745] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6570), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2746] = { + [sym_file_descriptor] = ACTIONS(4645), + [sym__concat] = ACTIONS(4645), + [anon_sym_esac] = ACTIONS(4647), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_SEMI_SEMI] = ACTIONS(4647), + [anon_sym_PIPE_AMP] = ACTIONS(4647), + [anon_sym_AMP_AMP] = ACTIONS(4647), + [anon_sym_PIPE_PIPE] = ACTIONS(4647), + [anon_sym_EQ_TILDE] = ACTIONS(4647), + [anon_sym_EQ_EQ] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_GT] = ACTIONS(4647), + [anon_sym_AMP_GT] = ACTIONS(4647), + [anon_sym_AMP_GT_GT] = ACTIONS(4647), + [anon_sym_LT_AMP] = ACTIONS(4647), + [anon_sym_GT_AMP] = ACTIONS(4647), + [anon_sym_LT_LT] = ACTIONS(4647), + [anon_sym_LT_LT_DASH] = ACTIONS(4647), + [anon_sym_LT_LT_LT] = ACTIONS(4647), + [sym__special_characters] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4647), + [anon_sym_DOLLAR] = ACTIONS(4647), + [sym_raw_string] = ACTIONS(4647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4647), + [anon_sym_BQUOTE] = ACTIONS(4647), + [anon_sym_LT_LPAREN] = ACTIONS(4647), + [anon_sym_GT_LPAREN] = ACTIONS(4647), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4647), + [anon_sym_LF] = ACTIONS(4645), + [anon_sym_AMP] = ACTIONS(4647), + }, + [2747] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6572), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2748] = { + [sym_file_descriptor] = ACTIONS(4651), + [sym__concat] = ACTIONS(4651), + [anon_sym_esac] = ACTIONS(4653), + [anon_sym_PIPE] = ACTIONS(4653), + [anon_sym_SEMI_SEMI] = ACTIONS(4653), + [anon_sym_PIPE_AMP] = ACTIONS(4653), + [anon_sym_AMP_AMP] = ACTIONS(4653), + [anon_sym_PIPE_PIPE] = ACTIONS(4653), + [anon_sym_EQ_TILDE] = ACTIONS(4653), + [anon_sym_EQ_EQ] = ACTIONS(4653), + [anon_sym_LT] = ACTIONS(4653), + [anon_sym_GT] = ACTIONS(4653), + [anon_sym_GT_GT] = ACTIONS(4653), + [anon_sym_AMP_GT] = ACTIONS(4653), + [anon_sym_AMP_GT_GT] = ACTIONS(4653), + [anon_sym_LT_AMP] = ACTIONS(4653), + [anon_sym_GT_AMP] = ACTIONS(4653), + [anon_sym_LT_LT] = ACTIONS(4653), + [anon_sym_LT_LT_DASH] = ACTIONS(4653), + [anon_sym_LT_LT_LT] = ACTIONS(4653), + [sym__special_characters] = ACTIONS(4653), + [anon_sym_DQUOTE] = ACTIONS(4653), + [anon_sym_DOLLAR] = ACTIONS(4653), + [sym_raw_string] = ACTIONS(4653), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4653), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4653), + [anon_sym_BQUOTE] = ACTIONS(4653), + [anon_sym_LT_LPAREN] = ACTIONS(4653), + [anon_sym_GT_LPAREN] = ACTIONS(4653), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4653), + [anon_sym_SEMI] = ACTIONS(4653), + [anon_sym_LF] = ACTIONS(4651), + [anon_sym_AMP] = ACTIONS(4653), + }, + [2749] = { + [sym_file_descriptor] = ACTIONS(4655), + [sym__concat] = ACTIONS(4655), + [anon_sym_esac] = ACTIONS(4657), + [anon_sym_PIPE] = ACTIONS(4657), + [anon_sym_SEMI_SEMI] = ACTIONS(4657), + [anon_sym_PIPE_AMP] = ACTIONS(4657), + [anon_sym_AMP_AMP] = ACTIONS(4657), + [anon_sym_PIPE_PIPE] = ACTIONS(4657), + [anon_sym_EQ_TILDE] = ACTIONS(4657), + [anon_sym_EQ_EQ] = ACTIONS(4657), + [anon_sym_LT] = ACTIONS(4657), + [anon_sym_GT] = ACTIONS(4657), + [anon_sym_GT_GT] = ACTIONS(4657), + [anon_sym_AMP_GT] = ACTIONS(4657), + [anon_sym_AMP_GT_GT] = ACTIONS(4657), + [anon_sym_LT_AMP] = ACTIONS(4657), + [anon_sym_GT_AMP] = ACTIONS(4657), + [anon_sym_LT_LT] = ACTIONS(4657), + [anon_sym_LT_LT_DASH] = ACTIONS(4657), + [anon_sym_LT_LT_LT] = ACTIONS(4657), + [sym__special_characters] = ACTIONS(4657), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_DOLLAR] = ACTIONS(4657), + [sym_raw_string] = ACTIONS(4657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4657), + [anon_sym_BQUOTE] = ACTIONS(4657), + [anon_sym_LT_LPAREN] = ACTIONS(4657), + [anon_sym_GT_LPAREN] = ACTIONS(4657), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4657), + [anon_sym_SEMI] = ACTIONS(4657), + [anon_sym_LF] = ACTIONS(4655), + [anon_sym_AMP] = ACTIONS(4657), + }, + [2750] = { + [sym_file_descriptor] = ACTIONS(2672), + [sym__concat] = ACTIONS(2672), + [anon_sym_esac] = ACTIONS(2674), + [anon_sym_PIPE] = ACTIONS(2674), + [anon_sym_SEMI_SEMI] = ACTIONS(2674), + [anon_sym_PIPE_AMP] = ACTIONS(2674), + [anon_sym_AMP_AMP] = ACTIONS(2674), + [anon_sym_PIPE_PIPE] = ACTIONS(2674), + [anon_sym_LT] = ACTIONS(2674), + [anon_sym_GT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_AMP_GT] = ACTIONS(2674), + [anon_sym_AMP_GT_GT] = ACTIONS(2674), + [anon_sym_LT_AMP] = ACTIONS(2674), + [anon_sym_GT_AMP] = ACTIONS(2674), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_LT_LT_DASH] = ACTIONS(2674), + [anon_sym_LT_LT_LT] = ACTIONS(2674), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_LF] = ACTIONS(2672), + [anon_sym_AMP] = ACTIONS(2674), + }, + [2751] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6574), + [sym_comment] = ACTIONS(54), + }, + [2752] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6576), + [sym_comment] = ACTIONS(54), + }, + [2753] = { + [anon_sym_RBRACE] = ACTIONS(6576), + [sym_comment] = ACTIONS(54), + }, + [2754] = { + [sym_concatenation] = STATE(2833), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2833), + [anon_sym_RBRACE] = ACTIONS(6578), + [anon_sym_EQ] = ACTIONS(6580), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6582), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6580), + [anon_sym_COLON_QMARK] = ACTIONS(6580), + [anon_sym_COLON_DASH] = ACTIONS(6580), + [anon_sym_PERCENT] = ACTIONS(6580), + [anon_sym_DASH] = ACTIONS(6580), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2755] = { + [sym_file_descriptor] = ACTIONS(2750), + [sym__concat] = ACTIONS(2750), + [anon_sym_esac] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_SEMI_SEMI] = ACTIONS(2752), + [anon_sym_PIPE_AMP] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2752), + [anon_sym_GT] = ACTIONS(2752), + [anon_sym_GT_GT] = ACTIONS(2752), + [anon_sym_AMP_GT] = ACTIONS(2752), + [anon_sym_AMP_GT_GT] = ACTIONS(2752), + [anon_sym_LT_AMP] = ACTIONS(2752), + [anon_sym_GT_AMP] = ACTIONS(2752), + [anon_sym_LT_LT] = ACTIONS(2752), + [anon_sym_LT_LT_DASH] = ACTIONS(2752), + [anon_sym_LT_LT_LT] = ACTIONS(2752), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2752), + }, + [2756] = { + [sym_concatenation] = STATE(2836), + [sym_string] = STATE(2835), + [sym_simple_expansion] = STATE(2835), + [sym_string_expansion] = STATE(2835), + [sym_expansion] = STATE(2835), + [sym_command_substitution] = STATE(2835), + [sym_process_substitution] = STATE(2835), + [anon_sym_RBRACE] = ACTIONS(6576), + [sym__special_characters] = ACTIONS(6584), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(6586), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(6586), + }, + [2757] = { + [sym_file_descriptor] = ACTIONS(2793), + [sym__concat] = ACTIONS(2793), + [anon_sym_esac] = ACTIONS(2795), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_SEMI_SEMI] = ACTIONS(2795), + [anon_sym_PIPE_AMP] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2795), + [anon_sym_GT] = ACTIONS(2795), + [anon_sym_GT_GT] = ACTIONS(2795), + [anon_sym_AMP_GT] = ACTIONS(2795), + [anon_sym_AMP_GT_GT] = ACTIONS(2795), + [anon_sym_LT_AMP] = ACTIONS(2795), + [anon_sym_GT_AMP] = ACTIONS(2795), + [anon_sym_LT_LT] = ACTIONS(2795), + [anon_sym_LT_LT_DASH] = ACTIONS(2795), + [anon_sym_LT_LT_LT] = ACTIONS(2795), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_LF] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2795), + }, + [2758] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6588), + }, + [2759] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6590), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2760] = { + [sym_file_descriptor] = ACTIONS(2801), + [sym__concat] = ACTIONS(2801), + [anon_sym_esac] = ACTIONS(2803), + [anon_sym_PIPE] = ACTIONS(2803), + [anon_sym_SEMI_SEMI] = ACTIONS(2803), + [anon_sym_PIPE_AMP] = ACTIONS(2803), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_PIPE_PIPE] = ACTIONS(2803), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_GT] = ACTIONS(2803), + [anon_sym_GT_GT] = ACTIONS(2803), + [anon_sym_AMP_GT] = ACTIONS(2803), + [anon_sym_AMP_GT_GT] = ACTIONS(2803), + [anon_sym_LT_AMP] = ACTIONS(2803), + [anon_sym_GT_AMP] = ACTIONS(2803), + [anon_sym_LT_LT] = ACTIONS(2803), + [anon_sym_LT_LT_DASH] = ACTIONS(2803), + [anon_sym_LT_LT_LT] = ACTIONS(2803), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_LF] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + }, + [2761] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6592), + }, + [2762] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6594), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2763] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6596), + }, + [2764] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6576), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2765] = { + [sym_concatenation] = STATE(2843), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2843), + [anon_sym_RBRACE] = ACTIONS(6598), + [anon_sym_EQ] = ACTIONS(6600), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6600), + [anon_sym_COLON_QMARK] = ACTIONS(6600), + [anon_sym_COLON_DASH] = ACTIONS(6600), + [anon_sym_PERCENT] = ACTIONS(6600), + [anon_sym_DASH] = ACTIONS(6600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2766] = { + [sym_file_descriptor] = ACTIONS(2817), + [sym__concat] = ACTIONS(2817), + [anon_sym_esac] = ACTIONS(2819), + [anon_sym_PIPE] = ACTIONS(2819), + [anon_sym_SEMI_SEMI] = ACTIONS(2819), + [anon_sym_PIPE_AMP] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_PIPE_PIPE] = ACTIONS(2819), + [anon_sym_LT] = ACTIONS(2819), + [anon_sym_GT] = ACTIONS(2819), + [anon_sym_GT_GT] = ACTIONS(2819), + [anon_sym_AMP_GT] = ACTIONS(2819), + [anon_sym_AMP_GT_GT] = ACTIONS(2819), + [anon_sym_LT_AMP] = ACTIONS(2819), + [anon_sym_GT_AMP] = ACTIONS(2819), + [anon_sym_LT_LT] = ACTIONS(2819), + [anon_sym_LT_LT_DASH] = ACTIONS(2819), + [anon_sym_LT_LT_LT] = ACTIONS(2819), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_LF] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2819), + }, + [2767] = { + [sym_concatenation] = STATE(2845), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2845), + [anon_sym_RBRACE] = ACTIONS(6604), + [anon_sym_EQ] = ACTIONS(6606), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6606), + [anon_sym_COLON_QMARK] = ACTIONS(6606), + [anon_sym_COLON_DASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2768] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(6198), + [anon_sym_DQUOTE] = ACTIONS(6200), + [anon_sym_DOLLAR] = ACTIONS(6198), + [sym_raw_string] = ACTIONS(6200), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6200), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6200), + [anon_sym_BQUOTE] = ACTIONS(6200), + [anon_sym_LT_LPAREN] = ACTIONS(6200), + [anon_sym_GT_LPAREN] = ACTIONS(6200), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(6198), + }, + [2769] = { + [sym_file_descriptor] = ACTIONS(942), + [sym_variable_name] = ACTIONS(942), + [anon_sym_for] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_SEMI_SEMI] = ACTIONS(942), + [anon_sym_function] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_typeset] = ACTIONS(944), + [anon_sym_export] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_local] = ACTIONS(944), + [anon_sym_unset] = ACTIONS(944), + [anon_sym_unsetenv] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_AMP_GT] = ACTIONS(944), + [anon_sym_AMP_GT_GT] = ACTIONS(942), + [anon_sym_LT_AMP] = ACTIONS(942), + [anon_sym_GT_AMP] = ACTIONS(942), + [sym__special_characters] = ACTIONS(6204), + [anon_sym_DQUOTE] = ACTIONS(6206), + [anon_sym_DOLLAR] = ACTIONS(6204), + [sym_raw_string] = ACTIONS(6206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6206), + [anon_sym_BQUOTE] = ACTIONS(6206), + [anon_sym_LT_LPAREN] = ACTIONS(6206), + [anon_sym_GT_LPAREN] = ACTIONS(6206), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(6204), + }, + [2770] = { + [sym_file_descriptor] = ACTIONS(3740), + [sym__concat] = ACTIONS(3740), + [sym_variable_name] = ACTIONS(3740), + [anon_sym_esac] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3742), + [anon_sym_SEMI_SEMI] = ACTIONS(3742), + [anon_sym_PIPE_AMP] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_LT] = ACTIONS(3742), + [anon_sym_GT] = ACTIONS(3742), + [anon_sym_GT_GT] = ACTIONS(3742), + [anon_sym_AMP_GT] = ACTIONS(3742), + [anon_sym_AMP_GT_GT] = ACTIONS(3742), + [anon_sym_LT_AMP] = ACTIONS(3742), + [anon_sym_GT_AMP] = ACTIONS(3742), + [sym__special_characters] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_DOLLAR] = ACTIONS(3742), + [sym_raw_string] = ACTIONS(3742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3742), + [anon_sym_BQUOTE] = ACTIONS(3742), + [anon_sym_LT_LPAREN] = ACTIONS(3742), + [anon_sym_GT_LPAREN] = ACTIONS(3742), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_LF] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3742), + }, + [2771] = { + [sym_file_descriptor] = ACTIONS(3746), + [sym__concat] = ACTIONS(3746), + [sym_variable_name] = ACTIONS(3746), + [anon_sym_esac] = ACTIONS(3748), + [anon_sym_PIPE] = ACTIONS(3748), + [anon_sym_SEMI_SEMI] = ACTIONS(3748), + [anon_sym_PIPE_AMP] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_PIPE_PIPE] = ACTIONS(3748), + [anon_sym_LT] = ACTIONS(3748), + [anon_sym_GT] = ACTIONS(3748), + [anon_sym_GT_GT] = ACTIONS(3748), + [anon_sym_AMP_GT] = ACTIONS(3748), + [anon_sym_AMP_GT_GT] = ACTIONS(3748), + [anon_sym_LT_AMP] = ACTIONS(3748), + [anon_sym_GT_AMP] = ACTIONS(3748), + [sym__special_characters] = ACTIONS(3748), + [anon_sym_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3748), + [sym_raw_string] = ACTIONS(3748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3748), + [anon_sym_BQUOTE] = ACTIONS(3748), + [anon_sym_LT_LPAREN] = ACTIONS(3748), + [anon_sym_GT_LPAREN] = ACTIONS(3748), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3748), + [anon_sym_SEMI] = ACTIONS(3748), + [anon_sym_LF] = ACTIONS(3746), + [anon_sym_AMP] = ACTIONS(3748), + }, + [2772] = { + [sym_file_descriptor] = ACTIONS(3831), + [sym__concat] = ACTIONS(3831), + [sym_variable_name] = ACTIONS(3831), + [anon_sym_esac] = ACTIONS(3833), + [anon_sym_PIPE] = ACTIONS(3833), + [anon_sym_SEMI_SEMI] = ACTIONS(3833), + [anon_sym_PIPE_AMP] = ACTIONS(3833), + [anon_sym_AMP_AMP] = ACTIONS(3833), + [anon_sym_PIPE_PIPE] = ACTIONS(3833), + [anon_sym_LT] = ACTIONS(3833), + [anon_sym_GT] = ACTIONS(3833), + [anon_sym_GT_GT] = ACTIONS(3833), + [anon_sym_AMP_GT] = ACTIONS(3833), + [anon_sym_AMP_GT_GT] = ACTIONS(3833), + [anon_sym_LT_AMP] = ACTIONS(3833), + [anon_sym_GT_AMP] = ACTIONS(3833), + [sym__special_characters] = ACTIONS(3833), + [anon_sym_DQUOTE] = ACTIONS(3833), + [anon_sym_DOLLAR] = ACTIONS(3833), + [sym_raw_string] = ACTIONS(3833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3833), + [anon_sym_BQUOTE] = ACTIONS(3833), + [anon_sym_LT_LPAREN] = ACTIONS(3833), + [anon_sym_GT_LPAREN] = ACTIONS(3833), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3833), + [anon_sym_SEMI] = ACTIONS(3833), + [anon_sym_LF] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3833), + }, + [2773] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6610), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2774] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6612), + [sym_comment] = ACTIONS(54), + }, + [2775] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6614), + [sym_comment] = ACTIONS(54), + }, + [2776] = { + [anon_sym_RBRACE] = ACTIONS(6614), + [sym_comment] = ACTIONS(54), + }, + [2777] = { + [sym_concatenation] = STATE(2850), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2850), + [anon_sym_RBRACE] = ACTIONS(6616), + [anon_sym_EQ] = ACTIONS(6618), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6620), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6618), + [anon_sym_COLON_QMARK] = ACTIONS(6618), + [anon_sym_COLON_DASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6618), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2778] = { + [sym_file_descriptor] = ACTIONS(3847), + [sym__concat] = ACTIONS(3847), + [sym_variable_name] = ACTIONS(3847), + [anon_sym_esac] = ACTIONS(3849), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_SEMI_SEMI] = ACTIONS(3849), + [anon_sym_PIPE_AMP] = ACTIONS(3849), + [anon_sym_AMP_AMP] = ACTIONS(3849), + [anon_sym_PIPE_PIPE] = ACTIONS(3849), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_GT] = ACTIONS(3849), + [anon_sym_GT_GT] = ACTIONS(3849), + [anon_sym_AMP_GT] = ACTIONS(3849), + [anon_sym_AMP_GT_GT] = ACTIONS(3849), + [anon_sym_LT_AMP] = ACTIONS(3849), + [anon_sym_GT_AMP] = ACTIONS(3849), + [sym__special_characters] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3849), + [sym_raw_string] = ACTIONS(3849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3849), + [anon_sym_BQUOTE] = ACTIONS(3849), + [anon_sym_LT_LPAREN] = ACTIONS(3849), + [anon_sym_GT_LPAREN] = ACTIONS(3849), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3849), + [anon_sym_SEMI] = ACTIONS(3849), + [anon_sym_LF] = ACTIONS(3847), + [anon_sym_AMP] = ACTIONS(3849), + }, + [2779] = { + [sym_concatenation] = STATE(2852), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2852), + [anon_sym_RBRACE] = ACTIONS(6622), + [anon_sym_EQ] = ACTIONS(6624), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6626), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6624), + [anon_sym_COLON_QMARK] = ACTIONS(6624), + [anon_sym_COLON_DASH] = ACTIONS(6624), + [anon_sym_PERCENT] = ACTIONS(6624), + [anon_sym_DASH] = ACTIONS(6624), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2780] = { + [sym_file_descriptor] = ACTIONS(3857), + [sym__concat] = ACTIONS(3857), + [sym_variable_name] = ACTIONS(3857), + [anon_sym_esac] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3859), + [anon_sym_SEMI_SEMI] = ACTIONS(3859), + [anon_sym_PIPE_AMP] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_GT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3859), + [anon_sym_AMP_GT] = ACTIONS(3859), + [anon_sym_AMP_GT_GT] = ACTIONS(3859), + [anon_sym_LT_AMP] = ACTIONS(3859), + [anon_sym_GT_AMP] = ACTIONS(3859), + [sym__special_characters] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_DOLLAR] = ACTIONS(3859), + [sym_raw_string] = ACTIONS(3859), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3859), + [anon_sym_BQUOTE] = ACTIONS(3859), + [anon_sym_LT_LPAREN] = ACTIONS(3859), + [anon_sym_GT_LPAREN] = ACTIONS(3859), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3859), + [anon_sym_SEMI] = ACTIONS(3859), + [anon_sym_LF] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(3859), + }, + [2781] = { + [sym_concatenation] = STATE(2854), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2854), + [anon_sym_RBRACE] = ACTIONS(6628), + [anon_sym_EQ] = ACTIONS(6630), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6632), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6630), + [anon_sym_COLON_QMARK] = ACTIONS(6630), + [anon_sym_COLON_DASH] = ACTIONS(6630), + [anon_sym_PERCENT] = ACTIONS(6630), + [anon_sym_DASH] = ACTIONS(6630), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2782] = { + [sym_file_descriptor] = ACTIONS(3867), + [sym__concat] = ACTIONS(3867), + [sym_variable_name] = ACTIONS(3867), + [anon_sym_esac] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3869), + [anon_sym_SEMI_SEMI] = ACTIONS(3869), + [anon_sym_PIPE_AMP] = ACTIONS(3869), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_LT] = ACTIONS(3869), + [anon_sym_GT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3869), + [anon_sym_AMP_GT] = ACTIONS(3869), + [anon_sym_AMP_GT_GT] = ACTIONS(3869), + [anon_sym_LT_AMP] = ACTIONS(3869), + [anon_sym_GT_AMP] = ACTIONS(3869), + [sym__special_characters] = ACTIONS(3869), + [anon_sym_DQUOTE] = ACTIONS(3869), + [anon_sym_DOLLAR] = ACTIONS(3869), + [sym_raw_string] = ACTIONS(3869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3869), + [anon_sym_BQUOTE] = ACTIONS(3869), + [anon_sym_LT_LPAREN] = ACTIONS(3869), + [anon_sym_GT_LPAREN] = ACTIONS(3869), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3869), + [anon_sym_SEMI] = ACTIONS(3869), + [anon_sym_LF] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3869), + }, + [2783] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6634), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2784] = { + [sym_file_descriptor] = ACTIONS(3873), + [sym__concat] = ACTIONS(3873), + [sym_variable_name] = ACTIONS(3873), + [anon_sym_esac] = ACTIONS(3875), + [anon_sym_PIPE] = ACTIONS(3875), + [anon_sym_SEMI_SEMI] = ACTIONS(3875), + [anon_sym_PIPE_AMP] = ACTIONS(3875), + [anon_sym_AMP_AMP] = ACTIONS(3875), + [anon_sym_PIPE_PIPE] = ACTIONS(3875), + [anon_sym_LT] = ACTIONS(3875), + [anon_sym_GT] = ACTIONS(3875), + [anon_sym_GT_GT] = ACTIONS(3875), + [anon_sym_AMP_GT] = ACTIONS(3875), + [anon_sym_AMP_GT_GT] = ACTIONS(3875), + [anon_sym_LT_AMP] = ACTIONS(3875), + [anon_sym_GT_AMP] = ACTIONS(3875), + [sym__special_characters] = ACTIONS(3875), + [anon_sym_DQUOTE] = ACTIONS(3875), + [anon_sym_DOLLAR] = ACTIONS(3875), + [sym_raw_string] = ACTIONS(3875), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3875), + [anon_sym_BQUOTE] = ACTIONS(3875), + [anon_sym_LT_LPAREN] = ACTIONS(3875), + [anon_sym_GT_LPAREN] = ACTIONS(3875), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(3875), + [anon_sym_SEMI] = ACTIONS(3875), + [anon_sym_LF] = ACTIONS(3873), + [anon_sym_AMP] = ACTIONS(3875), + }, + [2785] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6636), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2786] = { + [sym__concat] = ACTIONS(1634), + [anon_sym_esac] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [2787] = { + [aux_sym_concatenation_repeat1] = STATE(2787), + [sym__concat] = ACTIONS(6638), + [anon_sym_esac] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LF] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1636), + }, + [2788] = { + [sym__concat] = ACTIONS(1683), + [anon_sym_esac] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_SEMI_SEMI] = ACTIONS(1685), + [anon_sym_PIPE_AMP] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_LF] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + }, + [2789] = { + [sym_concatenation] = STATE(2860), + [sym_string] = STATE(2859), + [sym_simple_expansion] = STATE(2859), + [sym_string_expansion] = STATE(2859), + [sym_expansion] = STATE(2859), + [sym_command_substitution] = STATE(2859), + [sym_process_substitution] = STATE(2859), + [anon_sym_RBRACE] = ACTIONS(6641), + [sym__special_characters] = ACTIONS(6643), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(6645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(6645), + }, + [2790] = { + [sym__concat] = ACTIONS(1724), + [anon_sym_esac] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LF] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1726), + }, + [2791] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6647), + }, + [2792] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6649), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2793] = { + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(6651), + [sym_comment] = ACTIONS(54), + }, + [2794] = { + [sym_concatenation] = STATE(2866), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2866), + [anon_sym_RBRACE] = ACTIONS(6653), + [anon_sym_EQ] = ACTIONS(6655), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6659), + [anon_sym_COLON] = ACTIONS(6655), + [anon_sym_COLON_QMARK] = ACTIONS(6655), + [anon_sym_COLON_DASH] = ACTIONS(6655), + [anon_sym_PERCENT] = ACTIONS(6655), + [anon_sym_DASH] = ACTIONS(6655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2795] = { + [sym_concatenation] = STATE(2869), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2869), + [anon_sym_RBRACE] = ACTIONS(6661), + [anon_sym_EQ] = ACTIONS(6663), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6667), + [anon_sym_COLON] = ACTIONS(6663), + [anon_sym_COLON_QMARK] = ACTIONS(6663), + [anon_sym_COLON_DASH] = ACTIONS(6663), + [anon_sym_PERCENT] = ACTIONS(6663), + [anon_sym_DASH] = ACTIONS(6663), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2796] = { + [sym_concatenation] = STATE(2871), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2871), + [anon_sym_RBRACE] = ACTIONS(6641), + [anon_sym_EQ] = ACTIONS(6669), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [aux_sym_SLASH] = ACTIONS(6673), + [anon_sym_COLON] = ACTIONS(6669), + [anon_sym_COLON_QMARK] = ACTIONS(6669), + [anon_sym_COLON_DASH] = ACTIONS(6669), + [anon_sym_PERCENT] = ACTIONS(6669), + [anon_sym_DASH] = ACTIONS(6669), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2797] = { + [sym__concat] = ACTIONS(1790), + [anon_sym_esac] = ACTIONS(1792), + [anon_sym_PIPE] = ACTIONS(1792), + [anon_sym_SEMI_SEMI] = ACTIONS(1792), + [anon_sym_PIPE_AMP] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_LF] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1792), + }, + [2798] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6675), + }, + [2799] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6677), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2800] = { + [sym__concat] = ACTIONS(1798), + [anon_sym_esac] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_SEMI_SEMI] = ACTIONS(1800), + [anon_sym_PIPE_AMP] = ACTIONS(1800), + [anon_sym_AMP_AMP] = ACTIONS(1800), + [anon_sym_PIPE_PIPE] = ACTIONS(1800), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_LF] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1800), + }, + [2801] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6679), + }, + [2802] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6641), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2803] = { + [sym__concat] = ACTIONS(1936), + [anon_sym_esac] = ACTIONS(1938), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_SEMI_SEMI] = ACTIONS(1938), + [anon_sym_PIPE_AMP] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_PIPE_PIPE] = ACTIONS(1938), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1938), + }, + [2804] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_esac] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2002), + }, + [2805] = { + [sym__concat] = ACTIONS(4621), + [sym_variable_name] = ACTIONS(4621), + [anon_sym_esac] = ACTIONS(4623), + [anon_sym_PIPE] = ACTIONS(4623), + [anon_sym_SEMI_SEMI] = ACTIONS(4623), + [anon_sym_PIPE_AMP] = ACTIONS(4623), + [anon_sym_AMP_AMP] = ACTIONS(4623), + [anon_sym_PIPE_PIPE] = ACTIONS(4623), + [sym__special_characters] = ACTIONS(4623), + [anon_sym_DQUOTE] = ACTIONS(4623), + [anon_sym_DOLLAR] = ACTIONS(4623), + [sym_raw_string] = ACTIONS(4623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4623), + [anon_sym_BQUOTE] = ACTIONS(4623), + [anon_sym_LT_LPAREN] = ACTIONS(4623), + [anon_sym_GT_LPAREN] = ACTIONS(4623), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4623), + [sym_word] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_LF] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4623), + }, + [2806] = { + [sym__concat] = ACTIONS(4625), + [sym_variable_name] = ACTIONS(4625), + [anon_sym_esac] = ACTIONS(4627), + [anon_sym_PIPE] = ACTIONS(4627), + [anon_sym_SEMI_SEMI] = ACTIONS(4627), + [anon_sym_PIPE_AMP] = ACTIONS(4627), + [anon_sym_AMP_AMP] = ACTIONS(4627), + [anon_sym_PIPE_PIPE] = ACTIONS(4627), + [sym__special_characters] = ACTIONS(4627), + [anon_sym_DQUOTE] = ACTIONS(4627), + [anon_sym_DOLLAR] = ACTIONS(4627), + [sym_raw_string] = ACTIONS(4627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4627), + [anon_sym_BQUOTE] = ACTIONS(4627), + [anon_sym_LT_LPAREN] = ACTIONS(4627), + [anon_sym_GT_LPAREN] = ACTIONS(4627), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4627), + [sym_word] = ACTIONS(4627), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_LF] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4627), + }, + [2807] = { + [sym__concat] = ACTIONS(4629), + [sym_variable_name] = ACTIONS(4629), + [anon_sym_esac] = ACTIONS(4631), + [anon_sym_PIPE] = ACTIONS(4631), + [anon_sym_SEMI_SEMI] = ACTIONS(4631), + [anon_sym_PIPE_AMP] = ACTIONS(4631), + [anon_sym_AMP_AMP] = ACTIONS(4631), + [anon_sym_PIPE_PIPE] = ACTIONS(4631), + [sym__special_characters] = ACTIONS(4631), + [anon_sym_DQUOTE] = ACTIONS(4631), + [anon_sym_DOLLAR] = ACTIONS(4631), + [sym_raw_string] = ACTIONS(4631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4631), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4631), + [anon_sym_BQUOTE] = ACTIONS(4631), + [anon_sym_LT_LPAREN] = ACTIONS(4631), + [anon_sym_GT_LPAREN] = ACTIONS(4631), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4631), + [sym_word] = ACTIONS(4631), + [anon_sym_SEMI] = ACTIONS(4631), + [anon_sym_LF] = ACTIONS(4629), + [anon_sym_AMP] = ACTIONS(4631), + }, + [2808] = { + [sym__concat] = ACTIONS(4633), + [sym_variable_name] = ACTIONS(4633), + [anon_sym_esac] = ACTIONS(4635), + [anon_sym_PIPE] = ACTIONS(4635), + [anon_sym_SEMI_SEMI] = ACTIONS(4635), + [anon_sym_PIPE_AMP] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [sym__special_characters] = ACTIONS(4635), + [anon_sym_DQUOTE] = ACTIONS(4635), + [anon_sym_DOLLAR] = ACTIONS(4635), + [sym_raw_string] = ACTIONS(4635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4635), + [anon_sym_BQUOTE] = ACTIONS(4635), + [anon_sym_LT_LPAREN] = ACTIONS(4635), + [anon_sym_GT_LPAREN] = ACTIONS(4635), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4635), + [sym_word] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_LF] = ACTIONS(4633), + [anon_sym_AMP] = ACTIONS(4635), + }, + [2809] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6681), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2810] = { + [sym__concat] = ACTIONS(4639), + [sym_variable_name] = ACTIONS(4639), + [anon_sym_esac] = ACTIONS(4641), + [anon_sym_PIPE] = ACTIONS(4641), + [anon_sym_SEMI_SEMI] = ACTIONS(4641), + [anon_sym_PIPE_AMP] = ACTIONS(4641), + [anon_sym_AMP_AMP] = ACTIONS(4641), + [anon_sym_PIPE_PIPE] = ACTIONS(4641), + [sym__special_characters] = ACTIONS(4641), + [anon_sym_DQUOTE] = ACTIONS(4641), + [anon_sym_DOLLAR] = ACTIONS(4641), + [sym_raw_string] = ACTIONS(4641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4641), + [anon_sym_BQUOTE] = ACTIONS(4641), + [anon_sym_LT_LPAREN] = ACTIONS(4641), + [anon_sym_GT_LPAREN] = ACTIONS(4641), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4641), + [sym_word] = ACTIONS(4641), + [anon_sym_SEMI] = ACTIONS(4641), + [anon_sym_LF] = ACTIONS(4639), + [anon_sym_AMP] = ACTIONS(4641), + }, + [2811] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6683), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2812] = { + [sym__concat] = ACTIONS(4645), + [sym_variable_name] = ACTIONS(4645), + [anon_sym_esac] = ACTIONS(4647), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_SEMI_SEMI] = ACTIONS(4647), + [anon_sym_PIPE_AMP] = ACTIONS(4647), + [anon_sym_AMP_AMP] = ACTIONS(4647), + [anon_sym_PIPE_PIPE] = ACTIONS(4647), + [sym__special_characters] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4647), + [anon_sym_DOLLAR] = ACTIONS(4647), + [sym_raw_string] = ACTIONS(4647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4647), + [anon_sym_BQUOTE] = ACTIONS(4647), + [anon_sym_LT_LPAREN] = ACTIONS(4647), + [anon_sym_GT_LPAREN] = ACTIONS(4647), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4647), + [sym_word] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4647), + [anon_sym_LF] = ACTIONS(4645), + [anon_sym_AMP] = ACTIONS(4647), + }, + [2813] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6685), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2814] = { + [sym__concat] = ACTIONS(4651), + [sym_variable_name] = ACTIONS(4651), + [anon_sym_esac] = ACTIONS(4653), + [anon_sym_PIPE] = ACTIONS(4653), + [anon_sym_SEMI_SEMI] = ACTIONS(4653), + [anon_sym_PIPE_AMP] = ACTIONS(4653), + [anon_sym_AMP_AMP] = ACTIONS(4653), + [anon_sym_PIPE_PIPE] = ACTIONS(4653), + [sym__special_characters] = ACTIONS(4653), + [anon_sym_DQUOTE] = ACTIONS(4653), + [anon_sym_DOLLAR] = ACTIONS(4653), + [sym_raw_string] = ACTIONS(4653), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4653), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4653), + [anon_sym_BQUOTE] = ACTIONS(4653), + [anon_sym_LT_LPAREN] = ACTIONS(4653), + [anon_sym_GT_LPAREN] = ACTIONS(4653), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4653), + [sym_word] = ACTIONS(4653), + [anon_sym_SEMI] = ACTIONS(4653), + [anon_sym_LF] = ACTIONS(4651), + [anon_sym_AMP] = ACTIONS(4653), + }, + [2815] = { + [sym__concat] = ACTIONS(4655), + [sym_variable_name] = ACTIONS(4655), + [anon_sym_esac] = ACTIONS(4657), + [anon_sym_PIPE] = ACTIONS(4657), + [anon_sym_SEMI_SEMI] = ACTIONS(4657), + [anon_sym_PIPE_AMP] = ACTIONS(4657), + [anon_sym_AMP_AMP] = ACTIONS(4657), + [anon_sym_PIPE_PIPE] = ACTIONS(4657), + [sym__special_characters] = ACTIONS(4657), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_DOLLAR] = ACTIONS(4657), + [sym_raw_string] = ACTIONS(4657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4657), + [anon_sym_BQUOTE] = ACTIONS(4657), + [anon_sym_LT_LPAREN] = ACTIONS(4657), + [anon_sym_GT_LPAREN] = ACTIONS(4657), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4657), + [sym_word] = ACTIONS(4657), + [anon_sym_SEMI] = ACTIONS(4657), + [anon_sym_LF] = ACTIONS(4655), + [anon_sym_AMP] = ACTIONS(4657), + }, + [2816] = { + [sym__concat] = ACTIONS(4621), + [anon_sym_esac] = ACTIONS(4623), + [anon_sym_PIPE] = ACTIONS(4623), + [anon_sym_SEMI_SEMI] = ACTIONS(4623), + [anon_sym_PIPE_AMP] = ACTIONS(4623), + [anon_sym_AMP_AMP] = ACTIONS(4623), + [anon_sym_PIPE_PIPE] = ACTIONS(4623), + [sym__special_characters] = ACTIONS(4623), + [anon_sym_DQUOTE] = ACTIONS(4623), + [anon_sym_DOLLAR] = ACTIONS(4623), + [sym_raw_string] = ACTIONS(4623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4623), + [anon_sym_BQUOTE] = ACTIONS(4623), + [anon_sym_LT_LPAREN] = ACTIONS(4623), + [anon_sym_GT_LPAREN] = ACTIONS(4623), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4623), + [sym_word] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_LF] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4623), + }, + [2817] = { + [sym__concat] = ACTIONS(4625), + [anon_sym_esac] = ACTIONS(4627), + [anon_sym_PIPE] = ACTIONS(4627), + [anon_sym_SEMI_SEMI] = ACTIONS(4627), + [anon_sym_PIPE_AMP] = ACTIONS(4627), + [anon_sym_AMP_AMP] = ACTIONS(4627), + [anon_sym_PIPE_PIPE] = ACTIONS(4627), + [sym__special_characters] = ACTIONS(4627), + [anon_sym_DQUOTE] = ACTIONS(4627), + [anon_sym_DOLLAR] = ACTIONS(4627), + [sym_raw_string] = ACTIONS(4627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4627), + [anon_sym_BQUOTE] = ACTIONS(4627), + [anon_sym_LT_LPAREN] = ACTIONS(4627), + [anon_sym_GT_LPAREN] = ACTIONS(4627), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4627), + [sym_word] = ACTIONS(4627), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_LF] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4627), + }, + [2818] = { + [sym__concat] = ACTIONS(4629), + [anon_sym_esac] = ACTIONS(4631), + [anon_sym_PIPE] = ACTIONS(4631), + [anon_sym_SEMI_SEMI] = ACTIONS(4631), + [anon_sym_PIPE_AMP] = ACTIONS(4631), + [anon_sym_AMP_AMP] = ACTIONS(4631), + [anon_sym_PIPE_PIPE] = ACTIONS(4631), + [sym__special_characters] = ACTIONS(4631), + [anon_sym_DQUOTE] = ACTIONS(4631), + [anon_sym_DOLLAR] = ACTIONS(4631), + [sym_raw_string] = ACTIONS(4631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4631), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4631), + [anon_sym_BQUOTE] = ACTIONS(4631), + [anon_sym_LT_LPAREN] = ACTIONS(4631), + [anon_sym_GT_LPAREN] = ACTIONS(4631), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4631), + [sym_word] = ACTIONS(4631), + [anon_sym_SEMI] = ACTIONS(4631), + [anon_sym_LF] = ACTIONS(4629), + [anon_sym_AMP] = ACTIONS(4631), + }, + [2819] = { + [sym__concat] = ACTIONS(4633), + [anon_sym_esac] = ACTIONS(4635), + [anon_sym_PIPE] = ACTIONS(4635), + [anon_sym_SEMI_SEMI] = ACTIONS(4635), + [anon_sym_PIPE_AMP] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [sym__special_characters] = ACTIONS(4635), + [anon_sym_DQUOTE] = ACTIONS(4635), + [anon_sym_DOLLAR] = ACTIONS(4635), + [sym_raw_string] = ACTIONS(4635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4635), + [anon_sym_BQUOTE] = ACTIONS(4635), + [anon_sym_LT_LPAREN] = ACTIONS(4635), + [anon_sym_GT_LPAREN] = ACTIONS(4635), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4635), + [sym_word] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_LF] = ACTIONS(4633), + [anon_sym_AMP] = ACTIONS(4635), + }, + [2820] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6687), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2821] = { + [sym__concat] = ACTIONS(4639), + [anon_sym_esac] = ACTIONS(4641), + [anon_sym_PIPE] = ACTIONS(4641), + [anon_sym_SEMI_SEMI] = ACTIONS(4641), + [anon_sym_PIPE_AMP] = ACTIONS(4641), + [anon_sym_AMP_AMP] = ACTIONS(4641), + [anon_sym_PIPE_PIPE] = ACTIONS(4641), + [sym__special_characters] = ACTIONS(4641), + [anon_sym_DQUOTE] = ACTIONS(4641), + [anon_sym_DOLLAR] = ACTIONS(4641), + [sym_raw_string] = ACTIONS(4641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4641), + [anon_sym_BQUOTE] = ACTIONS(4641), + [anon_sym_LT_LPAREN] = ACTIONS(4641), + [anon_sym_GT_LPAREN] = ACTIONS(4641), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4641), + [sym_word] = ACTIONS(4641), + [anon_sym_SEMI] = ACTIONS(4641), + [anon_sym_LF] = ACTIONS(4639), + [anon_sym_AMP] = ACTIONS(4641), + }, + [2822] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6689), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2823] = { + [sym__concat] = ACTIONS(4645), + [anon_sym_esac] = ACTIONS(4647), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_SEMI_SEMI] = ACTIONS(4647), + [anon_sym_PIPE_AMP] = ACTIONS(4647), + [anon_sym_AMP_AMP] = ACTIONS(4647), + [anon_sym_PIPE_PIPE] = ACTIONS(4647), + [sym__special_characters] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4647), + [anon_sym_DOLLAR] = ACTIONS(4647), + [sym_raw_string] = ACTIONS(4647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4647), + [anon_sym_BQUOTE] = ACTIONS(4647), + [anon_sym_LT_LPAREN] = ACTIONS(4647), + [anon_sym_GT_LPAREN] = ACTIONS(4647), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4647), + [sym_word] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4647), + [anon_sym_LF] = ACTIONS(4645), + [anon_sym_AMP] = ACTIONS(4647), + }, + [2824] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6691), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2825] = { + [sym__concat] = ACTIONS(4651), + [anon_sym_esac] = ACTIONS(4653), + [anon_sym_PIPE] = ACTIONS(4653), + [anon_sym_SEMI_SEMI] = ACTIONS(4653), + [anon_sym_PIPE_AMP] = ACTIONS(4653), + [anon_sym_AMP_AMP] = ACTIONS(4653), + [anon_sym_PIPE_PIPE] = ACTIONS(4653), + [sym__special_characters] = ACTIONS(4653), + [anon_sym_DQUOTE] = ACTIONS(4653), + [anon_sym_DOLLAR] = ACTIONS(4653), + [sym_raw_string] = ACTIONS(4653), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4653), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4653), + [anon_sym_BQUOTE] = ACTIONS(4653), + [anon_sym_LT_LPAREN] = ACTIONS(4653), + [anon_sym_GT_LPAREN] = ACTIONS(4653), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4653), + [sym_word] = ACTIONS(4653), + [anon_sym_SEMI] = ACTIONS(4653), + [anon_sym_LF] = ACTIONS(4651), + [anon_sym_AMP] = ACTIONS(4653), + }, + [2826] = { + [sym__concat] = ACTIONS(4655), + [anon_sym_esac] = ACTIONS(4657), + [anon_sym_PIPE] = ACTIONS(4657), + [anon_sym_SEMI_SEMI] = ACTIONS(4657), + [anon_sym_PIPE_AMP] = ACTIONS(4657), + [anon_sym_AMP_AMP] = ACTIONS(4657), + [anon_sym_PIPE_PIPE] = ACTIONS(4657), + [sym__special_characters] = ACTIONS(4657), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_DOLLAR] = ACTIONS(4657), + [sym_raw_string] = ACTIONS(4657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4657), + [anon_sym_BQUOTE] = ACTIONS(4657), + [anon_sym_LT_LPAREN] = ACTIONS(4657), + [anon_sym_GT_LPAREN] = ACTIONS(4657), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4657), + [sym_word] = ACTIONS(4657), + [anon_sym_SEMI] = ACTIONS(4657), + [anon_sym_LF] = ACTIONS(4655), + [anon_sym_AMP] = ACTIONS(4657), + }, + [2827] = { + [sym_file_descriptor] = ACTIONS(5178), + [sym__concat] = ACTIONS(5178), + [anon_sym_esac] = ACTIONS(5180), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_SEMI_SEMI] = ACTIONS(5180), + [anon_sym_PIPE_AMP] = ACTIONS(5180), + [anon_sym_AMP_AMP] = ACTIONS(5180), + [anon_sym_PIPE_PIPE] = ACTIONS(5180), + [anon_sym_EQ_TILDE] = ACTIONS(5180), + [anon_sym_EQ_EQ] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5180), + [anon_sym_GT_GT] = ACTIONS(5180), + [anon_sym_AMP_GT] = ACTIONS(5180), + [anon_sym_AMP_GT_GT] = ACTIONS(5180), + [anon_sym_LT_AMP] = ACTIONS(5180), + [anon_sym_GT_AMP] = ACTIONS(5180), + [anon_sym_LT_LT] = ACTIONS(5180), + [anon_sym_LT_LT_DASH] = ACTIONS(5180), + [anon_sym_LT_LT_LT] = ACTIONS(5180), + [sym__special_characters] = ACTIONS(5180), + [anon_sym_DQUOTE] = ACTIONS(5180), + [anon_sym_DOLLAR] = ACTIONS(5180), + [sym_raw_string] = ACTIONS(5180), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5180), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5180), + [anon_sym_BQUOTE] = ACTIONS(5180), + [anon_sym_LT_LPAREN] = ACTIONS(5180), + [anon_sym_GT_LPAREN] = ACTIONS(5180), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5180), + [anon_sym_LF] = ACTIONS(5178), + [anon_sym_AMP] = ACTIONS(5180), + }, + [2828] = { + [sym_file_descriptor] = ACTIONS(5182), + [sym__concat] = ACTIONS(5182), + [anon_sym_esac] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_SEMI_SEMI] = ACTIONS(5184), + [anon_sym_PIPE_AMP] = ACTIONS(5184), + [anon_sym_AMP_AMP] = ACTIONS(5184), + [anon_sym_PIPE_PIPE] = ACTIONS(5184), + [anon_sym_EQ_TILDE] = ACTIONS(5184), + [anon_sym_EQ_EQ] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5184), + [anon_sym_GT_GT] = ACTIONS(5184), + [anon_sym_AMP_GT] = ACTIONS(5184), + [anon_sym_AMP_GT_GT] = ACTIONS(5184), + [anon_sym_LT_AMP] = ACTIONS(5184), + [anon_sym_GT_AMP] = ACTIONS(5184), + [anon_sym_LT_LT] = ACTIONS(5184), + [anon_sym_LT_LT_DASH] = ACTIONS(5184), + [anon_sym_LT_LT_LT] = ACTIONS(5184), + [sym__special_characters] = ACTIONS(5184), + [anon_sym_DQUOTE] = ACTIONS(5184), + [anon_sym_DOLLAR] = ACTIONS(5184), + [sym_raw_string] = ACTIONS(5184), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5184), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5184), + [anon_sym_BQUOTE] = ACTIONS(5184), + [anon_sym_LT_LPAREN] = ACTIONS(5184), + [anon_sym_GT_LPAREN] = ACTIONS(5184), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5184), + [anon_sym_SEMI] = ACTIONS(5184), + [anon_sym_LF] = ACTIONS(5182), + [anon_sym_AMP] = ACTIONS(5184), + }, + [2829] = { + [sym_file_descriptor] = ACTIONS(5186), + [sym__concat] = ACTIONS(5186), + [anon_sym_esac] = ACTIONS(5188), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_SEMI_SEMI] = ACTIONS(5188), + [anon_sym_PIPE_AMP] = ACTIONS(5188), + [anon_sym_AMP_AMP] = ACTIONS(5188), + [anon_sym_PIPE_PIPE] = ACTIONS(5188), + [anon_sym_EQ_TILDE] = ACTIONS(5188), + [anon_sym_EQ_EQ] = ACTIONS(5188), + [anon_sym_LT] = ACTIONS(5188), + [anon_sym_GT] = ACTIONS(5188), + [anon_sym_GT_GT] = ACTIONS(5188), + [anon_sym_AMP_GT] = ACTIONS(5188), + [anon_sym_AMP_GT_GT] = ACTIONS(5188), + [anon_sym_LT_AMP] = ACTIONS(5188), + [anon_sym_GT_AMP] = ACTIONS(5188), + [anon_sym_LT_LT] = ACTIONS(5188), + [anon_sym_LT_LT_DASH] = ACTIONS(5188), + [anon_sym_LT_LT_LT] = ACTIONS(5188), + [sym__special_characters] = ACTIONS(5188), + [anon_sym_DQUOTE] = ACTIONS(5188), + [anon_sym_DOLLAR] = ACTIONS(5188), + [sym_raw_string] = ACTIONS(5188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5188), + [anon_sym_BQUOTE] = ACTIONS(5188), + [anon_sym_LT_LPAREN] = ACTIONS(5188), + [anon_sym_GT_LPAREN] = ACTIONS(5188), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5188), + [anon_sym_SEMI] = ACTIONS(5188), + [anon_sym_LF] = ACTIONS(5186), + [anon_sym_AMP] = ACTIONS(5188), + }, + [2830] = { + [sym_file_descriptor] = ACTIONS(3740), + [sym__concat] = ACTIONS(3740), + [anon_sym_esac] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3742), + [anon_sym_SEMI_SEMI] = ACTIONS(3742), + [anon_sym_PIPE_AMP] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_LT] = ACTIONS(3742), + [anon_sym_GT] = ACTIONS(3742), + [anon_sym_GT_GT] = ACTIONS(3742), + [anon_sym_AMP_GT] = ACTIONS(3742), + [anon_sym_AMP_GT_GT] = ACTIONS(3742), + [anon_sym_LT_AMP] = ACTIONS(3742), + [anon_sym_GT_AMP] = ACTIONS(3742), + [anon_sym_LT_LT] = ACTIONS(3742), + [anon_sym_LT_LT_DASH] = ACTIONS(3742), + [anon_sym_LT_LT_LT] = ACTIONS(3742), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_LF] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3742), + }, + [2831] = { + [sym_file_descriptor] = ACTIONS(3746), + [sym__concat] = ACTIONS(3746), + [anon_sym_esac] = ACTIONS(3748), + [anon_sym_PIPE] = ACTIONS(3748), + [anon_sym_SEMI_SEMI] = ACTIONS(3748), + [anon_sym_PIPE_AMP] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_PIPE_PIPE] = ACTIONS(3748), + [anon_sym_LT] = ACTIONS(3748), + [anon_sym_GT] = ACTIONS(3748), + [anon_sym_GT_GT] = ACTIONS(3748), + [anon_sym_AMP_GT] = ACTIONS(3748), + [anon_sym_AMP_GT_GT] = ACTIONS(3748), + [anon_sym_LT_AMP] = ACTIONS(3748), + [anon_sym_GT_AMP] = ACTIONS(3748), + [anon_sym_LT_LT] = ACTIONS(3748), + [anon_sym_LT_LT_DASH] = ACTIONS(3748), + [anon_sym_LT_LT_LT] = ACTIONS(3748), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3748), + [anon_sym_LF] = ACTIONS(3746), + [anon_sym_AMP] = ACTIONS(3748), + }, + [2832] = { + [sym_file_descriptor] = ACTIONS(3831), + [sym__concat] = ACTIONS(3831), + [anon_sym_esac] = ACTIONS(3833), + [anon_sym_PIPE] = ACTIONS(3833), + [anon_sym_SEMI_SEMI] = ACTIONS(3833), + [anon_sym_PIPE_AMP] = ACTIONS(3833), + [anon_sym_AMP_AMP] = ACTIONS(3833), + [anon_sym_PIPE_PIPE] = ACTIONS(3833), + [anon_sym_LT] = ACTIONS(3833), + [anon_sym_GT] = ACTIONS(3833), + [anon_sym_GT_GT] = ACTIONS(3833), + [anon_sym_AMP_GT] = ACTIONS(3833), + [anon_sym_AMP_GT_GT] = ACTIONS(3833), + [anon_sym_LT_AMP] = ACTIONS(3833), + [anon_sym_GT_AMP] = ACTIONS(3833), + [anon_sym_LT_LT] = ACTIONS(3833), + [anon_sym_LT_LT_DASH] = ACTIONS(3833), + [anon_sym_LT_LT_LT] = ACTIONS(3833), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3833), + [anon_sym_LF] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3833), + }, + [2833] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6693), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2834] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6695), + [sym_comment] = ACTIONS(54), + }, + [2835] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6697), + [sym_comment] = ACTIONS(54), + }, + [2836] = { + [anon_sym_RBRACE] = ACTIONS(6697), + [sym_comment] = ACTIONS(54), + }, + [2837] = { + [sym_concatenation] = STATE(2885), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2885), + [anon_sym_RBRACE] = ACTIONS(6699), + [anon_sym_EQ] = ACTIONS(6701), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6701), + [anon_sym_COLON_QMARK] = ACTIONS(6701), + [anon_sym_COLON_DASH] = ACTIONS(6701), + [anon_sym_PERCENT] = ACTIONS(6701), + [anon_sym_DASH] = ACTIONS(6701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2838] = { + [sym_file_descriptor] = ACTIONS(3847), + [sym__concat] = ACTIONS(3847), + [anon_sym_esac] = ACTIONS(3849), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_SEMI_SEMI] = ACTIONS(3849), + [anon_sym_PIPE_AMP] = ACTIONS(3849), + [anon_sym_AMP_AMP] = ACTIONS(3849), + [anon_sym_PIPE_PIPE] = ACTIONS(3849), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_GT] = ACTIONS(3849), + [anon_sym_GT_GT] = ACTIONS(3849), + [anon_sym_AMP_GT] = ACTIONS(3849), + [anon_sym_AMP_GT_GT] = ACTIONS(3849), + [anon_sym_LT_AMP] = ACTIONS(3849), + [anon_sym_GT_AMP] = ACTIONS(3849), + [anon_sym_LT_LT] = ACTIONS(3849), + [anon_sym_LT_LT_DASH] = ACTIONS(3849), + [anon_sym_LT_LT_LT] = ACTIONS(3849), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3849), + [anon_sym_LF] = ACTIONS(3847), + [anon_sym_AMP] = ACTIONS(3849), + }, + [2839] = { + [sym_concatenation] = STATE(2887), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2887), + [anon_sym_RBRACE] = ACTIONS(6705), + [anon_sym_EQ] = ACTIONS(6707), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6709), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6707), + [anon_sym_COLON_QMARK] = ACTIONS(6707), + [anon_sym_COLON_DASH] = ACTIONS(6707), + [anon_sym_PERCENT] = ACTIONS(6707), + [anon_sym_DASH] = ACTIONS(6707), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2840] = { + [sym_file_descriptor] = ACTIONS(3857), + [sym__concat] = ACTIONS(3857), + [anon_sym_esac] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3859), + [anon_sym_SEMI_SEMI] = ACTIONS(3859), + [anon_sym_PIPE_AMP] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_GT] = ACTIONS(3859), + [anon_sym_GT_GT] = ACTIONS(3859), + [anon_sym_AMP_GT] = ACTIONS(3859), + [anon_sym_AMP_GT_GT] = ACTIONS(3859), + [anon_sym_LT_AMP] = ACTIONS(3859), + [anon_sym_GT_AMP] = ACTIONS(3859), + [anon_sym_LT_LT] = ACTIONS(3859), + [anon_sym_LT_LT_DASH] = ACTIONS(3859), + [anon_sym_LT_LT_LT] = ACTIONS(3859), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3859), + [anon_sym_LF] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(3859), + }, + [2841] = { + [sym_concatenation] = STATE(2889), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2889), + [anon_sym_RBRACE] = ACTIONS(6711), + [anon_sym_EQ] = ACTIONS(6713), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6715), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6713), + [anon_sym_COLON_QMARK] = ACTIONS(6713), + [anon_sym_COLON_DASH] = ACTIONS(6713), + [anon_sym_PERCENT] = ACTIONS(6713), + [anon_sym_DASH] = ACTIONS(6713), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2842] = { + [sym_file_descriptor] = ACTIONS(3867), + [sym__concat] = ACTIONS(3867), + [anon_sym_esac] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3869), + [anon_sym_SEMI_SEMI] = ACTIONS(3869), + [anon_sym_PIPE_AMP] = ACTIONS(3869), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_LT] = ACTIONS(3869), + [anon_sym_GT] = ACTIONS(3869), + [anon_sym_GT_GT] = ACTIONS(3869), + [anon_sym_AMP_GT] = ACTIONS(3869), + [anon_sym_AMP_GT_GT] = ACTIONS(3869), + [anon_sym_LT_AMP] = ACTIONS(3869), + [anon_sym_GT_AMP] = ACTIONS(3869), + [anon_sym_LT_LT] = ACTIONS(3869), + [anon_sym_LT_LT_DASH] = ACTIONS(3869), + [anon_sym_LT_LT_LT] = ACTIONS(3869), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3869), + [anon_sym_LF] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3869), + }, + [2843] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6717), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2844] = { + [sym_file_descriptor] = ACTIONS(3873), + [sym__concat] = ACTIONS(3873), + [anon_sym_esac] = ACTIONS(3875), + [anon_sym_PIPE] = ACTIONS(3875), + [anon_sym_SEMI_SEMI] = ACTIONS(3875), + [anon_sym_PIPE_AMP] = ACTIONS(3875), + [anon_sym_AMP_AMP] = ACTIONS(3875), + [anon_sym_PIPE_PIPE] = ACTIONS(3875), + [anon_sym_LT] = ACTIONS(3875), + [anon_sym_GT] = ACTIONS(3875), + [anon_sym_GT_GT] = ACTIONS(3875), + [anon_sym_AMP_GT] = ACTIONS(3875), + [anon_sym_AMP_GT_GT] = ACTIONS(3875), + [anon_sym_LT_AMP] = ACTIONS(3875), + [anon_sym_GT_AMP] = ACTIONS(3875), + [anon_sym_LT_LT] = ACTIONS(3875), + [anon_sym_LT_LT_DASH] = ACTIONS(3875), + [anon_sym_LT_LT_LT] = ACTIONS(3875), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3875), + [anon_sym_LF] = ACTIONS(3873), + [anon_sym_AMP] = ACTIONS(3875), + }, + [2845] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6719), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2846] = { + [sym_file_descriptor] = ACTIONS(4621), + [sym__concat] = ACTIONS(4621), + [sym_variable_name] = ACTIONS(4621), + [anon_sym_esac] = ACTIONS(4623), + [anon_sym_PIPE] = ACTIONS(4623), + [anon_sym_SEMI_SEMI] = ACTIONS(4623), + [anon_sym_PIPE_AMP] = ACTIONS(4623), + [anon_sym_AMP_AMP] = ACTIONS(4623), + [anon_sym_PIPE_PIPE] = ACTIONS(4623), + [anon_sym_LT] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_GT_GT] = ACTIONS(4623), + [anon_sym_AMP_GT] = ACTIONS(4623), + [anon_sym_AMP_GT_GT] = ACTIONS(4623), + [anon_sym_LT_AMP] = ACTIONS(4623), + [anon_sym_GT_AMP] = ACTIONS(4623), + [sym__special_characters] = ACTIONS(4623), + [anon_sym_DQUOTE] = ACTIONS(4623), + [anon_sym_DOLLAR] = ACTIONS(4623), + [sym_raw_string] = ACTIONS(4623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4623), + [anon_sym_BQUOTE] = ACTIONS(4623), + [anon_sym_LT_LPAREN] = ACTIONS(4623), + [anon_sym_GT_LPAREN] = ACTIONS(4623), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_LF] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4623), + }, + [2847] = { + [sym_file_descriptor] = ACTIONS(4625), + [sym__concat] = ACTIONS(4625), + [sym_variable_name] = ACTIONS(4625), + [anon_sym_esac] = ACTIONS(4627), + [anon_sym_PIPE] = ACTIONS(4627), + [anon_sym_SEMI_SEMI] = ACTIONS(4627), + [anon_sym_PIPE_AMP] = ACTIONS(4627), + [anon_sym_AMP_AMP] = ACTIONS(4627), + [anon_sym_PIPE_PIPE] = ACTIONS(4627), + [anon_sym_LT] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4627), + [anon_sym_GT_GT] = ACTIONS(4627), + [anon_sym_AMP_GT] = ACTIONS(4627), + [anon_sym_AMP_GT_GT] = ACTIONS(4627), + [anon_sym_LT_AMP] = ACTIONS(4627), + [anon_sym_GT_AMP] = ACTIONS(4627), + [sym__special_characters] = ACTIONS(4627), + [anon_sym_DQUOTE] = ACTIONS(4627), + [anon_sym_DOLLAR] = ACTIONS(4627), + [sym_raw_string] = ACTIONS(4627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4627), + [anon_sym_BQUOTE] = ACTIONS(4627), + [anon_sym_LT_LPAREN] = ACTIONS(4627), + [anon_sym_GT_LPAREN] = ACTIONS(4627), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4627), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_LF] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4627), + }, + [2848] = { + [sym_file_descriptor] = ACTIONS(4629), + [sym__concat] = ACTIONS(4629), + [sym_variable_name] = ACTIONS(4629), + [anon_sym_esac] = ACTIONS(4631), + [anon_sym_PIPE] = ACTIONS(4631), + [anon_sym_SEMI_SEMI] = ACTIONS(4631), + [anon_sym_PIPE_AMP] = ACTIONS(4631), + [anon_sym_AMP_AMP] = ACTIONS(4631), + [anon_sym_PIPE_PIPE] = ACTIONS(4631), + [anon_sym_LT] = ACTIONS(4631), + [anon_sym_GT] = ACTIONS(4631), + [anon_sym_GT_GT] = ACTIONS(4631), + [anon_sym_AMP_GT] = ACTIONS(4631), + [anon_sym_AMP_GT_GT] = ACTIONS(4631), + [anon_sym_LT_AMP] = ACTIONS(4631), + [anon_sym_GT_AMP] = ACTIONS(4631), + [sym__special_characters] = ACTIONS(4631), + [anon_sym_DQUOTE] = ACTIONS(4631), + [anon_sym_DOLLAR] = ACTIONS(4631), + [sym_raw_string] = ACTIONS(4631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4631), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4631), + [anon_sym_BQUOTE] = ACTIONS(4631), + [anon_sym_LT_LPAREN] = ACTIONS(4631), + [anon_sym_GT_LPAREN] = ACTIONS(4631), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4631), + [anon_sym_SEMI] = ACTIONS(4631), + [anon_sym_LF] = ACTIONS(4629), + [anon_sym_AMP] = ACTIONS(4631), + }, + [2849] = { + [sym_file_descriptor] = ACTIONS(4633), + [sym__concat] = ACTIONS(4633), + [sym_variable_name] = ACTIONS(4633), + [anon_sym_esac] = ACTIONS(4635), + [anon_sym_PIPE] = ACTIONS(4635), + [anon_sym_SEMI_SEMI] = ACTIONS(4635), + [anon_sym_PIPE_AMP] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_GT_GT] = ACTIONS(4635), + [anon_sym_AMP_GT] = ACTIONS(4635), + [anon_sym_AMP_GT_GT] = ACTIONS(4635), + [anon_sym_LT_AMP] = ACTIONS(4635), + [anon_sym_GT_AMP] = ACTIONS(4635), + [sym__special_characters] = ACTIONS(4635), + [anon_sym_DQUOTE] = ACTIONS(4635), + [anon_sym_DOLLAR] = ACTIONS(4635), + [sym_raw_string] = ACTIONS(4635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4635), + [anon_sym_BQUOTE] = ACTIONS(4635), + [anon_sym_LT_LPAREN] = ACTIONS(4635), + [anon_sym_GT_LPAREN] = ACTIONS(4635), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_LF] = ACTIONS(4633), + [anon_sym_AMP] = ACTIONS(4635), + }, + [2850] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6721), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2851] = { + [sym_file_descriptor] = ACTIONS(4639), + [sym__concat] = ACTIONS(4639), + [sym_variable_name] = ACTIONS(4639), + [anon_sym_esac] = ACTIONS(4641), + [anon_sym_PIPE] = ACTIONS(4641), + [anon_sym_SEMI_SEMI] = ACTIONS(4641), + [anon_sym_PIPE_AMP] = ACTIONS(4641), + [anon_sym_AMP_AMP] = ACTIONS(4641), + [anon_sym_PIPE_PIPE] = ACTIONS(4641), + [anon_sym_LT] = ACTIONS(4641), + [anon_sym_GT] = ACTIONS(4641), + [anon_sym_GT_GT] = ACTIONS(4641), + [anon_sym_AMP_GT] = ACTIONS(4641), + [anon_sym_AMP_GT_GT] = ACTIONS(4641), + [anon_sym_LT_AMP] = ACTIONS(4641), + [anon_sym_GT_AMP] = ACTIONS(4641), + [sym__special_characters] = ACTIONS(4641), + [anon_sym_DQUOTE] = ACTIONS(4641), + [anon_sym_DOLLAR] = ACTIONS(4641), + [sym_raw_string] = ACTIONS(4641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4641), + [anon_sym_BQUOTE] = ACTIONS(4641), + [anon_sym_LT_LPAREN] = ACTIONS(4641), + [anon_sym_GT_LPAREN] = ACTIONS(4641), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4641), + [anon_sym_SEMI] = ACTIONS(4641), + [anon_sym_LF] = ACTIONS(4639), + [anon_sym_AMP] = ACTIONS(4641), + }, + [2852] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6723), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2853] = { + [sym_file_descriptor] = ACTIONS(4645), + [sym__concat] = ACTIONS(4645), + [sym_variable_name] = ACTIONS(4645), + [anon_sym_esac] = ACTIONS(4647), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_SEMI_SEMI] = ACTIONS(4647), + [anon_sym_PIPE_AMP] = ACTIONS(4647), + [anon_sym_AMP_AMP] = ACTIONS(4647), + [anon_sym_PIPE_PIPE] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_GT] = ACTIONS(4647), + [anon_sym_AMP_GT] = ACTIONS(4647), + [anon_sym_AMP_GT_GT] = ACTIONS(4647), + [anon_sym_LT_AMP] = ACTIONS(4647), + [anon_sym_GT_AMP] = ACTIONS(4647), + [sym__special_characters] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4647), + [anon_sym_DOLLAR] = ACTIONS(4647), + [sym_raw_string] = ACTIONS(4647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4647), + [anon_sym_BQUOTE] = ACTIONS(4647), + [anon_sym_LT_LPAREN] = ACTIONS(4647), + [anon_sym_GT_LPAREN] = ACTIONS(4647), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4647), + [anon_sym_LF] = ACTIONS(4645), + [anon_sym_AMP] = ACTIONS(4647), + }, + [2854] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6725), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2855] = { + [sym_file_descriptor] = ACTIONS(4651), + [sym__concat] = ACTIONS(4651), + [sym_variable_name] = ACTIONS(4651), + [anon_sym_esac] = ACTIONS(4653), + [anon_sym_PIPE] = ACTIONS(4653), + [anon_sym_SEMI_SEMI] = ACTIONS(4653), + [anon_sym_PIPE_AMP] = ACTIONS(4653), + [anon_sym_AMP_AMP] = ACTIONS(4653), + [anon_sym_PIPE_PIPE] = ACTIONS(4653), + [anon_sym_LT] = ACTIONS(4653), + [anon_sym_GT] = ACTIONS(4653), + [anon_sym_GT_GT] = ACTIONS(4653), + [anon_sym_AMP_GT] = ACTIONS(4653), + [anon_sym_AMP_GT_GT] = ACTIONS(4653), + [anon_sym_LT_AMP] = ACTIONS(4653), + [anon_sym_GT_AMP] = ACTIONS(4653), + [sym__special_characters] = ACTIONS(4653), + [anon_sym_DQUOTE] = ACTIONS(4653), + [anon_sym_DOLLAR] = ACTIONS(4653), + [sym_raw_string] = ACTIONS(4653), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4653), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4653), + [anon_sym_BQUOTE] = ACTIONS(4653), + [anon_sym_LT_LPAREN] = ACTIONS(4653), + [anon_sym_GT_LPAREN] = ACTIONS(4653), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4653), + [anon_sym_SEMI] = ACTIONS(4653), + [anon_sym_LF] = ACTIONS(4651), + [anon_sym_AMP] = ACTIONS(4653), + }, + [2856] = { + [sym_file_descriptor] = ACTIONS(4655), + [sym__concat] = ACTIONS(4655), + [sym_variable_name] = ACTIONS(4655), + [anon_sym_esac] = ACTIONS(4657), + [anon_sym_PIPE] = ACTIONS(4657), + [anon_sym_SEMI_SEMI] = ACTIONS(4657), + [anon_sym_PIPE_AMP] = ACTIONS(4657), + [anon_sym_AMP_AMP] = ACTIONS(4657), + [anon_sym_PIPE_PIPE] = ACTIONS(4657), + [anon_sym_LT] = ACTIONS(4657), + [anon_sym_GT] = ACTIONS(4657), + [anon_sym_GT_GT] = ACTIONS(4657), + [anon_sym_AMP_GT] = ACTIONS(4657), + [anon_sym_AMP_GT_GT] = ACTIONS(4657), + [anon_sym_LT_AMP] = ACTIONS(4657), + [anon_sym_GT_AMP] = ACTIONS(4657), + [sym__special_characters] = ACTIONS(4657), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_DOLLAR] = ACTIONS(4657), + [sym_raw_string] = ACTIONS(4657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4657), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4657), + [anon_sym_BQUOTE] = ACTIONS(4657), + [anon_sym_LT_LPAREN] = ACTIONS(4657), + [anon_sym_GT_LPAREN] = ACTIONS(4657), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(4657), + [anon_sym_SEMI] = ACTIONS(4657), + [anon_sym_LF] = ACTIONS(4655), + [anon_sym_AMP] = ACTIONS(4657), + }, + [2857] = { + [sym__concat] = ACTIONS(2672), + [anon_sym_esac] = ACTIONS(2674), + [anon_sym_PIPE] = ACTIONS(2674), + [anon_sym_SEMI_SEMI] = ACTIONS(2674), + [anon_sym_PIPE_AMP] = ACTIONS(2674), + [anon_sym_AMP_AMP] = ACTIONS(2674), + [anon_sym_PIPE_PIPE] = ACTIONS(2674), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_LF] = ACTIONS(2672), + [anon_sym_AMP] = ACTIONS(2674), + }, + [2858] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6727), + [sym_comment] = ACTIONS(54), + }, + [2859] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6729), + [sym_comment] = ACTIONS(54), + }, + [2860] = { + [anon_sym_RBRACE] = ACTIONS(6729), + [sym_comment] = ACTIONS(54), + }, + [2861] = { + [sym_concatenation] = STATE(2898), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2898), + [anon_sym_RBRACE] = ACTIONS(6731), + [anon_sym_EQ] = ACTIONS(6733), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6733), + [anon_sym_COLON_QMARK] = ACTIONS(6733), + [anon_sym_COLON_DASH] = ACTIONS(6733), + [anon_sym_PERCENT] = ACTIONS(6733), + [anon_sym_DASH] = ACTIONS(6733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2862] = { + [sym__concat] = ACTIONS(2750), + [anon_sym_esac] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_SEMI_SEMI] = ACTIONS(2752), + [anon_sym_PIPE_AMP] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2752), + }, + [2863] = { + [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(6729), + [sym__special_characters] = ACTIONS(6737), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1712), + [sym_raw_string] = ACTIONS(6739), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_LT_LPAREN] = ACTIONS(1722), + [anon_sym_GT_LPAREN] = ACTIONS(1722), + [sym_comment] = ACTIONS(54), + [sym_word] = ACTIONS(6739), + }, + [2864] = { + [sym__concat] = ACTIONS(2793), + [anon_sym_esac] = ACTIONS(2795), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_SEMI_SEMI] = ACTIONS(2795), + [anon_sym_PIPE_AMP] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_LF] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2795), + }, + [2865] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6741), + }, + [2866] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6743), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2867] = { + [sym__concat] = ACTIONS(2801), + [anon_sym_esac] = ACTIONS(2803), + [anon_sym_PIPE] = ACTIONS(2803), + [anon_sym_SEMI_SEMI] = ACTIONS(2803), + [anon_sym_PIPE_AMP] = ACTIONS(2803), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_PIPE_PIPE] = ACTIONS(2803), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_LF] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + }, + [2868] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6745), + }, + [2869] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6747), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2870] = { + [sym_comment] = ACTIONS(166), + [sym_regex_without_right_brace] = ACTIONS(6749), + }, + [2871] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6729), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2872] = { + [sym_concatenation] = STATE(2908), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2908), + [anon_sym_RBRACE] = ACTIONS(6751), + [anon_sym_EQ] = ACTIONS(6753), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6753), + [anon_sym_COLON_QMARK] = ACTIONS(6753), + [anon_sym_COLON_DASH] = ACTIONS(6753), + [anon_sym_PERCENT] = ACTIONS(6753), + [anon_sym_DASH] = ACTIONS(6753), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2873] = { + [sym__concat] = ACTIONS(2817), + [anon_sym_esac] = ACTIONS(2819), + [anon_sym_PIPE] = ACTIONS(2819), + [anon_sym_SEMI_SEMI] = ACTIONS(2819), + [anon_sym_PIPE_AMP] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_PIPE_PIPE] = ACTIONS(2819), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_LF] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2819), + }, + [2874] = { + [sym_concatenation] = STATE(2910), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2910), + [anon_sym_RBRACE] = ACTIONS(6757), + [anon_sym_EQ] = ACTIONS(6759), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6761), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6759), + [anon_sym_COLON_QMARK] = ACTIONS(6759), + [anon_sym_COLON_DASH] = ACTIONS(6759), + [anon_sym_PERCENT] = ACTIONS(6759), + [anon_sym_DASH] = ACTIONS(6759), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2875] = { + [sym__concat] = ACTIONS(5178), + [sym_variable_name] = ACTIONS(5178), + [anon_sym_esac] = ACTIONS(5180), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_SEMI_SEMI] = ACTIONS(5180), + [anon_sym_PIPE_AMP] = ACTIONS(5180), + [anon_sym_AMP_AMP] = ACTIONS(5180), + [anon_sym_PIPE_PIPE] = ACTIONS(5180), + [sym__special_characters] = ACTIONS(5180), + [anon_sym_DQUOTE] = ACTIONS(5180), + [anon_sym_DOLLAR] = ACTIONS(5180), + [sym_raw_string] = ACTIONS(5180), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5180), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5180), + [anon_sym_BQUOTE] = ACTIONS(5180), + [anon_sym_LT_LPAREN] = ACTIONS(5180), + [anon_sym_GT_LPAREN] = ACTIONS(5180), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5180), + [sym_word] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5180), + [anon_sym_LF] = ACTIONS(5178), + [anon_sym_AMP] = ACTIONS(5180), + }, + [2876] = { + [sym__concat] = ACTIONS(5182), + [sym_variable_name] = ACTIONS(5182), + [anon_sym_esac] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_SEMI_SEMI] = ACTIONS(5184), + [anon_sym_PIPE_AMP] = ACTIONS(5184), + [anon_sym_AMP_AMP] = ACTIONS(5184), + [anon_sym_PIPE_PIPE] = ACTIONS(5184), + [sym__special_characters] = ACTIONS(5184), + [anon_sym_DQUOTE] = ACTIONS(5184), + [anon_sym_DOLLAR] = ACTIONS(5184), + [sym_raw_string] = ACTIONS(5184), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5184), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5184), + [anon_sym_BQUOTE] = ACTIONS(5184), + [anon_sym_LT_LPAREN] = ACTIONS(5184), + [anon_sym_GT_LPAREN] = ACTIONS(5184), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5184), + [sym_word] = ACTIONS(5184), + [anon_sym_SEMI] = ACTIONS(5184), + [anon_sym_LF] = ACTIONS(5182), + [anon_sym_AMP] = ACTIONS(5184), + }, + [2877] = { + [sym__concat] = ACTIONS(5186), + [sym_variable_name] = ACTIONS(5186), + [anon_sym_esac] = ACTIONS(5188), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_SEMI_SEMI] = ACTIONS(5188), + [anon_sym_PIPE_AMP] = ACTIONS(5188), + [anon_sym_AMP_AMP] = ACTIONS(5188), + [anon_sym_PIPE_PIPE] = ACTIONS(5188), + [sym__special_characters] = ACTIONS(5188), + [anon_sym_DQUOTE] = ACTIONS(5188), + [anon_sym_DOLLAR] = ACTIONS(5188), + [sym_raw_string] = ACTIONS(5188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5188), + [anon_sym_BQUOTE] = ACTIONS(5188), + [anon_sym_LT_LPAREN] = ACTIONS(5188), + [anon_sym_GT_LPAREN] = ACTIONS(5188), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5188), + [sym_word] = ACTIONS(5188), + [anon_sym_SEMI] = ACTIONS(5188), + [anon_sym_LF] = ACTIONS(5186), + [anon_sym_AMP] = ACTIONS(5188), + }, + [2878] = { + [sym__concat] = ACTIONS(5178), + [anon_sym_esac] = ACTIONS(5180), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_SEMI_SEMI] = ACTIONS(5180), + [anon_sym_PIPE_AMP] = ACTIONS(5180), + [anon_sym_AMP_AMP] = ACTIONS(5180), + [anon_sym_PIPE_PIPE] = ACTIONS(5180), + [sym__special_characters] = ACTIONS(5180), + [anon_sym_DQUOTE] = ACTIONS(5180), + [anon_sym_DOLLAR] = ACTIONS(5180), + [sym_raw_string] = ACTIONS(5180), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5180), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5180), + [anon_sym_BQUOTE] = ACTIONS(5180), + [anon_sym_LT_LPAREN] = ACTIONS(5180), + [anon_sym_GT_LPAREN] = ACTIONS(5180), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5180), + [sym_word] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5180), + [anon_sym_LF] = ACTIONS(5178), + [anon_sym_AMP] = ACTIONS(5180), + }, + [2879] = { + [sym__concat] = ACTIONS(5182), + [anon_sym_esac] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_SEMI_SEMI] = ACTIONS(5184), + [anon_sym_PIPE_AMP] = ACTIONS(5184), + [anon_sym_AMP_AMP] = ACTIONS(5184), + [anon_sym_PIPE_PIPE] = ACTIONS(5184), + [sym__special_characters] = ACTIONS(5184), + [anon_sym_DQUOTE] = ACTIONS(5184), + [anon_sym_DOLLAR] = ACTIONS(5184), + [sym_raw_string] = ACTIONS(5184), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5184), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5184), + [anon_sym_BQUOTE] = ACTIONS(5184), + [anon_sym_LT_LPAREN] = ACTIONS(5184), + [anon_sym_GT_LPAREN] = ACTIONS(5184), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5184), + [sym_word] = ACTIONS(5184), + [anon_sym_SEMI] = ACTIONS(5184), + [anon_sym_LF] = ACTIONS(5182), + [anon_sym_AMP] = ACTIONS(5184), + }, + [2880] = { + [sym__concat] = ACTIONS(5186), + [anon_sym_esac] = ACTIONS(5188), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_SEMI_SEMI] = ACTIONS(5188), + [anon_sym_PIPE_AMP] = ACTIONS(5188), + [anon_sym_AMP_AMP] = ACTIONS(5188), + [anon_sym_PIPE_PIPE] = ACTIONS(5188), + [sym__special_characters] = ACTIONS(5188), + [anon_sym_DQUOTE] = ACTIONS(5188), + [anon_sym_DOLLAR] = ACTIONS(5188), + [sym_raw_string] = ACTIONS(5188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5188), + [anon_sym_BQUOTE] = ACTIONS(5188), + [anon_sym_LT_LPAREN] = ACTIONS(5188), + [anon_sym_GT_LPAREN] = ACTIONS(5188), + [sym_comment] = ACTIONS(166), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5188), + [sym_word] = ACTIONS(5188), + [anon_sym_SEMI] = ACTIONS(5188), + [anon_sym_LF] = ACTIONS(5186), + [anon_sym_AMP] = ACTIONS(5188), + }, + [2881] = { + [sym_file_descriptor] = ACTIONS(4621), + [sym__concat] = ACTIONS(4621), + [anon_sym_esac] = ACTIONS(4623), + [anon_sym_PIPE] = ACTIONS(4623), + [anon_sym_SEMI_SEMI] = ACTIONS(4623), + [anon_sym_PIPE_AMP] = ACTIONS(4623), + [anon_sym_AMP_AMP] = ACTIONS(4623), + [anon_sym_PIPE_PIPE] = ACTIONS(4623), + [anon_sym_LT] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_GT_GT] = ACTIONS(4623), + [anon_sym_AMP_GT] = ACTIONS(4623), + [anon_sym_AMP_GT_GT] = ACTIONS(4623), + [anon_sym_LT_AMP] = ACTIONS(4623), + [anon_sym_GT_AMP] = ACTIONS(4623), + [anon_sym_LT_LT] = ACTIONS(4623), + [anon_sym_LT_LT_DASH] = ACTIONS(4623), + [anon_sym_LT_LT_LT] = ACTIONS(4623), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_LF] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4623), + }, + [2882] = { + [sym_file_descriptor] = ACTIONS(4625), + [sym__concat] = ACTIONS(4625), + [anon_sym_esac] = ACTIONS(4627), + [anon_sym_PIPE] = ACTIONS(4627), + [anon_sym_SEMI_SEMI] = ACTIONS(4627), + [anon_sym_PIPE_AMP] = ACTIONS(4627), + [anon_sym_AMP_AMP] = ACTIONS(4627), + [anon_sym_PIPE_PIPE] = ACTIONS(4627), + [anon_sym_LT] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4627), + [anon_sym_GT_GT] = ACTIONS(4627), + [anon_sym_AMP_GT] = ACTIONS(4627), + [anon_sym_AMP_GT_GT] = ACTIONS(4627), + [anon_sym_LT_AMP] = ACTIONS(4627), + [anon_sym_GT_AMP] = ACTIONS(4627), + [anon_sym_LT_LT] = ACTIONS(4627), + [anon_sym_LT_LT_DASH] = ACTIONS(4627), + [anon_sym_LT_LT_LT] = ACTIONS(4627), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_LF] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4627), + }, + [2883] = { + [sym_file_descriptor] = ACTIONS(4629), + [sym__concat] = ACTIONS(4629), + [anon_sym_esac] = ACTIONS(4631), + [anon_sym_PIPE] = ACTIONS(4631), + [anon_sym_SEMI_SEMI] = ACTIONS(4631), + [anon_sym_PIPE_AMP] = ACTIONS(4631), + [anon_sym_AMP_AMP] = ACTIONS(4631), + [anon_sym_PIPE_PIPE] = ACTIONS(4631), + [anon_sym_LT] = ACTIONS(4631), + [anon_sym_GT] = ACTIONS(4631), + [anon_sym_GT_GT] = ACTIONS(4631), + [anon_sym_AMP_GT] = ACTIONS(4631), + [anon_sym_AMP_GT_GT] = ACTIONS(4631), + [anon_sym_LT_AMP] = ACTIONS(4631), + [anon_sym_GT_AMP] = ACTIONS(4631), + [anon_sym_LT_LT] = ACTIONS(4631), + [anon_sym_LT_LT_DASH] = ACTIONS(4631), + [anon_sym_LT_LT_LT] = ACTIONS(4631), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4631), + [anon_sym_LF] = ACTIONS(4629), + [anon_sym_AMP] = ACTIONS(4631), + }, + [2884] = { + [sym_file_descriptor] = ACTIONS(4633), + [sym__concat] = ACTIONS(4633), + [anon_sym_esac] = ACTIONS(4635), + [anon_sym_PIPE] = ACTIONS(4635), + [anon_sym_SEMI_SEMI] = ACTIONS(4635), + [anon_sym_PIPE_AMP] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_GT_GT] = ACTIONS(4635), + [anon_sym_AMP_GT] = ACTIONS(4635), + [anon_sym_AMP_GT_GT] = ACTIONS(4635), + [anon_sym_LT_AMP] = ACTIONS(4635), + [anon_sym_GT_AMP] = ACTIONS(4635), + [anon_sym_LT_LT] = ACTIONS(4635), + [anon_sym_LT_LT_DASH] = ACTIONS(4635), + [anon_sym_LT_LT_LT] = ACTIONS(4635), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_LF] = ACTIONS(4633), + [anon_sym_AMP] = ACTIONS(4635), + }, + [2885] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6763), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2886] = { + [sym_file_descriptor] = ACTIONS(4639), + [sym__concat] = ACTIONS(4639), + [anon_sym_esac] = ACTIONS(4641), + [anon_sym_PIPE] = ACTIONS(4641), + [anon_sym_SEMI_SEMI] = ACTIONS(4641), + [anon_sym_PIPE_AMP] = ACTIONS(4641), + [anon_sym_AMP_AMP] = ACTIONS(4641), + [anon_sym_PIPE_PIPE] = ACTIONS(4641), + [anon_sym_LT] = ACTIONS(4641), + [anon_sym_GT] = ACTIONS(4641), + [anon_sym_GT_GT] = ACTIONS(4641), + [anon_sym_AMP_GT] = ACTIONS(4641), + [anon_sym_AMP_GT_GT] = ACTIONS(4641), + [anon_sym_LT_AMP] = ACTIONS(4641), + [anon_sym_GT_AMP] = ACTIONS(4641), + [anon_sym_LT_LT] = ACTIONS(4641), + [anon_sym_LT_LT_DASH] = ACTIONS(4641), + [anon_sym_LT_LT_LT] = ACTIONS(4641), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4641), + [anon_sym_LF] = ACTIONS(4639), + [anon_sym_AMP] = ACTIONS(4641), + }, + [2887] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6765), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2888] = { + [sym_file_descriptor] = ACTIONS(4645), + [sym__concat] = ACTIONS(4645), + [anon_sym_esac] = ACTIONS(4647), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_SEMI_SEMI] = ACTIONS(4647), + [anon_sym_PIPE_AMP] = ACTIONS(4647), + [anon_sym_AMP_AMP] = ACTIONS(4647), + [anon_sym_PIPE_PIPE] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_GT] = ACTIONS(4647), + [anon_sym_AMP_GT] = ACTIONS(4647), + [anon_sym_AMP_GT_GT] = ACTIONS(4647), + [anon_sym_LT_AMP] = ACTIONS(4647), + [anon_sym_GT_AMP] = ACTIONS(4647), + [anon_sym_LT_LT] = ACTIONS(4647), + [anon_sym_LT_LT_DASH] = ACTIONS(4647), + [anon_sym_LT_LT_LT] = ACTIONS(4647), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4647), + [anon_sym_LF] = ACTIONS(4645), + [anon_sym_AMP] = ACTIONS(4647), + }, + [2889] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6767), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2890] = { + [sym_file_descriptor] = ACTIONS(4651), + [sym__concat] = ACTIONS(4651), + [anon_sym_esac] = ACTIONS(4653), + [anon_sym_PIPE] = ACTIONS(4653), + [anon_sym_SEMI_SEMI] = ACTIONS(4653), + [anon_sym_PIPE_AMP] = ACTIONS(4653), + [anon_sym_AMP_AMP] = ACTIONS(4653), + [anon_sym_PIPE_PIPE] = ACTIONS(4653), + [anon_sym_LT] = ACTIONS(4653), + [anon_sym_GT] = ACTIONS(4653), + [anon_sym_GT_GT] = ACTIONS(4653), + [anon_sym_AMP_GT] = ACTIONS(4653), + [anon_sym_AMP_GT_GT] = ACTIONS(4653), + [anon_sym_LT_AMP] = ACTIONS(4653), + [anon_sym_GT_AMP] = ACTIONS(4653), + [anon_sym_LT_LT] = ACTIONS(4653), + [anon_sym_LT_LT_DASH] = ACTIONS(4653), + [anon_sym_LT_LT_LT] = ACTIONS(4653), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4653), + [anon_sym_LF] = ACTIONS(4651), + [anon_sym_AMP] = ACTIONS(4653), + }, + [2891] = { + [sym_file_descriptor] = ACTIONS(4655), + [sym__concat] = ACTIONS(4655), + [anon_sym_esac] = ACTIONS(4657), + [anon_sym_PIPE] = ACTIONS(4657), + [anon_sym_SEMI_SEMI] = ACTIONS(4657), + [anon_sym_PIPE_AMP] = ACTIONS(4657), + [anon_sym_AMP_AMP] = ACTIONS(4657), + [anon_sym_PIPE_PIPE] = ACTIONS(4657), + [anon_sym_LT] = ACTIONS(4657), + [anon_sym_GT] = ACTIONS(4657), + [anon_sym_GT_GT] = ACTIONS(4657), + [anon_sym_AMP_GT] = ACTIONS(4657), + [anon_sym_AMP_GT_GT] = ACTIONS(4657), + [anon_sym_LT_AMP] = ACTIONS(4657), + [anon_sym_GT_AMP] = ACTIONS(4657), + [anon_sym_LT_LT] = ACTIONS(4657), + [anon_sym_LT_LT_DASH] = ACTIONS(4657), + [anon_sym_LT_LT_LT] = ACTIONS(4657), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4657), + [anon_sym_LF] = ACTIONS(4655), + [anon_sym_AMP] = ACTIONS(4657), + }, + [2892] = { + [sym_file_descriptor] = ACTIONS(5178), + [sym__concat] = ACTIONS(5178), + [sym_variable_name] = ACTIONS(5178), + [anon_sym_esac] = ACTIONS(5180), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_SEMI_SEMI] = ACTIONS(5180), + [anon_sym_PIPE_AMP] = ACTIONS(5180), + [anon_sym_AMP_AMP] = ACTIONS(5180), + [anon_sym_PIPE_PIPE] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5180), + [anon_sym_GT_GT] = ACTIONS(5180), + [anon_sym_AMP_GT] = ACTIONS(5180), + [anon_sym_AMP_GT_GT] = ACTIONS(5180), + [anon_sym_LT_AMP] = ACTIONS(5180), + [anon_sym_GT_AMP] = ACTIONS(5180), + [sym__special_characters] = ACTIONS(5180), + [anon_sym_DQUOTE] = ACTIONS(5180), + [anon_sym_DOLLAR] = ACTIONS(5180), + [sym_raw_string] = ACTIONS(5180), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5180), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5180), + [anon_sym_BQUOTE] = ACTIONS(5180), + [anon_sym_LT_LPAREN] = ACTIONS(5180), + [anon_sym_GT_LPAREN] = ACTIONS(5180), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5180), + [anon_sym_SEMI] = ACTIONS(5180), + [anon_sym_LF] = ACTIONS(5178), + [anon_sym_AMP] = ACTIONS(5180), + }, + [2893] = { + [sym_file_descriptor] = ACTIONS(5182), + [sym__concat] = ACTIONS(5182), + [sym_variable_name] = ACTIONS(5182), + [anon_sym_esac] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_SEMI_SEMI] = ACTIONS(5184), + [anon_sym_PIPE_AMP] = ACTIONS(5184), + [anon_sym_AMP_AMP] = ACTIONS(5184), + [anon_sym_PIPE_PIPE] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5184), + [anon_sym_GT_GT] = ACTIONS(5184), + [anon_sym_AMP_GT] = ACTIONS(5184), + [anon_sym_AMP_GT_GT] = ACTIONS(5184), + [anon_sym_LT_AMP] = ACTIONS(5184), + [anon_sym_GT_AMP] = ACTIONS(5184), + [sym__special_characters] = ACTIONS(5184), + [anon_sym_DQUOTE] = ACTIONS(5184), + [anon_sym_DOLLAR] = ACTIONS(5184), + [sym_raw_string] = ACTIONS(5184), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5184), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5184), + [anon_sym_BQUOTE] = ACTIONS(5184), + [anon_sym_LT_LPAREN] = ACTIONS(5184), + [anon_sym_GT_LPAREN] = ACTIONS(5184), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5184), + [anon_sym_SEMI] = ACTIONS(5184), + [anon_sym_LF] = ACTIONS(5182), + [anon_sym_AMP] = ACTIONS(5184), + }, + [2894] = { + [sym_file_descriptor] = ACTIONS(5186), + [sym__concat] = ACTIONS(5186), + [sym_variable_name] = ACTIONS(5186), + [anon_sym_esac] = ACTIONS(5188), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_SEMI_SEMI] = ACTIONS(5188), + [anon_sym_PIPE_AMP] = ACTIONS(5188), + [anon_sym_AMP_AMP] = ACTIONS(5188), + [anon_sym_PIPE_PIPE] = ACTIONS(5188), + [anon_sym_LT] = ACTIONS(5188), + [anon_sym_GT] = ACTIONS(5188), + [anon_sym_GT_GT] = ACTIONS(5188), + [anon_sym_AMP_GT] = ACTIONS(5188), + [anon_sym_AMP_GT_GT] = ACTIONS(5188), + [anon_sym_LT_AMP] = ACTIONS(5188), + [anon_sym_GT_AMP] = ACTIONS(5188), + [sym__special_characters] = ACTIONS(5188), + [anon_sym_DQUOTE] = ACTIONS(5188), + [anon_sym_DOLLAR] = ACTIONS(5188), + [sym_raw_string] = ACTIONS(5188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5188), + [anon_sym_BQUOTE] = ACTIONS(5188), + [anon_sym_LT_LPAREN] = ACTIONS(5188), + [anon_sym_GT_LPAREN] = ACTIONS(5188), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(5188), + [anon_sym_SEMI] = ACTIONS(5188), + [anon_sym_LF] = ACTIONS(5186), + [anon_sym_AMP] = ACTIONS(5188), + }, + [2895] = { + [sym__concat] = ACTIONS(3740), + [anon_sym_esac] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3742), + [anon_sym_SEMI_SEMI] = ACTIONS(3742), + [anon_sym_PIPE_AMP] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_LF] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3742), + }, + [2896] = { + [sym__concat] = ACTIONS(3746), + [anon_sym_esac] = ACTIONS(3748), + [anon_sym_PIPE] = ACTIONS(3748), + [anon_sym_SEMI_SEMI] = ACTIONS(3748), + [anon_sym_PIPE_AMP] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_PIPE_PIPE] = ACTIONS(3748), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3748), + [anon_sym_LF] = ACTIONS(3746), + [anon_sym_AMP] = ACTIONS(3748), + }, + [2897] = { + [sym__concat] = ACTIONS(3831), + [anon_sym_esac] = ACTIONS(3833), + [anon_sym_PIPE] = ACTIONS(3833), + [anon_sym_SEMI_SEMI] = ACTIONS(3833), + [anon_sym_PIPE_AMP] = ACTIONS(3833), + [anon_sym_AMP_AMP] = ACTIONS(3833), + [anon_sym_PIPE_PIPE] = ACTIONS(3833), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3833), + [anon_sym_LF] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3833), + }, + [2898] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6769), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2899] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6771), + [sym_comment] = ACTIONS(54), + }, + [2900] = { + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__concat] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(6773), + [sym_comment] = ACTIONS(54), + }, + [2901] = { + [anon_sym_RBRACE] = ACTIONS(6773), + [sym_comment] = ACTIONS(54), + }, + [2902] = { + [sym_concatenation] = STATE(2918), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2918), + [anon_sym_RBRACE] = ACTIONS(6775), + [anon_sym_EQ] = ACTIONS(6777), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6777), + [anon_sym_COLON_QMARK] = ACTIONS(6777), + [anon_sym_COLON_DASH] = ACTIONS(6777), + [anon_sym_PERCENT] = ACTIONS(6777), + [anon_sym_DASH] = ACTIONS(6777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2903] = { + [sym__concat] = ACTIONS(3847), + [anon_sym_esac] = ACTIONS(3849), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_SEMI_SEMI] = ACTIONS(3849), + [anon_sym_PIPE_AMP] = ACTIONS(3849), + [anon_sym_AMP_AMP] = ACTIONS(3849), + [anon_sym_PIPE_PIPE] = ACTIONS(3849), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3849), + [anon_sym_LF] = ACTIONS(3847), + [anon_sym_AMP] = ACTIONS(3849), + }, + [2904] = { + [sym_concatenation] = STATE(2920), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2920), + [anon_sym_RBRACE] = ACTIONS(6781), + [anon_sym_EQ] = ACTIONS(6783), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6785), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6783), + [anon_sym_COLON_QMARK] = ACTIONS(6783), + [anon_sym_COLON_DASH] = ACTIONS(6783), + [anon_sym_PERCENT] = ACTIONS(6783), + [anon_sym_DASH] = ACTIONS(6783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2905] = { + [sym__concat] = ACTIONS(3857), + [anon_sym_esac] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3859), + [anon_sym_SEMI_SEMI] = ACTIONS(3859), + [anon_sym_PIPE_AMP] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3859), + [anon_sym_LF] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(3859), + }, + [2906] = { + [sym_concatenation] = STATE(2922), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(2922), + [anon_sym_RBRACE] = ACTIONS(6787), + [anon_sym_EQ] = ACTIONS(6789), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(6791), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(6789), + [anon_sym_COLON_QMARK] = ACTIONS(6789), + [anon_sym_COLON_DASH] = ACTIONS(6789), + [anon_sym_PERCENT] = ACTIONS(6789), + [anon_sym_DASH] = ACTIONS(6789), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2907] = { + [sym__concat] = ACTIONS(3867), + [anon_sym_esac] = ACTIONS(3869), + [anon_sym_PIPE] = ACTIONS(3869), + [anon_sym_SEMI_SEMI] = ACTIONS(3869), + [anon_sym_PIPE_AMP] = ACTIONS(3869), + [anon_sym_AMP_AMP] = ACTIONS(3869), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3869), + [anon_sym_LF] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3869), + }, + [2908] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6793), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2909] = { + [sym__concat] = ACTIONS(3873), + [anon_sym_esac] = ACTIONS(3875), + [anon_sym_PIPE] = ACTIONS(3875), + [anon_sym_SEMI_SEMI] = ACTIONS(3875), + [anon_sym_PIPE_AMP] = ACTIONS(3875), + [anon_sym_AMP_AMP] = ACTIONS(3875), + [anon_sym_PIPE_PIPE] = ACTIONS(3875), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(3875), + [anon_sym_LF] = ACTIONS(3873), + [anon_sym_AMP] = ACTIONS(3875), + }, + [2910] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6795), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2911] = { + [sym_file_descriptor] = ACTIONS(5178), + [sym__concat] = ACTIONS(5178), + [anon_sym_esac] = ACTIONS(5180), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_SEMI_SEMI] = ACTIONS(5180), + [anon_sym_PIPE_AMP] = ACTIONS(5180), + [anon_sym_AMP_AMP] = ACTIONS(5180), + [anon_sym_PIPE_PIPE] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5180), + [anon_sym_GT_GT] = ACTIONS(5180), + [anon_sym_AMP_GT] = ACTIONS(5180), + [anon_sym_AMP_GT_GT] = ACTIONS(5180), + [anon_sym_LT_AMP] = ACTIONS(5180), + [anon_sym_GT_AMP] = ACTIONS(5180), + [anon_sym_LT_LT] = ACTIONS(5180), + [anon_sym_LT_LT_DASH] = ACTIONS(5180), + [anon_sym_LT_LT_LT] = ACTIONS(5180), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(5180), + [anon_sym_LF] = ACTIONS(5178), + [anon_sym_AMP] = ACTIONS(5180), + }, + [2912] = { + [sym_file_descriptor] = ACTIONS(5182), + [sym__concat] = ACTIONS(5182), + [anon_sym_esac] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_SEMI_SEMI] = ACTIONS(5184), + [anon_sym_PIPE_AMP] = ACTIONS(5184), + [anon_sym_AMP_AMP] = ACTIONS(5184), + [anon_sym_PIPE_PIPE] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5184), + [anon_sym_GT_GT] = ACTIONS(5184), + [anon_sym_AMP_GT] = ACTIONS(5184), + [anon_sym_AMP_GT_GT] = ACTIONS(5184), + [anon_sym_LT_AMP] = ACTIONS(5184), + [anon_sym_GT_AMP] = ACTIONS(5184), + [anon_sym_LT_LT] = ACTIONS(5184), + [anon_sym_LT_LT_DASH] = ACTIONS(5184), + [anon_sym_LT_LT_LT] = ACTIONS(5184), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(5184), + [anon_sym_LF] = ACTIONS(5182), + [anon_sym_AMP] = ACTIONS(5184), + }, + [2913] = { + [sym_file_descriptor] = ACTIONS(5186), + [sym__concat] = ACTIONS(5186), + [anon_sym_esac] = ACTIONS(5188), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_SEMI_SEMI] = ACTIONS(5188), + [anon_sym_PIPE_AMP] = ACTIONS(5188), + [anon_sym_AMP_AMP] = ACTIONS(5188), + [anon_sym_PIPE_PIPE] = ACTIONS(5188), + [anon_sym_LT] = ACTIONS(5188), + [anon_sym_GT] = ACTIONS(5188), + [anon_sym_GT_GT] = ACTIONS(5188), + [anon_sym_AMP_GT] = ACTIONS(5188), + [anon_sym_AMP_GT_GT] = ACTIONS(5188), + [anon_sym_LT_AMP] = ACTIONS(5188), + [anon_sym_GT_AMP] = ACTIONS(5188), + [anon_sym_LT_LT] = ACTIONS(5188), + [anon_sym_LT_LT_DASH] = ACTIONS(5188), + [anon_sym_LT_LT_LT] = ACTIONS(5188), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(5188), + [anon_sym_LF] = ACTIONS(5186), + [anon_sym_AMP] = ACTIONS(5188), + }, + [2914] = { + [sym__concat] = ACTIONS(4621), + [anon_sym_esac] = ACTIONS(4623), + [anon_sym_PIPE] = ACTIONS(4623), + [anon_sym_SEMI_SEMI] = ACTIONS(4623), + [anon_sym_PIPE_AMP] = ACTIONS(4623), + [anon_sym_AMP_AMP] = ACTIONS(4623), + [anon_sym_PIPE_PIPE] = ACTIONS(4623), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_LF] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4623), + }, + [2915] = { + [sym__concat] = ACTIONS(4625), + [anon_sym_esac] = ACTIONS(4627), + [anon_sym_PIPE] = ACTIONS(4627), + [anon_sym_SEMI_SEMI] = ACTIONS(4627), + [anon_sym_PIPE_AMP] = ACTIONS(4627), + [anon_sym_AMP_AMP] = ACTIONS(4627), + [anon_sym_PIPE_PIPE] = ACTIONS(4627), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_LF] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4627), + }, + [2916] = { + [sym__concat] = ACTIONS(4629), + [anon_sym_esac] = ACTIONS(4631), + [anon_sym_PIPE] = ACTIONS(4631), + [anon_sym_SEMI_SEMI] = ACTIONS(4631), + [anon_sym_PIPE_AMP] = ACTIONS(4631), + [anon_sym_AMP_AMP] = ACTIONS(4631), + [anon_sym_PIPE_PIPE] = ACTIONS(4631), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4631), + [anon_sym_LF] = ACTIONS(4629), + [anon_sym_AMP] = ACTIONS(4631), + }, + [2917] = { + [sym__concat] = ACTIONS(4633), + [anon_sym_esac] = ACTIONS(4635), + [anon_sym_PIPE] = ACTIONS(4635), + [anon_sym_SEMI_SEMI] = ACTIONS(4635), + [anon_sym_PIPE_AMP] = ACTIONS(4635), + [anon_sym_AMP_AMP] = ACTIONS(4635), + [anon_sym_PIPE_PIPE] = ACTIONS(4635), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_LF] = ACTIONS(4633), + [anon_sym_AMP] = ACTIONS(4635), + }, + [2918] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6797), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2919] = { + [sym__concat] = ACTIONS(4639), + [anon_sym_esac] = ACTIONS(4641), + [anon_sym_PIPE] = ACTIONS(4641), + [anon_sym_SEMI_SEMI] = ACTIONS(4641), + [anon_sym_PIPE_AMP] = ACTIONS(4641), + [anon_sym_AMP_AMP] = ACTIONS(4641), + [anon_sym_PIPE_PIPE] = ACTIONS(4641), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4641), + [anon_sym_LF] = ACTIONS(4639), + [anon_sym_AMP] = ACTIONS(4641), + }, + [2920] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6799), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2921] = { + [sym__concat] = ACTIONS(4645), + [anon_sym_esac] = ACTIONS(4647), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_SEMI_SEMI] = ACTIONS(4647), + [anon_sym_PIPE_AMP] = ACTIONS(4647), + [anon_sym_AMP_AMP] = ACTIONS(4647), + [anon_sym_PIPE_PIPE] = ACTIONS(4647), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4647), + [anon_sym_LF] = ACTIONS(4645), + [anon_sym_AMP] = ACTIONS(4647), + }, + [2922] = { + [sym_concatenation] = STATE(805), + [sym_string] = STATE(403), + [sym_simple_expansion] = STATE(403), + [sym_string_expansion] = STATE(403), + [sym_expansion] = STATE(403), + [sym_command_substitution] = STATE(403), + [sym_process_substitution] = STATE(403), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(6801), + [anon_sym_EQ] = ACTIONS(1762), + [sym__special_characters] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(746), + [sym_raw_string] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_COLON_QMARK] = ACTIONS(1762), + [anon_sym_COLON_DASH] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(760), + [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_comment] = ACTIONS(166), + [sym_word] = ACTIONS(762), + }, + [2923] = { + [sym__concat] = ACTIONS(4651), + [anon_sym_esac] = ACTIONS(4653), + [anon_sym_PIPE] = ACTIONS(4653), + [anon_sym_SEMI_SEMI] = ACTIONS(4653), + [anon_sym_PIPE_AMP] = ACTIONS(4653), + [anon_sym_AMP_AMP] = ACTIONS(4653), + [anon_sym_PIPE_PIPE] = ACTIONS(4653), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4653), + [anon_sym_LF] = ACTIONS(4651), + [anon_sym_AMP] = ACTIONS(4653), + }, + [2924] = { + [sym__concat] = ACTIONS(4655), + [anon_sym_esac] = ACTIONS(4657), + [anon_sym_PIPE] = ACTIONS(4657), + [anon_sym_SEMI_SEMI] = ACTIONS(4657), + [anon_sym_PIPE_AMP] = ACTIONS(4657), + [anon_sym_AMP_AMP] = ACTIONS(4657), + [anon_sym_PIPE_PIPE] = ACTIONS(4657), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(4657), + [anon_sym_LF] = ACTIONS(4655), + [anon_sym_AMP] = ACTIONS(4657), + }, + [2925] = { + [sym__concat] = ACTIONS(5178), + [anon_sym_esac] = ACTIONS(5180), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_SEMI_SEMI] = ACTIONS(5180), + [anon_sym_PIPE_AMP] = ACTIONS(5180), + [anon_sym_AMP_AMP] = ACTIONS(5180), + [anon_sym_PIPE_PIPE] = ACTIONS(5180), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(5180), + [anon_sym_LF] = ACTIONS(5178), + [anon_sym_AMP] = ACTIONS(5180), + }, + [2926] = { + [sym__concat] = ACTIONS(5182), + [anon_sym_esac] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_SEMI_SEMI] = ACTIONS(5184), + [anon_sym_PIPE_AMP] = ACTIONS(5184), + [anon_sym_AMP_AMP] = ACTIONS(5184), + [anon_sym_PIPE_PIPE] = ACTIONS(5184), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(5184), + [anon_sym_LF] = ACTIONS(5182), + [anon_sym_AMP] = ACTIONS(5184), + }, + [2927] = { + [sym__concat] = ACTIONS(5186), + [anon_sym_esac] = ACTIONS(5188), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_SEMI_SEMI] = ACTIONS(5188), + [anon_sym_PIPE_AMP] = ACTIONS(5188), + [anon_sym_AMP_AMP] = ACTIONS(5188), + [anon_sym_PIPE_PIPE] = ACTIONS(5188), + [sym_comment] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(5188), + [anon_sym_LF] = ACTIONS(5186), + [anon_sym_AMP] = ACTIONS(5188), }, }; static TSParseActionEntry ts_parse_actions[] = { - [0] = {.count = 0, .reusable = false, .depends_on_lookahead = false}, - [1] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(), - [3] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, RECOVER(), - [5] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(), - [7] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, SHIFT_EXTRA(), RECOVER(), - [10] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2), - [12] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3), - [14] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_program, 0), - [16] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4), - [18] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(5), - [20] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(6), - [22] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(7), - [24] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(8), - [26] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(9), - [28] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(10), - [30] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(11), - [32] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(12), - [34] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(13), - [36] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(14), - [38] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(14), - [40] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(15), - [42] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(16), - [44] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(17), - [46] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(18), - [48] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(19), - [50] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(20), - [52] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(21), - [54] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(22), - [56] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT_EXTRA(), - [58] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(23), - [60] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(34), - [62] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(34), - [64] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(35), - [66] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(36), - [68] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(38), - [70] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(43), - [72] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(44), - [74] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(45), - [76] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(46), - [78] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(47), - [80] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(48), - [82] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(49), - [84] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(50), - [86] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(46), - [88] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(52), - [90] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(53), - [92] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(54), - [94] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(55), - [96] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(56), - [98] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(57), - [100] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(58), - [102] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(59), - [104] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(60), - [106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(61), - [108] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(62), - [110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(63), - [112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(64), - [114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(65), - [116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(66), - [118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(67), - [120] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(68), - [122] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(75), - [124] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(76), - [126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(77), - [128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(78), - [130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(79), - [132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(80), - [134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(81), - [136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(82), - [138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(83), - [140] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(79), - [142] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(86), - [144] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(87), - [146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(88), - [148] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(89), - [150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(90), - [152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(91), - [154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(92), - [156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(93), - [158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(94), - [160] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(90), - [162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(97), - [164] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 1), - [166] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(98), - [168] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(99), - [170] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(100), - [172] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(101), - [174] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(102), - [176] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(103), - [178] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(104), - [180] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(105), - [182] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT_EXTRA(), - [184] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(106), - [186] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_unset_command, 1), - [188] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(110), - [190] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(111), - [192] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(112), - [194] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(113), - [196] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(114), - [198] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(115), - [200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(116), - [202] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(117), - [204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(118), - [206] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(121), - [208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(122), - [210] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(123), - [212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(124), - [214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(125), - [216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(126), - [218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(127), - [220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(128), - [222] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(124), - [224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), - [226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(130), - [228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), - [230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(132), - [232] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(133), - [234] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(134), - [236] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(135), - [238] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(136), - [240] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(137), - [242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(139), - [244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(140), - [246] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(141), - [248] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(139), - [250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1), - [252] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1), - [254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(142), - [256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(143), - [258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(144), - [260] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(145), - [262] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(143), - [264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(147), - [266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(148), - [268] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(149), - [270] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(150), - [272] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(151), - [274] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(152), - [276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(153), - [278] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(154), - [280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(155), - [282] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(156), - [284] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(157), - [286] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(158), - [288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(159), - [290] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(160), - [292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(161), - [294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(162), - [296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(163), - [298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(164), - [300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(165), - [302] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(166), - [304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(173), - [306] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(174), - [308] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(175), - [310] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(176), - [312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(177), - [314] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(178), - [316] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(179), - [318] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(180), - [320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(181), - [322] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(182), - [324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(183), - [326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(184), - [328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(185), - [330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(186), - [332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(187), - [334] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(188), - [336] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(196), - [338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), - [340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), - [342] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 1), - [344] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), - [346] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(197), - [348] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(198), - [350] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(199), - [352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(200), - [354] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1), - [356] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(201), - [358] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(202), - [360] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(203), - [362] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(204), - [364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(205), - [366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(16), - [368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(17), - [370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(206), - [372] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(19), - [374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(20), - [376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(21), - [378] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(22), - [380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1), - [382] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1), - [384] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 1), - [386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_program, 1), - [388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(212), - [390] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(15), - [392] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(18), - [394] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(216), - [396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(217), - [398] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(217), - [400] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(219), - [402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(220), - [404] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(221), - [406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(222), - [408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(223), - [410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(224), - [412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(225), - [414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(226), - [416] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(222), - [418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(228), - [420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(229), - [422] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(230), - [424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(231), - [426] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(232), - [428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(233), - [430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(234), - [432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(235), - [434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(236), - [436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(237), - [438] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(233), - [440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_variable_assignment, 2), - [442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_variable_assignment, 2), - [444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(238), - [446] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(239), - [448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(240), - [450] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(242), - [452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(243), - [454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(244), - [456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(245), - [458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(246), - [460] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(248), - [462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(250), - [464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(251), - [466] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(252), - [468] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(250), - [470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(253), - [472] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(254), - [474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(255), - [476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(256), - [478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(257), - [480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(258), - [482] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(256), - [484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(266), - [486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(267), - [488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(269), - [490] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(271), - [492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(274), - [494] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(275), - [496] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(276), - [498] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(277), - [500] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(278), - [502] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(279), - [504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(280), - [506] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(281), - [508] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(282), - [510] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(285), - [512] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(286), - [514] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(287), - [516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(288), - [518] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(289), - [520] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(290), - [522] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(291), - [524] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(292), - [526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(294), - [528] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(296), - [530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(298), - [532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(299), - [534] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(300), - [536] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(298), - [538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(301), - [540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(302), - [542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(303), - [544] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(304), - [546] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(302), - [548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(312), - [550] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(313), - [552] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(314), - [554] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(315), - [556] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(316), - [558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(317), - [560] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(318), - [562] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(319), - [564] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(320), - [566] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(321), - [568] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(61), - [570] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(62), - [572] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(322), - [574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(64), - [576] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(65), - [578] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(66), - [580] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(67), - [582] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(60), - [584] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(63), - [586] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(329), - [588] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(77), - [590] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(78), - [592] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(330), - [594] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(80), - [596] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(81), - [598] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(82), - [600] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(83), - [602] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(331), - [604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(332), - [606] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), - [608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), - [610] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), - [612] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(334), - [614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(336), - [616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(337), - [618] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(338), - [620] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(336), - [622] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1), - [624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), - [626] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), - [628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(339), - [630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(340), - [632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(341), - [634] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(342), - [636] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(340), - [638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(350), - [640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(76), - [642] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(352), - [644] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(88), - [646] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(89), - [648] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(353), - [650] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(91), - [652] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(92), - [654] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(93), - [656] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(94), - [658] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(354), - [660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(355), - [662] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(357), - [664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(359), - [666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(360), - [668] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(361), - [670] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(359), - [672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(362), - [674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(363), - [676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(364), - [678] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(365), - [680] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(363), - [682] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(87), - [684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(374), - [686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(376), - [688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), - [690] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), - [692] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(378), - [694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(99), - [696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(380), - [698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(381), - [700] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(382), - [702] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(380), - [704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [706] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(383), - [710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(384), - [712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(385), - [714] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(386), - [716] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(384), - [718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), - [720] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), - [722] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), - [724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(395), - [726] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), - [728] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(397), - [730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(111), - [732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(399), - [734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(400), - [736] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(401), - [738] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(399), - [740] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1), - [742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(402), - [744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(403), - [746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(404), - [748] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(405), - [750] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(403), - [752] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), - [754] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_unset_command, 2), - [756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), - [758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(414), - [760] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), - [762] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(416), - [764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(418), - [766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(419), - [768] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(420), - [770] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(418), - [772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), - [774] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2), - [776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(421), - [778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(422), - [780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(423), - [782] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(424), - [784] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(422), - [786] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(432), - [788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(432), - [790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), - [792] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), - [794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 2), - [796] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 2), - [798] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(434), - [800] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(435), - [802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(434), - [804] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(436), - [806] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(434), - [808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(437), - [810] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 1), - [812] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 1), - [814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(438), - [816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(439), - [818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(440), - [820] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(441), - [822] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(439), - [824] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(447), - [826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), - [828] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), - [830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string_expansion, 2), - [832] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string_expansion, 2), - [834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), - [836] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), - [838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(449), - [840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(450), - [842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(451), - [844] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(452), - [846] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(453), - [848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(454), - [850] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(455), - [852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(456), - [854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(452), - [856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(457), - [858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(458), - [860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(459), - [862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(460), - [864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(461), - [866] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(456), - [868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(463), - [870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(464), - [872] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(465), - [874] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(464), - [876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(467), - [878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(468), - [880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(470), - [882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(471), - [884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(473), - [886] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(475), - [888] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(478), - [890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(479), - [892] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(479), - [894] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(481), - [896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(487), - [898] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 1), - [900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 1), - [902] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(488), - [904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(489), - [906] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(490), - [908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(491), - [910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(492), - [912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(493), - [914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(494), - [916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(495), - [918] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(496), - [920] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(491), - [922] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_unset_command, 1), - [924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_unset_command, 1), - [926] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(500), - [928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(501), - [930] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(502), - [932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(503), - [934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(504), - [936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(505), - [938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(506), - [940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(507), - [942] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(508), - [944] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(503), - [946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(511), - [948] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), - [950] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(513), - [952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(515), - [954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(516), - [956] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(517), - [958] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(515), - [960] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1), - [962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(518), - [964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(519), - [966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(520), - [968] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(521), - [970] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(519), - [972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(529), - [974] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(530), - [976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(531), - [978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(530), - [980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(532), - [982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(533), - [984] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 1), - [986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 1), - [988] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(534), - [990] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(535), - [992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(535), - [994] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(536), - [996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(536), - [998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(537), - [1000] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(538), - [1002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(539), - [1004] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(539), - [1006] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(158), - [1008] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(161), - [1010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(545), - [1012] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(547), - [1014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(550), - [1016] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(551), - [1018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(552), - [1020] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(553), - [1022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(554), - [1024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(555), - [1026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(556), - [1028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(558), - [1030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(554), - [1032] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(561), - [1034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(562), - [1036] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(563), - [1038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(564), - [1040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(565), - [1042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(566), - [1044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(568), - [1046] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(564), - [1048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(570), - [1050] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(572), - [1052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(574), - [1054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(575), - [1056] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(576), - [1058] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(574), - [1060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(577), - [1062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(578), - [1064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(579), - [1066] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(580), - [1068] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(578), - [1070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(588), - [1072] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(589), - [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(589), - [1076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(590), - [1078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(591), - [1080] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(592), - [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(593), - [1084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(593), - [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(594), - [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(595), - [1090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(596), - [1092] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(596), - [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(180), - [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(183), - [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(600), - [1100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(601), - [1102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), - [1104] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__terminated_statement, 2), - [1106] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), - [1108] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(606), - [1110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(606), - [1112] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(607), - [1114] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(608), - [1116] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(609), - [1118] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(610), - [1120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(611), - [1122] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(612), - [1124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(613), - [1126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(614), - [1128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(615), - [1130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(616), - [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(617), - [1134] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(613), - [1136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(619), - [1138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(620), - [1140] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(622), - [1142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(623), - [1144] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(623), - [1146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 1), - [1148] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 1), - [1150] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2), - [1152] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2), - [1155] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), - [1158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), - [1160] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), - [1163] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), - [1166] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), - [1169] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), - [1172] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), - [1175] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), - [1178] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), - [1181] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), - [1184] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), - [1187] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13), - [1190] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), - [1193] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), - [1196] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), - [1199] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16), - [1202] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), - [1205] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), - [1208] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19), - [1211] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(20), - [1214] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(21), - [1217] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(22), - [1220] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(23), - [1223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(628), - [1225] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), - [1228] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(212), - [1231] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(14), - [1234] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(14), - [1237] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), - [1239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), - [1241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), - [1243] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), - [1245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), - [1247] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3), - [1249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(630), - [1251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(631), - [1253] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(633), - [1255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(635), - [1257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(636), - [1259] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(637), - [1261] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(635), - [1263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(638), - [1265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(639), - [1267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(640), - [1269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(641), - [1271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(642), - [1273] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(643), - [1275] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(641), - [1277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(651), - [1279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), - [1281] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), - [1283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(652), - [1285] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(653), - [1287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(654), - [1289] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(655), - [1291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(656), - [1293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(657), - [1295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(658), - [1297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(659), - [1299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(660), - [1301] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(656), - [1303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), - [1305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(663), - [1307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), - [1309] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(665), - [1311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(667), - [1313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(668), - [1315] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(669), - [1317] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(667), - [1319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(670), - [1321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(671), - [1323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(672), - [1325] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(673), - [1327] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(671), - [1329] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(681), - [1331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(682), - [1333] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(683), - [1335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(684), - [1337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(685), - [1339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(686), - [1341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(687), - [1343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(688), - [1345] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(684), - [1347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(691), - [1349] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(693), - [1351] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), - [1353] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(699), - [1355] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(700), - [1357] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(701), - [1359] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(709), - [1361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(709), - [1363] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(710), - [1365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(711), - [1367] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(713), - [1369] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(714), - [1371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(715), - [1373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(716), - [1375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(717), - [1377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(718), - [1379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(720), - [1381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(721), - [1383] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(722), - [1385] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(721), - [1387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(724), - [1389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(725), - [1391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(727), - [1393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(728), - [1395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(730), - [1397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(731), - [1399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(732), - [1401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(733), - [1403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(738), - [1405] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), - [1407] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(739), - [1409] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(741), - [1411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(742), - [1413] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(743), - [1415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(744), - [1417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745), - [1419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(746), - [1421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(747), - [1423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(748), - [1425] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(744), - [1427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(750), - [1429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(752), - [1431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(753), - [1433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(754), - [1435] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(756), - [1437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(276), - [1439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(758), - [1441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(759), - [1443] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(760), - [1445] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(758), - [1447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(761), - [1449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(762), - [1451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(763), - [1453] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(764), - [1455] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(762), - [1457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(773), - [1459] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(775), - [1461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(286), - [1463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(777), - [1465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(778), - [1467] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(779), - [1469] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(777), - [1471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(780), - [1473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(781), - [1475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(782), - [1477] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(783), - [1479] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(781), - [1481] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(792), - [1483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(792), - [1485] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(794), - [1487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(795), - [1489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(796), - [1491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(797), - [1493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(799), - [1495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(800), - [1497] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(801), - [1499] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(800), - [1501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(803), - [1503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(804), - [1505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(806), - [1507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(807), - [1509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(809), - [1511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(810), - [1513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(811), - [1515] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), - [1517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(812), - [1519] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(815), - [1521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(815), - [1523] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(816), - [1525] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(817), - [1527] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(818), - [1529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(819), - [1531] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(820), - [1533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(821), - [1535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(822), - [1537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(823), - [1539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(824), - [1541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(825), - [1543] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(821), - [1545] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(826), - [1547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(827), - [1549] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(827), - [1551] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(812), - [1553] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(831), - [1555] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), - [1557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), - [1559] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), - [1561] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), - [1563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), - [1565] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), - [1567] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(833), - [1569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(833), - [1571] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenation, 2), - [1573] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 2), - [1575] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(835), - [1577] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), - [1579] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string_expansion, 2), - [1581] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), - [1583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(836), - [1585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(837), - [1587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(838), - [1589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(840), - [1591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(841), - [1593] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(842), - [1595] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(841), - [1597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(844), - [1599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(845), - [1601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(847), - [1603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(848), - [1605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), - [1607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(851), - [1609] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), - [1611] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(75), - [1614] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(76), - [1617] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(77), - [1620] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(78), - [1623] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(79), - [1626] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(80), - [1629] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(81), - [1632] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(82), - [1635] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(83), - [1638] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(79), - [1641] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(853), - [1643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(853), - [1645] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(855), - [1647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(856), - [1649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(857), - [1651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(858), - [1653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(860), - [1655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(861), - [1657] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(862), - [1659] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(861), - [1661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(864), - [1663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(865), - [1665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(867), - [1667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(868), - [1669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(870), - [1671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(871), - [1673] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(86), - [1676] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(87), - [1679] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(88), - [1682] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(89), - [1685] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(90), - [1688] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(91), - [1691] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(92), - [1694] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(93), - [1697] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(94), - [1700] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(90), - [1703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(872), - [1705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(873), - [1707] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(874), - [1709] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(100), - [1711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(875), - [1713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(102), - [1715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(103), - [1717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(104), - [1719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(105), - [1721] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(875), - [1723] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(876), - [1725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(876), - [1727] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(878), - [1729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(879), - [1731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(880), - [1733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(881), - [1735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(883), - [1737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(884), - [1739] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(885), - [1741] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(884), - [1743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(887), - [1745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(888), - [1747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(890), - [1749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(891), - [1751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(893), - [1753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(894), - [1755] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(97), - [1758] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1760] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(98), - [1763] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(99), - [1766] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(100), - [1769] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(101), - [1772] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(102), - [1775] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(103), - [1778] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(104), - [1781] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(105), - [1784] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(106), - [1787] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(895), - [1789] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(112), - [1791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(895), - [1793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(114), - [1795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(115), - [1797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(116), - [1799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(117), - [1801] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(897), - [1803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(898), - [1805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(899), - [1807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(900), - [1809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(902), - [1811] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(903), - [1813] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(904), - [1815] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(903), - [1817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(906), - [1819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(907), - [1821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(909), - [1823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(910), - [1825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(912), - [1827] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(913), - [1829] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), - [1831] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(110), - [1834] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(111), - [1837] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(112), - [1840] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(113), - [1843] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(114), - [1846] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(115), - [1849] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(116), - [1852] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(117), - [1855] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(118), - [1858] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(914), - [1860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(914), - [1862] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(916), - [1864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(917), - [1866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(918), - [1868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(919), - [1870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(921), - [1872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), - [1874] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(923), - [1876] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(922), - [1878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(925), - [1880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(926), - [1882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(928), - [1884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(929), - [1886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(931), - [1888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(932), - [1890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1892] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1894] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(130), - [1897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(933), - [1899] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), - [1901] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), - [1903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(934), - [1905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(935), - [1907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(936), - [1909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(938), - [1911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(939), - [1913] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(940), - [1915] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(939), - [1917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(942), - [1919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(943), - [1921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(945), - [1923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), - [1925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(948), - [1927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 3), - [1929] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 3), - [1931] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(133), - [1934] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(134), - [1937] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(135), - [1940] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(136), - [1943] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(137), - [1946] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(949), - [1948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(950), - [1950] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(950), - [1952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(952), - [1954] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(953), - [1956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(954), - [1958] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(955), - [1960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(956), - [1962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(957), - [1964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(958), - [1966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), - [1968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(960), - [1970] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(956), - [1972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [1974] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [1976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1), - [1978] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 1), - [1980] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1), - [1982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(962), - [1984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1986] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1988] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1990] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(964), - [1992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966), - [1994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(967), - [1996] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(968), - [1998] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(966), - [2000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(969), - [2002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(970), - [2004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(971), - [2006] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(972), - [2008] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(970), - [2010] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(974), - [2012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(981), - [2014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(983), - [2016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(984), - [2018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(985), - [2020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(987), - [2022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(988), - [2024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(990), - [2026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), - [2028] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), - [2030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(992), - [2032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(993), - [2034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), - [2036] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), - [2038] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(994), - [2040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(995), - [2042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(996), - [2044] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(997), - [2046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(998), - [2048] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(999), - [2050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000), - [2052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1001), - [2054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1002), - [2056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), - [2058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1004), - [2060] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1000), - [2062] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_variable_assignment, 2), - [2064] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1005), - [2066] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1006), - [2068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1007), - [2070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1009), - [2072] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1010), - [2074] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1011), - [2076] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1012), - [2078] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1013), - [2080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1014), - [2082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1015), - [2084] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1017), - [2086] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1018), - [2088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1021), - [2090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1022), - [2092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1024), - [2094] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), - [2096] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1026), - [2098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1028), - [2100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1029), - [2102] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1030), - [2104] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1028), - [2106] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [2108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1031), - [2110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1032), - [2112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1033), - [2114] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1034), - [2116] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1032), - [2118] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), - [2120] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 2), - [2122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), - [2124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1043), - [2126] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), - [2128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), - [2130] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1045), - [2132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1047), - [2134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1048), - [2136] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1049), - [2138] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1047), - [2140] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 1), - [2142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1), - [2144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1050), - [2146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1051), - [2148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1052), - [2150] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1053), - [2152] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1051), - [2154] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), - [2156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), - [2158] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_unset_command, 2), - [2160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_unset_command, 2), - [2162] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1062), - [2164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1062), - [2166] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1064), - [2168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1065), - [2170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1066), - [2172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1067), - [2174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1069), - [2176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1070), - [2178] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1071), - [2180] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1070), - [2182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1073), - [2184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1074), - [2186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1076), - [2188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1077), - [2190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1079), - [2192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1080), - [2194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1081), - [2196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), - [2198] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), - [2200] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1086), - [2202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1086), - [2204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1087), - [2206] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(159), - [2208] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(160), - [2210] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1088), - [2212] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(162), - [2214] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(163), - [2216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(164), - [2218] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(165), - [2220] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1089), - [2222] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1090), - [2224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1091), - [2226] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1092), - [2228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093), - [2230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1094), - [2232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1095), - [2234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096), - [2236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1097), - [2238] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1093), - [2240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1099), - [2242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1100), - [2244] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1102), - [2246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1103), - [2248] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1103), - [2250] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 1), - [2252] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 2), - [2254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2), - [2256] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1109), - [2258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1110), - [2260] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1111), - [2262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112), - [2264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1113), - [2266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1114), - [2268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1115), - [2270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1116), - [2272] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1112), - [2274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1118), - [2276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1120), - [2278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1121), - [2280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1122), - [2282] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1124), - [2284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1126), - [2286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1127), - [2288] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1128), - [2290] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1126), - [2292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1129), - [2294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1130), - [2296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1131), - [2298] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1132), - [2300] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1130), - [2302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1141), - [2304] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1143), - [2306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1145), - [2308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1146), - [2310] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1147), - [2312] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1145), - [2314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1148), - [2316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1149), - [2318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1150), - [2320] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1151), - [2322] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1149), - [2324] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1160), - [2326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1160), - [2328] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1162), - [2330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1163), - [2332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1164), - [2334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1165), - [2336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1167), - [2338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1168), - [2340] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1169), - [2342] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1168), - [2344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1171), - [2346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1172), - [2348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1174), - [2350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1175), - [2352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1177), - [2354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1178), - [2356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1179), - [2358] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1183), - [2360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), - [2362] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1184), - [2364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(181), - [2366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(182), - [2368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1185), - [2370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(184), - [2372] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(185), - [2374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(186), - [2376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(187), - [2378] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1186), - [2380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1187), - [2382] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1188), - [2384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1189), - [2386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1190), - [2388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1191), - [2390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1192), - [2392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1193), - [2394] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1189), - [2396] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1194), - [2398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1195), - [2400] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1195), - [2402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), - [2404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), - [2406] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), - [2408] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_list, 3), - [2410] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1201), - [2412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1202), - [2414] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1202), - [2416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1204), - [2418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), - [2420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1206), - [2422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1208), - [2424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1209), - [2426] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1210), - [2428] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1208), - [2430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), - [2432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1211), - [2434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1212), - [2436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1213), - [2438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1214), - [2440] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1212), - [2442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), - [2444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), - [2446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1222), - [2448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1223), - [2450] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1224), - [2452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1225), - [2454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), - [2456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), - [2458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), - [2460] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), - [2462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2), - [2464] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2), - [2466] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(200), - [2469] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), - [2471] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(202), - [2474] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(203), - [2477] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(204), - [2480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), - [2482] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(201), - [2485] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(205), - [2488] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(16), - [2491] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(17), - [2494] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(206), - [2497] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(19), - [2500] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(20), - [2503] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), - [2506] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), - [2509] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1227), - [2511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1228), - [2513] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1228), - [2515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1230), - [2517] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1231), - [2519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1231), - [2521] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1231), - [2523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1232), - [2525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), - [2527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1233), - [2529] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1235), - [2531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1236), - [2533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1237), - [2535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), - [2537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1238), - [2539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1239), - [2541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1240), - [2543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242), - [2545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1243), - [2547] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1244), - [2549] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1243), - [2551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1246), - [2553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1247), - [2555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1249), - [2557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1250), - [2559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1252), - [2561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1253), - [2563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 2), - [2565] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 2), - [2567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1254), - [2569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [2571] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [2573] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1256), - [2575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1258), - [2577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1259), - [2579] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1260), - [2581] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1258), - [2583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [2585] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1), - [2587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1261), - [2589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1262), - [2591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1263), - [2593] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1264), - [2595] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1262), - [2597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1272), - [2599] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1274), - [2601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1274), - [2603] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1276), - [2605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1277), - [2607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1278), - [2609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1279), - [2611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1281), - [2613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1282), - [2615] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1283), - [2617] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1282), - [2619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1285), - [2621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1286), - [2623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1288), - [2625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1289), - [2627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1291), - [2629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1292), - [2631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1293), - [2633] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [2635] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1295), - [2637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1297), - [2639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1298), - [2641] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1299), - [2643] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1297), - [2645] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [2647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1300), - [2649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1301), - [2651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1302), - [2653] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1303), - [2655] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1301), - [2657] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1311), - [2659] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(681), - [2661] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(682), - [2663] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(683), - [2665] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(684), - [2667] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(685), - [2669] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(686), - [2671] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(687), - [2673] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(688), - [2675] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1313), - [2677] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), - [2679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), - [2681] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), - [2683] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1315), - [2685] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1316), - [2687] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 4), - [2689] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), - [2691] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 1), - [2693] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1323), - [2695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), - [2697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1324), - [2699] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1324), - [2701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(700), - [2703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(701), - [2705] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1329), - [2707] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1330), - [2709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1331), - [2711] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1332), - [2713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1333), - [2715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1334), - [2717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1335), - [2719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1336), - [2721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1337), - [2723] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1333), - [2725] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1342), - [2727] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(244), - [2730] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1343), - [2732] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1346), - [2734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1347), - [2736] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1348), - [2738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1349), - [2740] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1349), - [2742] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1351), - [2744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1352), - [2746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1353), - [2748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1354), - [2750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1355), - [2752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1357), - [2754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1358), - [2756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1360), - [2758] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1362), - [2760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1363), - [2762] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1364), - [2764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [2766] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [2768] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1366), - [2770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1367), - [2772] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1369), - [2774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1369), - [2776] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1370), - [2778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1371), - [2780] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1372), - [2782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1373), - [2784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1374), - [2786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1375), - [2788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1376), - [2790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1377), - [2792] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1373), - [2794] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [2796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1379), - [2798] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1381), - [2800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1383), - [2802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1384), - [2804] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1385), - [2806] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1383), - [2808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1386), - [2810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1387), - [2812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1388), - [2814] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1389), - [2816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1387), - [2818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1398), - [2820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1399), - [2822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1400), - [2824] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1402), - [2826] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(277), - [2828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1403), - [2830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(279), - [2832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(280), - [2834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(281), - [2836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(282), - [2838] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1403), - [2840] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1404), - [2842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1404), - [2844] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1406), - [2846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1407), - [2848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1408), - [2850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1409), - [2852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1411), - [2854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1412), - [2856] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1413), - [2858] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1412), - [2860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1415), - [2862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1416), - [2864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1418), - [2866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1419), - [2868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1421), - [2870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1422), - [2872] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(274), - [2875] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(275), - [2878] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(276), - [2881] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(277), - [2884] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(278), - [2887] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(279), - [2890] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(280), - [2893] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(281), - [2896] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(282), - [2899] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1423), - [2901] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(287), - [2903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1423), - [2905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(289), - [2907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(290), - [2909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(291), - [2911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(292), - [2913] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1425), - [2915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1426), - [2917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1427), - [2919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1428), - [2921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1430), - [2923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1431), - [2925] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1432), - [2927] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1431), - [2929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1434), - [2931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1435), - [2933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1437), - [2935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1438), - [2937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1440), - [2939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1441), - [2941] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(285), - [2944] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(286), - [2947] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(287), - [2950] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(288), - [2953] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(289), - [2956] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(290), - [2959] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(291), - [2962] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(292), - [2965] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(294), - [2968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1442), - [2970] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1443), - [2972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1444), - [2974] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1444), - [2976] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1446), - [2978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1447), - [2980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1448), - [2982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1449), - [2984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1450), - [2986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1452), - [2988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1453), - [2990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1455), - [2992] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1457), - [2994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1458), - [2996] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1459), - [2998] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), - [3000] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1461), - [3002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1462), - [3004] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1462), - [3006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1463), - [3008] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1465), - [3010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1467), - [3012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1468), - [3014] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1469), - [3016] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1467), - [3018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1470), - [3020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1471), - [3022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1472), - [3024] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1473), - [3026] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1471), - [3028] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(317), - [3031] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(319), - [3034] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(320), - [3037] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(318), - [3040] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(321), - [3043] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(61), - [3046] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(62), - [3049] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(322), - [3052] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(64), - [3055] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(65), - [3058] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(66), - [3061] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(67), - [3064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1481), - [3066] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2), - [3068] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(332), - [3071] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 3), - [3073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1483), - [3075] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1484), - [3077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1485), - [3079] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1485), - [3081] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [3083] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1487), - [3085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1488), - [3087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1489), - [3089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1490), - [3091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1491), - [3093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1493), - [3095] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1494), - [3097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1496), - [3099] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), - [3101] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1498), - [3103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1499), - [3105] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3), - [3107] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1500), - [3109] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_substitution, 3), - [3111] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_process_substitution, 3), - [3113] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 4), - [3115] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(355), - [3118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1501), - [3120] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1502), - [3122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1503), - [3124] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1503), - [3126] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1505), - [3128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1506), - [3130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1507), - [3132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1508), - [3134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1509), - [3136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1511), - [3138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1512), - [3140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1514), - [3142] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1516), - [3144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1517), - [3146] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1518), - [3148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1519), - [3150] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(376), - [3153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1521), - [3155] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1522), - [3157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1523), - [3159] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1523), - [3161] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1525), - [3163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1526), - [3165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1527), - [3167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1528), - [3169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1529), - [3171] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1531), - [3173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1532), - [3175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1534), - [3177] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1536), - [3179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1537), - [3181] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1538), - [3183] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(395), - [3186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1539), - [3188] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1540), - [3190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1541), - [3192] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1541), - [3194] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1543), - [3196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1544), - [3198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1545), - [3200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1546), - [3202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1547), - [3204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1549), - [3206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1550), - [3208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1552), - [3210] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1554), - [3212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1555), - [3214] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1556), - [3216] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(414), - [3219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1557), - [3221] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1558), - [3223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1559), - [3225] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1559), - [3227] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1561), - [3229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1562), - [3231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1563), - [3233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1564), - [3235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1565), - [3237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1567), - [3239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1568), - [3241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1570), - [3243] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1572), - [3245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1573), - [3247] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1574), - [3249] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 3), - [3251] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 3), - [3253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1575), - [3255] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1576), - [3257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1577), - [3259] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1577), - [3261] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1579), - [3263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1580), - [3265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1581), - [3267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1582), - [3269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1583), - [3271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1585), - [3273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1586), - [3275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1588), - [3277] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1590), - [3279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1591), - [3281] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1592), - [3283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1593), - [3285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1594), - [3287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1595), - [3289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1596), - [3291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1597), - [3293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), - [3295] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), - [3297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1598), - [3299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1599), - [3301] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1601), - [3303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1603), - [3305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1604), - [3307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1605), - [3309] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1603), - [3311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1606), - [3313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1607), - [3315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1608), - [3317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1609), - [3319] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1610), - [3321] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1608), - [3323] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1618), - [3325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1618), - [3327] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1620), - [3329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1621), - [3331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1622), - [3333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1623), - [3335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1625), - [3337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1626), - [3339] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1627), - [3341] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1626), - [3343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1629), - [3345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1630), - [3347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1632), - [3349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1633), - [3351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1635), - [3353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1637), - [3355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1638), - [3357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [3359] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [3361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), - [3363] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(452), - [3366] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(453), - [3369] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(454), - [3372] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(455), - [3375] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(456), - [3378] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(452), - [3381] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(457), - [3384] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(459), - [3387] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(460), - [3390] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(461), - [3393] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(456), - [3396] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1639), - [3398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1640), - [3400] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1640), - [3402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), - [3404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), - [3406] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1642), - [3408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1643), - [3410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), - [3412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), - [3414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1644), - [3416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1645), - [3418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1646), - [3420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1647), - [3422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), - [3424] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), - [3426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1649), - [3428] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2), - [3430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1651), - [3432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1653), - [3434] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), - [3436] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1655), - [3438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1657), - [3440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1658), - [3442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1659), - [3444] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1657), - [3446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1660), - [3448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1661), - [3450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1662), - [3452] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1663), - [3454] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1661), - [3456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1672), - [3458] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1674), - [3460] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 3), - [3462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), - [3464] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1677), - [3466] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1681), - [3468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1682), - [3470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1683), - [3472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1684), - [3474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1685), - [3476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1686), - [3478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1688), - [3480] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), - [3482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), - [3484] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1689), - [3486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1689), - [3488] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 3), - [3490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), - [3492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1691), - [3494] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1691), - [3496] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1692), - [3498] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 3), - [3500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), - [3502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1694), - [3504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1695), - [3506] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1696), - [3508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1697), - [3510] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1697), - [3512] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1698), - [3514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1698), - [3516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1700), - [3518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1701), - [3520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1702), - [3522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1703), - [3524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1705), - [3526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1706), - [3528] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1707), - [3530] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1706), - [3532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1709), - [3534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1710), - [3536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1712), - [3538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1713), - [3540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1715), - [3542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1716), - [3544] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(487), - [3547] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [3549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [3551] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(488), - [3554] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(489), - [3557] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(490), - [3560] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(491), - [3563] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(492), - [3566] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(493), - [3569] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(494), - [3572] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(495), - [3575] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(496), - [3578] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(491), - [3581] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1717), - [3583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1717), - [3585] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1719), - [3587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1720), - [3589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1721), - [3591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1722), - [3593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1724), - [3595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1725), - [3597] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1726), - [3599] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1725), - [3601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1728), - [3603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1729), - [3605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1731), - [3607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1732), - [3609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1734), - [3611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1735), - [3613] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), - [3615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), - [3617] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(500), - [3620] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(501), - [3623] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(502), - [3626] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(503), - [3629] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(504), - [3632] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(505), - [3635] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(506), - [3638] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(507), - [3641] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(508), - [3644] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(503), - [3647] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(511), - [3650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1736), - [3652] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1737), - [3654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1738), - [3656] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1738), - [3658] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1740), - [3660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1741), - [3662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1742), - [3664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1743), - [3666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1744), - [3668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1746), - [3670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1747), - [3672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1749), - [3674] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1751), - [3676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1752), - [3678] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1753), - [3680] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pipeline, 3), - [3682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), - [3684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 3), - [3686] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1755), - [3688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1756), - [3690] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1756), - [3692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1758), - [3694] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1760), - [3696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1762), - [3698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1763), - [3700] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1764), - [3702] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1762), - [3704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1765), - [3706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1766), - [3708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1767), - [3710] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1768), - [3712] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1766), - [3714] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 1), - [3716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1776), - [3718] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc_redirect, 2), - [3720] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), - [3722] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_herestring_redirect, 2), - [3724] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(533), - [3727] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), - [3729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), - [3731] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(535), - [3734] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(535), - [3737] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(536), - [3740] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(536), - [3743] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(537), - [3746] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 3), - [3748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3), - [3750] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(534), - [3753] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(538), - [3756] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(159), - [3759] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(160), - [3762] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(539), - [3765] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(162), - [3768] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(163), - [3771] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(164), - [3774] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(165), - [3777] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(539), - [3780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1779), - [3782] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1781), - [3784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1783), - [3786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1784), - [3788] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1785), - [3790] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1783), - [3792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1786), - [3794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1787), - [3796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1788), - [3798] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1789), - [3800] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1787), - [3802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1798), - [3804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1799), - [3806] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1800), - [3808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1800), - [3810] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1802), - [3812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1803), - [3814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(557), - [3816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1803), - [3818] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1804), - [3820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1804), - [3822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1806), - [3824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1807), - [3826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1808), - [3828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1809), - [3830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1811), - [3832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1812), - [3834] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1813), - [3836] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1812), - [3838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1815), - [3840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1816), - [3842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1818), - [3844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1819), - [3846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1821), - [3848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1822), - [3850] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(550), - [3853] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(551), - [3856] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(552), - [3859] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(553), - [3862] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(554), - [3865] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(555), - [3868] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(556), - [3871] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(557), - [3874] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(558), - [3877] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(554), - [3880] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1823), - [3882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1823), - [3884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(567), - [3886] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1825), - [3888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1826), - [3890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1827), - [3892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1828), - [3894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1830), - [3896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1831), - [3898] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1832), - [3900] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1831), - [3902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1834), - [3904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1835), - [3906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1837), - [3908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1838), - [3910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1840), - [3912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1841), - [3914] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(561), - [3917] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(562), - [3920] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(563), - [3923] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(564), - [3926] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(565), - [3929] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(566), - [3932] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(567), - [3935] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(568), - [3938] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(564), - [3941] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(570), - [3944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1842), - [3946] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1843), - [3948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1844), - [3950] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1844), - [3952] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1846), - [3954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1847), - [3956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1848), - [3958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1849), - [3960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1850), - [3962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1852), - [3964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1853), - [3966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1855), - [3968] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1857), - [3970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1858), - [3972] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1859), - [3974] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1861), - [3976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1862), - [3978] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1862), - [3980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1863), - [3982] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1865), - [3984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1867), - [3986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1868), - [3988] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1869), - [3990] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1867), - [3992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1870), - [3994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1871), - [3996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1872), - [3998] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1873), - [4000] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1871), - [4002] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(591), - [4005] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(593), - [4008] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(593), - [4011] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(594), - [4014] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(592), - [4017] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(595), - [4020] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(181), - [4023] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(182), - [4026] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(596), - [4029] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(184), - [4032] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(185), - [4035] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(186), - [4038] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(187), - [4041] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(596), - [4044] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), - [4046] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), - [4048] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1883), - [4050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1883), - [4052] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1885), - [4054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1886), - [4056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1887), - [4058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1888), - [4060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1890), - [4062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1891), - [4064] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1892), - [4066] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1891), - [4068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1894), - [4070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1895), - [4072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1897), - [4074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1898), - [4076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1900), - [4078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1901), - [4080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), - [4082] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), - [4084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), - [4086] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), - [4088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1902), - [4090] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1903), - [4092] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1902), - [4094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1904), - [4096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1905), - [4098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1906), - [4100] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1907), - [4102] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1905), - [4104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1909), - [4106] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), - [4108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1911), - [4110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), - [4112] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1233), - [4115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1912), - [4117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5), - [4119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1913), - [4121] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1914), - [4123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1915), - [4125] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1915), - [4127] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1917), - [4129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1918), - [4131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1919), - [4133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1920), - [4135] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1921), - [4137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1923), - [4139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1924), - [4141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1926), - [4143] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1928), - [4145] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1929), - [4147] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1930), - [4149] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1931), - [4151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1931), - [4153] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1933), - [4155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1934), - [4157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1935), - [4159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1936), - [4161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1938), - [4163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1939), - [4165] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1940), - [4167] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1939), - [4169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1942), - [4171] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1943), - [4173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1945), - [4175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1946), - [4177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1948), - [4179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1949), - [4181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 3), - [4183] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 3), - [4185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [4187] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(653), - [4190] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(654), - [4193] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(655), - [4196] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(656), - [4199] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(657), - [4202] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(658), - [4205] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(659), - [4208] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(660), - [4211] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(656), - [4214] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(663), - [4217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1950), - [4219] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1951), - [4221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1952), - [4223] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1952), - [4225] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1954), - [4227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1955), - [4229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1956), - [4231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1957), - [4233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1958), - [4235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1960), - [4237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1961), - [4239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1963), - [4241] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1965), - [4243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1966), - [4245] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1967), - [4247] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1968), - [4249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1968), - [4251] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1970), - [4253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1971), - [4255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1972), - [4257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1973), - [4259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1975), - [4261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1976), - [4263] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1977), - [4265] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1976), - [4267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1979), - [4269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1980), - [4271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1982), - [4273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1983), - [4275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1985), - [4277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1986), - [4279] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [4281] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(681), - [4284] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(682), - [4287] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(683), - [4290] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(684), - [4293] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(685), - [4296] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(686), - [4299] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(687), - [4302] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(688), - [4305] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1988), - [4307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), - [4309] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), - [4311] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), - [4313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1989), - [4315] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1990), - [4317] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), - [4319] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [4321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1992), - [4323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), - [4325] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(700), - [4328] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [4330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1994), - [4332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1995), - [4334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1996), - [4336] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1999), - [4338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2001), - [4340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2002), - [4342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2003), - [4344] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2001), - [4346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2004), - [4348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2006), - [4350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2007), - [4352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2008), - [4354] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2009), - [4356] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2007), - [4358] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), - [4360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), - [4362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2017), - [4364] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1333), - [4366] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2020), - [4368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), - [4370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2022), - [4372] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2024), - [4374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2026), - [4376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2027), - [4378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2028), - [4380] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2030), - [4382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2031), - [4384] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2031), - [4386] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2033), - [4388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2034), - [4390] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2035), - [4392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2036), - [4394] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2037), - [4396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2038), - [4398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2040), - [4400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), - [4402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [4404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [4406] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2043), - [4408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2044), - [4410] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2044), - [4412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2046), - [4414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2048), - [4416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2050), - [4418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2051), - [4420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2052), - [4422] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2050), - [4424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2053), - [4426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2054), - [4428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2055), - [4430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2056), - [4432] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2054), - [4434] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2064), - [4436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2064), - [4438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2066), - [4440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2067), - [4442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2068), - [4444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2069), - [4446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2071), - [4448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2072), - [4450] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2073), - [4452] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2072), - [4454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2075), - [4456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2076), - [4458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2078), - [4460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2079), - [4462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2081), - [4464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2082), - [4466] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2084), - [4468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2084), - [4470] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2085), - [4472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2086), - [4474] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2087), - [4476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2088), - [4478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2089), - [4480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2090), - [4482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2091), - [4484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2092), - [4486] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2088), - [4488] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(754), - [4491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2093), - [4493] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2094), - [4495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2095), - [4497] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2095), - [4499] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2097), - [4501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2098), - [4503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2099), - [4505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2100), - [4507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2101), - [4509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2103), - [4511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2104), - [4513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2106), - [4515] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2108), - [4517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2109), - [4519] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2110), - [4521] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(773), - [4524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2111), - [4526] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2112), - [4528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2113), - [4530] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2113), - [4532] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2115), - [4534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2116), - [4536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2117), - [4538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2118), - [4540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2119), - [4542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2121), - [4544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2122), - [4546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2124), - [4548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2126), - [4550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2127), - [4552] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2128), - [4554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2129), - [4556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2130), - [4558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2131), - [4560] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2133), - [4562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2134), - [4564] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2134), - [4566] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2136), - [4568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2137), - [4570] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2138), - [4572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2139), - [4574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2140), - [4576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2141), - [4578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2143), - [4580] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2145), - [4582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2145), - [4584] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2147), - [4586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2148), - [4588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2149), - [4590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2150), - [4592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2152), - [4594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2153), - [4596] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2154), - [4598] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2153), - [4600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2156), - [4602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2157), - [4604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2159), - [4606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2160), - [4608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2162), - [4610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2163), - [4612] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), - [4614] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4), - [4616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2164), - [4618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2165), - [4620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2166), - [4622] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [4624] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2168), - [4626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2169), - [4628] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2169), - [4630] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), - [4632] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2171), - [4634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2172), - [4636] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), - [4638] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2173), - [4640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2174), - [4642] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2175), - [4644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2176), - [4646] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), - [4648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2178), - [4650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2180), - [4652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2181), - [4654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2182), - [4656] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2184), - [4658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2185), - [4660] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2185), - [4662] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2187), - [4664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2188), - [4666] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2189), - [4668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2190), - [4670] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2191), - [4672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2192), - [4674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2194), - [4676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2196), - [4678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2197), - [4680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2198), - [4682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2199), - [4684] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2201), - [4686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2202), - [4688] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2202), - [4690] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2204), - [4692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2205), - [4694] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2206), - [4696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2207), - [4698] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2208), - [4700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2209), - [4702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2211), - [4704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2213), - [4706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2214), - [4708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2215), - [4710] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2217), - [4712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2218), - [4714] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2218), - [4716] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2220), - [4718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2221), - [4720] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2222), - [4722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2223), - [4724] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2224), - [4726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2225), - [4728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2227), - [4730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2229), - [4732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2230), - [4734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2231), - [4736] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2233), - [4738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2234), - [4740] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2234), - [4742] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2236), - [4744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2237), - [4746] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2238), - [4748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2239), - [4750] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2240), - [4752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2241), - [4754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2243), - [4756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2245), - [4758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2246), - [4760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2247), - [4762] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2249), - [4764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2250), - [4766] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2250), - [4768] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2252), - [4770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2253), - [4772] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2254), - [4774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2255), - [4776] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2256), - [4778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2257), - [4780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2259), - [4782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2261), - [4784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2262), - [4786] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), - [4788] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), - [4790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2263), - [4792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2264), - [4794] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 4), - [4796] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), - [4798] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2265), - [4800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2265), - [4802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), - [4804] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), - [4806] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2267), - [4808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), - [4810] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), - [4812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2268), - [4814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2269), - [4816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2270), - [4818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2272), - [4820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2273), - [4822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2274), - [4824] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2273), - [4826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2276), - [4828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2277), - [4830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2279), - [4832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2280), - [4834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2282), - [4836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2283), - [4838] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(962), - [4841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2284), - [4843] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2285), - [4845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2286), - [4847] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2286), - [4849] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2288), - [4851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2289), - [4853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2290), - [4855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2291), - [4857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2292), - [4859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2294), - [4861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2295), - [4863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2297), - [4865] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2299), - [4867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2300), - [4869] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2301), - [4871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), - [4873] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), - [4875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2302), - [4877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2303), - [4879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2304), - [4881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2305), - [4883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [4885] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [4887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2307), - [4889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [4891] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [4893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2309), - [4895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), - [4897] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), - [4899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2311), - [4901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), - [4903] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), - [4905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2312), - [4907] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 2), - [4909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2313), - [4911] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2314), - [4913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2314), - [4915] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2316), - [4917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2317), - [4919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2318), - [4921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2319), - [4923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2321), - [4925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2322), - [4927] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2323), - [4929] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2322), - [4931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2325), - [4933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2326), - [4935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2328), - [4937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2329), - [4939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2331), - [4941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2332), - [4943] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2333), - [4945] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2334), - [4947] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), - [4949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), - [4951] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 2), - [4953] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2336), - [4955] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 4), - [4957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 4), - [4959] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 4), - [4961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), - [4963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2337), - [4965] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2337), - [4967] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2340), - [4969] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2343), - [4971] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2344), - [4973] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2347), - [4975] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), - [4977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2349), - [4979] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2350), - [4981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2350), - [4983] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2351), - [4985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2352), - [4987] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2353), - [4989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2354), - [4991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2355), - [4993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2356), - [4995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2357), - [4997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2358), - [4999] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2354), - [5001] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), - [5003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [5005] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 4), - [5007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), - [5009] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2360), - [5011] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 4), - [5013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 4), - [5015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2361), - [5017] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1024), - [5020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2363), - [5022] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2364), - [5024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2365), - [5026] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2365), - [5028] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2367), - [5030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2368), - [5032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2369), - [5034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2370), - [5036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2371), - [5038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2373), - [5040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2374), - [5042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2376), - [5044] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2378), - [5046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2379), - [5048] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2380), - [5050] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1043), - [5053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2381), - [5055] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2382), - [5057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2383), - [5059] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2383), - [5061] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2385), - [5063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2386), - [5065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2387), - [5067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2388), - [5069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2389), - [5071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2391), - [5073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2392), - [5075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2394), - [5077] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2396), - [5079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2397), - [5081] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2398), - [5083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2399), - [5085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2400), - [5087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2401), - [5089] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2403), - [5091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2404), - [5093] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2404), - [5095] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2406), - [5097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2407), - [5099] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2408), - [5101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2409), - [5103] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2410), - [5105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2411), - [5107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2413), - [5109] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2416), - [5111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2416), - [5113] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2418), - [5115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2419), - [5117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2420), - [5119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2421), - [5121] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2423), - [5123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2424), - [5125] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2425), - [5127] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2424), - [5129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2427), - [5131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2428), - [5133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2430), - [5135] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2431), - [5137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2433), - [5139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2434), - [5141] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 2), - [5143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2435), - [5145] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 4), - [5147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4), - [5149] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2436), - [5151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2436), - [5153] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2438), - [5155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2439), - [5157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2440), - [5159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2441), - [5161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2443), - [5163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2444), - [5165] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2445), - [5167] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2444), - [5169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2447), - [5171] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2448), - [5173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2450), - [5175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2451), - [5177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2453), - [5179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2454), - [5181] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2456), - [5183] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2456), - [5185] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2457), - [5187] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2458), - [5189] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2459), - [5191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2460), - [5193] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2461), - [5195] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2462), - [5197] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2463), - [5199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2464), - [5201] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2460), - [5203] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1122), - [5206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2465), - [5208] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2466), - [5210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2467), - [5212] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2467), - [5214] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2469), - [5216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2470), - [5218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2471), - [5220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2472), - [5222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2473), - [5224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2475), - [5226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2476), - [5228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2478), - [5230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2480), - [5232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2481), - [5234] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2482), - [5236] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1141), - [5239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2483), - [5241] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2484), - [5243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2485), - [5245] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2485), - [5247] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2487), - [5249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2488), - [5251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2489), - [5253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2490), - [5255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2491), - [5257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2493), - [5259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2494), - [5261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2496), - [5263] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2498), - [5265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2499), - [5267] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2500), - [5269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2501), - [5271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2502), - [5273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2503), - [5275] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2505), - [5277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2506), - [5279] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2506), - [5281] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2508), - [5283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2509), - [5285] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2510), - [5287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2511), - [5289] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2512), - [5291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2513), - [5293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2515), - [5295] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2517), - [5297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2517), - [5299] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2519), - [5301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2520), - [5303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2521), - [5305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2522), - [5307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2524), - [5309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2525), - [5311] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2526), - [5313] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2525), - [5315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2528), - [5317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2529), - [5319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2531), - [5321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2532), - [5323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2534), - [5325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2535), - [5327] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1204), - [5330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2536), - [5332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2537), - [5334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2538), - [5336] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2538), - [5338] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2540), - [5340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2541), - [5342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2542), - [5344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2543), - [5346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2544), - [5348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2546), - [5350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2547), - [5352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2549), - [5354] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2551), - [5356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2552), - [5358] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2553), - [5360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2554), - [5362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2555), - [5364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2556), - [5366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2558), - [5368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2559), - [5370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2560), - [5372] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2559), - [5374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2562), - [5376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2563), - [5378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2565), - [5380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2566), - [5382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), - [5384] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), - [5386] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(1222), - [5389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), - [5391] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(1224), - [5394] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(1225), - [5397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), - [5399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6), - [5401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2568), - [5403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2569), - [5405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2570), - [5407] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2572), - [5409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2573), - [5411] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2573), - [5413] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2575), - [5415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2576), - [5417] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2577), - [5419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2578), - [5421] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2579), - [5423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2580), - [5425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2582), - [5427] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1254), - [5430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2584), - [5432] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2585), - [5434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2586), - [5436] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2586), - [5438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2588), - [5440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2589), - [5442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2590), - [5444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2591), - [5446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2592), - [5448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2594), - [5450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2595), - [5452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2597), - [5454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2599), - [5456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2600), - [5458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2601), - [5460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2602), - [5462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2603), - [5464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2604), - [5466] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2606), - [5468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2607), - [5470] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2607), - [5472] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2609), - [5474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2610), - [5476] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2611), - [5478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2612), - [5480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2613), - [5482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2614), - [5484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2616), - [5486] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1293), - [5489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2618), - [5491] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2619), - [5493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2620), - [5495] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2620), - [5497] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2622), - [5499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2623), - [5501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2624), - [5503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2625), - [5505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2626), - [5507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2628), - [5509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2629), - [5511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2631), - [5513] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2633), - [5515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2634), - [5517] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2635), - [5519] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), - [5521] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), - [5523] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), - [5525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2637), - [5527] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2638), - [5529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2638), - [5531] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2639), - [5533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2640), - [5535] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2640), - [5537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2642), - [5539] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2643), - [5541] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), - [5543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2644), - [5545] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2645), - [5547] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2646), - [5549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2647), - [5551] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2648), - [5553] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2649), - [5555] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2650), - [5557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2651), - [5559] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2652), - [5561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2653), - [5563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2654), - [5565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2655), - [5567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2656), - [5569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2657), - [5571] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2658), - [5573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2667), - [5575] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2670), - [5577] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 2), - [5579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2671), - [5581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2675), - [5583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2676), - [5585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2677), - [5587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2678), - [5589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2680), - [5591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2681), - [5593] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2682), - [5595] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2681), - [5597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2684), - [5599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2685), - [5601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2687), - [5603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2688), - [5605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2690), - [5607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2691), - [5609] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), - [5611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2692), - [5613] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2693), - [5616] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1331), - [5619] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1332), - [5622] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2694), - [5625] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1334), - [5628] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1335), - [5631] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1336), - [5634] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1337), - [5637] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2694), - [5640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [5642] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), - [5644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2697), - [5646] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), - [5648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2699), - [5650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2700), - [5652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2701), - [5654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2702), - [5656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2704), - [5658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2706), - [5660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2708), - [5662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2709), - [5664] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), - [5666] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2710), - [5668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2710), - [5670] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2712), - [5672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2713), - [5674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2714), - [5676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2715), - [5678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2717), - [5680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2718), - [5682] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2719), - [5684] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2718), - [5686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2721), - [5688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2722), - [5690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2724), - [5692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2725), - [5694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2727), - [5696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2728), - [5698] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1379), - [5701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2729), - [5703] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2730), - [5705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2731), - [5707] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2731), - [5709] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2733), - [5711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2734), - [5713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2735), - [5715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2736), - [5717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2737), - [5719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2739), - [5721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2740), - [5723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2742), - [5725] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2744), - [5727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2745), - [5729] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2746), - [5731] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2747), - [5733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2748), - [5735] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2748), - [5737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2749), - [5739] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2751), - [5741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2753), - [5743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2754), - [5745] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2755), - [5747] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2753), - [5749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2756), - [5751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2757), - [5753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2758), - [5755] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2759), - [5757] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2757), - [5759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2767), - [5761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2768), - [5763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2769), - [5765] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2771), - [5767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2772), - [5769] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2772), - [5771] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2774), - [5773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2775), - [5775] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2776), - [5777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2777), - [5779] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2778), - [5781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2779), - [5783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2781), - [5785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2783), - [5787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2784), - [5789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2785), - [5791] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2787), - [5793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2788), - [5795] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2788), - [5797] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2790), - [5799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2791), - [5801] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2792), - [5803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2793), - [5805] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2794), - [5807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2795), - [5809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2797), - [5811] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2799), - [5813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2800), - [5815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2801), - [5817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2802), - [5819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2804), - [5821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2806), - [5823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2808), - [5825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2809), - [5827] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1463), - [5830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2810), - [5832] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2811), - [5834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2812), - [5836] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2812), - [5838] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2814), - [5840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2815), - [5842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2816), - [5844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2817), - [5846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2818), - [5848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2820), - [5850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2821), - [5852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2823), - [5854] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2825), - [5856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2826), - [5858] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2827), - [5860] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), - [5862] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5), - [5864] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), - [5866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2828), - [5868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2829), - [5870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2830), - [5872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2831), - [5874] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [5876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2833), - [5878] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [5880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2835), - [5882] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), - [5884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2837), - [5886] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), - [5888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2838), - [5890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2839), - [5892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2840), - [5894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2841), - [5896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2842), - [5898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2844), - [5900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2846), - [5902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2848), - [5904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2849), - [5906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2850), - [5908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2851), - [5910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2852), - [5912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2853), - [5914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2855), - [5916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2857), - [5918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2859), - [5920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2860), - [5922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2861), - [5924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2862), - [5926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2863), - [5928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2864), - [5930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2866), - [5932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2868), - [5934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2870), - [5936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2871), - [5938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2872), - [5940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2873), - [5942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2874), - [5944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2875), - [5946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2877), - [5948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2879), - [5950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2881), - [5952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2882), - [5954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2883), - [5956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2884), - [5958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2885), - [5960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2886), - [5962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2888), - [5964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2890), - [5966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2892), - [5968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2893), - [5970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2894), - [5972] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), - [5974] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), - [5976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2895), - [5978] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 5), - [5980] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5), - [5982] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1598), - [5985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2896), - [5987] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2897), - [5989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2898), - [5991] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2898), - [5993] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2900), - [5995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2901), - [5997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2902), - [5999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2903), - [6001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2904), - [6003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2906), - [6005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2907), - [6007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2909), - [6009] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2911), - [6011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2912), - [6013] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2913), - [6015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2914), - [6017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2915), - [6019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2916), - [6021] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2918), - [6023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2919), - [6025] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2919), - [6027] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2921), - [6029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2922), - [6031] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2923), - [6033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2924), - [6035] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2925), - [6037] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2926), - [6039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2928), - [6041] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), - [6043] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), - [6045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), - [6047] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), - [6049] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), - [6051] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), - [6053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), - [6055] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), - [6057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2930), - [6059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), - [6061] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), - [6063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2931), - [6065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), - [6067] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), - [6069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2932), - [6071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), - [6073] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), - [6075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), - [6077] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), - [6079] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 3), - [6081] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1653), - [6084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2933), - [6086] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2934), - [6088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2935), - [6090] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2935), - [6092] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2937), - [6094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2938), - [6096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2939), - [6098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2940), - [6100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2941), - [6102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2943), - [6104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2944), - [6106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2946), - [6108] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2948), - [6110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2949), - [6112] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2950), - [6114] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2952), - [6116] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 3), - [6118] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5), - [6120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [6122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2953), - [6124] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [6126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [6128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2955), - [6130] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2957), - [6132] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5), - [6134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), - [6136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2959), - [6138] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2961), - [6140] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5), - [6142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), - [6144] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), - [6146] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2964), - [6148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2965), - [6150] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2965), - [6152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2967), - [6154] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2969), - [6156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2971), - [6158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2972), - [6160] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2973), - [6162] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2971), - [6164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2974), - [6166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2975), - [6168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2976), - [6170] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2977), - [6172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2975), - [6174] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 5), - [6176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), - [6178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2985), - [6180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2986), - [6182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2987), - [6184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2988), - [6186] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2990), - [6188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2991), - [6190] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2991), - [6192] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2993), - [6194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2994), - [6196] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2995), - [6198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2996), - [6200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2997), - [6202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2998), - [6204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3000), - [6206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3002), - [6208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3003), - [6210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3004), - [6212] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3006), - [6214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3007), - [6216] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3007), - [6218] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3009), - [6220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3010), - [6222] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3011), - [6224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3012), - [6226] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3013), - [6228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3014), - [6230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3016), - [6232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3018), - [6234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3019), - [6236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3020), - [6238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3021), - [6240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3023), - [6242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3025), - [6244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3027), - [6246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3028), - [6248] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1758), - [6251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3029), - [6253] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3030), - [6255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3031), - [6257] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3031), - [6259] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3033), - [6261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3034), - [6263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3035), - [6265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3036), - [6267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3037), - [6269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3039), - [6271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3040), - [6273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3042), - [6275] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3044), - [6277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3045), - [6279] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3046), - [6281] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3), - [6283] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1779), - [6286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3047), - [6288] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3048), - [6290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3049), - [6292] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3049), - [6294] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3051), - [6296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3052), - [6298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3053), - [6300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3054), - [6302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3055), - [6304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3057), - [6306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3058), - [6308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3060), - [6310] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3062), - [6312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3063), - [6314] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3064), - [6316] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3065), - [6318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3066), - [6320] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3066), - [6322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3067), - [6324] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3069), - [6326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3071), - [6328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3072), - [6330] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3073), - [6332] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3071), - [6334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3074), - [6336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3075), - [6338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3076), - [6340] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3077), - [6342] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3075), - [6344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3085), - [6346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3086), - [6348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3087), - [6350] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3089), - [6352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3090), - [6354] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3090), - [6356] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3092), - [6358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3093), - [6360] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3094), - [6362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3095), - [6364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3096), - [6366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3097), - [6368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3099), - [6370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3101), - [6372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3102), - [6374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3103), - [6376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3105), - [6378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3106), - [6380] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3106), - [6382] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3108), - [6384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3109), - [6386] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3110), - [6388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3111), - [6390] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3112), - [6392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3113), - [6394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3115), - [6396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3117), - [6398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3118), - [6400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3119), - [6402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3120), - [6404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3122), - [6406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3124), - [6408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3126), - [6410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3127), - [6412] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1863), - [6415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3128), - [6417] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3129), - [6419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3130), - [6421] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3130), - [6423] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3132), - [6425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3133), - [6427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3134), - [6429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3135), - [6431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3136), - [6433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3138), - [6435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3139), - [6437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3141), - [6439] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3143), - [6441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3144), - [6443] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3145), - [6445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3146), - [6447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3147), - [6449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3148), - [6451] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3150), - [6453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3151), - [6455] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3151), - [6457] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3153), - [6459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3154), - [6461] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3155), - [6463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3156), - [6465] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3157), - [6467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3158), - [6469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3160), - [6471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3162), - [6473] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3163), - [6475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3164), - [6477] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3164), - [6479] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3166), - [6481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3167), - [6483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3168), - [6485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3169), - [6487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3170), - [6489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3172), - [6491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3173), - [6493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3175), - [6495] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3177), - [6497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3178), - [6499] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3179), - [6501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3180), - [6503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3181), - [6505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3182), - [6507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3183), - [6509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3185), - [6511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3187), - [6513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3189), - [6515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3190), - [6517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3191), - [6519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3192), - [6521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3193), - [6523] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3195), - [6525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3196), - [6527] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3196), - [6529] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3198), - [6531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3199), - [6533] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3200), - [6535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3201), - [6537] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3202), - [6539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3203), - [6541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3205), - [6543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3207), - [6545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3208), - [6547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3209), - [6549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3210), - [6551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3212), - [6553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3214), - [6555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3216), - [6557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3217), - [6559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3218), - [6561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3219), - [6563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3220), - [6565] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3222), - [6567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3223), - [6569] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3223), - [6571] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3225), - [6573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3226), - [6575] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3227), - [6577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3228), - [6579] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3229), - [6581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3230), - [6583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3232), - [6585] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), - [6587] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [6589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 3), - [6591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), - [6593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3234), - [6595] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), - [6597] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [6599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [6601] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [6603] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3237), - [6605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3240), - [6607] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3241), - [6609] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3242), - [6611] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3243), - [6613] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3244), - [6615] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3245), - [6617] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3246), - [6619] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3247), - [6621] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3248), - [6623] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3249), - [6625] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3253), - [6627] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3254), - [6629] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3255), - [6631] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3256), - [6633] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3257), - [6635] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3258), - [6637] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3259), - [6639] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3260), - [6641] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3261), - [6643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3264), - [6645] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3266), - [6647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3268), - [6649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3269), - [6651] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3270), - [6653] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3268), - [6655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3271), - [6657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3272), - [6659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3273), - [6661] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3274), - [6663] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3272), - [6665] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3282), - [6667] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), - [6669] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3283), - [6671] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3284), - [6673] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3285), - [6675] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3286), - [6677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3287), - [6679] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3288), - [6681] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3289), - [6683] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3290), - [6685] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3291), - [6687] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2651), - [6689] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2652), - [6691] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3292), - [6693] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2654), - [6695] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2655), - [6697] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2656), - [6699] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2657), - [6701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3296), - [6703] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2650), - [6705] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2653), - [6707] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1995), - [6710] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1994), - [6713] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 3), - [6715] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), - [6717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [6719] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [6721] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 3), - [6723] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3302), - [6725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3303), - [6727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3307), - [6729] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3308), - [6731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3309), - [6733] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3309), - [6735] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3311), - [6737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3312), - [6739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3313), - [6741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3314), - [6743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3315), - [6745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3317), - [6747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3318), - [6749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3320), - [6751] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3322), - [6753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3323), - [6755] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3324), - [6757] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), - [6759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3325), - [6761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3327), - [6763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3329), - [6765] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), - [6767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3330), - [6769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3331), - [6771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3332), - [6773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3333), - [6775] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2046), - [6778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3334), - [6780] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3335), - [6782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3336), - [6784] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3336), - [6786] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3338), - [6788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3339), - [6790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3340), - [6792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3341), - [6794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3342), - [6796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3344), - [6798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3345), - [6800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3347), - [6802] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3349), - [6804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3350), - [6806] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3351), - [6808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3352), - [6810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3353), - [6812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3354), - [6814] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3356), - [6816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3357), - [6818] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3357), - [6820] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3359), - [6822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3360), - [6824] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3361), - [6826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3362), - [6828] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3363), - [6830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3364), - [6832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3366), - [6834] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3368), - [6836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3368), - [6838] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3370), - [6840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3371), - [6842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3372), - [6844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3373), - [6846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3375), - [6848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3376), - [6850] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3377), - [6852] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3376), - [6854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3379), - [6856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3380), - [6858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3382), - [6860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3383), - [6862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3385), - [6864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3386), - [6866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3387), - [6868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3388), - [6870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3389), - [6872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3390), - [6874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3392), - [6876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3394), - [6878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3396), - [6880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3397), - [6882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3398), - [6884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3399), - [6886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3400), - [6888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3401), - [6890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3403), - [6892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3405), - [6894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3407), - [6896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3408), - [6898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3409), - [6900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3410), - [6902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3411), - [6904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3412), - [6906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3413), - [6908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3414), - [6910] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3416), - [6912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3417), - [6914] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3417), - [6916] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3419), - [6918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3420), - [6920] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3421), - [6922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3422), - [6924] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3423), - [6926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3424), - [6928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3426), - [6930] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), - [6932] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), - [6934] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6), - [6936] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), - [6938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3428), - [6940] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), - [6942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3429), - [6944] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), - [6946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3430), - [6948] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), - [6950] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), - [6952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3431), - [6954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3432), - [6956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3433), - [6958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3434), - [6960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3435), - [6962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3436), - [6964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3437), - [6966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3438), - [6968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3439), - [6970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3440), - [6972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3441), - [6974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3442), - [6976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3443), - [6978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3444), - [6980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3445), - [6982] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), - [6984] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), - [6986] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 6), - [6988] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6), - [6990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3446), - [6992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3447), - [6994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3448), - [6996] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3450), - [6998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3451), - [7000] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3451), - [7002] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3453), - [7004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3454), - [7006] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3455), - [7008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3456), - [7010] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3457), - [7012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3458), - [7014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3460), - [7016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3462), - [7018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3463), - [7020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3464), - [7022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3465), - [7024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3467), - [7026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3469), - [7028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3471), - [7030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3472), - [7032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), - [7034] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), - [7036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), - [7038] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), - [7040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), - [7042] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), - [7044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3473), - [7046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3474), - [7048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3475), - [7050] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3477), - [7052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3478), - [7054] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3478), - [7056] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3480), - [7058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3481), - [7060] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3482), - [7062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3483), - [7064] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3484), - [7066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3485), - [7068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3487), - [7070] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), - [7072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), - [7074] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6), - [7076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), - [7078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3489), - [7080] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), - [7082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), - [7084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3490), - [7086] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [7088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [7090] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), - [7092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), - [7094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3492), - [7096] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6), - [7098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), - [7100] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 6), - [7102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), - [7104] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3494), - [7106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3494), - [7108] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3496), - [7110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3497), - [7112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3498), - [7114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3499), - [7116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3501), - [7118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3502), - [7120] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3503), - [7122] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3502), - [7124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3505), - [7126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3506), - [7128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3508), - [7130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3509), - [7132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3511), - [7134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3512), - [7136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3513), - [7138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3514), - [7140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3515), - [7142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3516), - [7144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3518), - [7146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3520), - [7148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3522), - [7150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3523), - [7152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3524), - [7154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3525), - [7156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3526), - [7158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3527), - [7160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3529), - [7162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3531), - [7164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3533), - [7166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3534), - [7168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3535), - [7170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3536), - [7172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3537), - [7174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3538), - [7176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3539), - [7178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3540), - [7180] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3542), - [7182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3543), - [7184] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3543), - [7186] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3545), - [7188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3546), - [7190] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3547), - [7192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3548), - [7194] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3549), - [7196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3550), - [7198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3552), - [7200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3554), - [7202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3555), - [7204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3556), - [7206] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3558), - [7208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3559), - [7210] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3559), - [7212] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3561), - [7214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3562), - [7216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3563), - [7218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3564), - [7220] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3565), - [7222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3566), - [7224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3568), - [7226] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3570), - [7228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3570), - [7230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3572), - [7232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3573), - [7234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3574), - [7236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3575), - [7238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3577), - [7240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3578), - [7242] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3579), - [7244] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3578), - [7246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3581), - [7248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3582), - [7250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3584), - [7252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3585), - [7254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3587), - [7256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3588), - [7258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3589), - [7260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3590), - [7262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3591), - [7264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3592), - [7266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3594), - [7268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3596), - [7270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3598), - [7272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3599), - [7274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3600), - [7276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3601), - [7278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3602), - [7280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3603), - [7282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3605), - [7284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3607), - [7286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3609), - [7288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3610), - [7290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3611), - [7292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3612), - [7294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3613), - [7296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3614), - [7298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3615), - [7300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3616), - [7302] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3618), - [7304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3619), - [7306] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3619), - [7308] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3621), - [7310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3622), - [7312] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3623), - [7314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3624), - [7316] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3625), - [7318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3626), - [7320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3628), - [7322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3630), - [7324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3631), - [7326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3632), - [7328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3633), - [7330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3635), - [7332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3637), - [7334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3639), - [7336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3640), - [7338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3641), - [7340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3642), - [7342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3643), - [7344] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3645), - [7346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3646), - [7348] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3646), - [7350] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3648), - [7352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3649), - [7354] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3650), - [7356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3651), - [7358] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3652), - [7360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3653), - [7362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3655), - [7364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3657), - [7366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3658), - [7368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3659), - [7370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3660), - [7372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3661), - [7374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3662), - [7376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3663), - [7378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3665), - [7380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3667), - [7382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3669), - [7384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3670), - [7386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3671), - [7388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3672), - [7390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3673), - [7392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3674), - [7394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3675), - [7396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3676), - [7398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3677), - [7400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3679), - [7402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3681), - [7404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3683), - [7406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3684), - [7408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3685), - [7410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3686), - [7412] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3687), - [7414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3688), - [7416] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3689), - [7418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3690), - [7420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3691), - [7422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3692), - [7424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3693), - [7426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3694), - [7428] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3690), - [7430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3696), - [7432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3698), - [7434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3699), - [7436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3701), - [7438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3703), - [7440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3242), - [7442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3705), - [7444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3706), - [7446] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3707), - [7448] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3705), - [7450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3708), - [7452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3709), - [7454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3710), - [7456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3711), - [7458] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3709), - [7460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3720), - [7462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3722), - [7464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3254), - [7466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3724), - [7468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3725), - [7470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3726), - [7472] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3724), - [7474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3727), - [7476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3728), - [7478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3729), - [7480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3730), - [7482] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3728), - [7484] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3739), - [7486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3739), - [7488] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3741), - [7490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3742), - [7492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3743), - [7494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3744), - [7496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3746), - [7498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3747), - [7500] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3748), - [7502] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3747), - [7504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3750), - [7506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3751), - [7508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3753), - [7510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3754), - [7512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3756), - [7514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3757), - [7516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3758), - [7518] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), - [7520] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [7522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [7524] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [7526] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3762), - [7528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3762), - [7530] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3763), - [7532] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3764), - [7534] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3765), - [7536] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3766), - [7538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3767), - [7540] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3768), - [7542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3769), - [7544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3770), - [7546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3771), - [7548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3772), - [7550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3773), - [7552] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3769), - [7554] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3774), - [7556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3775), - [7558] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3775), - [7560] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), - [7562] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3779), - [7564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3783), - [7566] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 4), - [7568] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), - [7570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), - [7572] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), - [7574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 4), - [7576] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3786), - [7578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3787), - [7580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3790), - [7582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3791), - [7584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3792), - [7586] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3794), - [7588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3795), - [7590] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3795), - [7592] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3797), - [7594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3798), - [7596] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3799), - [7598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3800), - [7600] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3801), - [7602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3802), - [7604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3804), - [7606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3806), - [7608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3810), - [7610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3811), - [7612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3815), - [7614] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), - [7616] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), - [7618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3816), - [7620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3817), - [7622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3818), - [7624] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3820), - [7626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3821), - [7628] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3821), - [7630] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3823), - [7632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3824), - [7634] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3825), - [7636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3826), - [7638] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3827), - [7640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3828), - [7642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3830), - [7644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3832), - [7646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3833), - [7648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3834), - [7650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3835), - [7652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3837), - [7654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3839), - [7656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3841), - [7658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3842), - [7660] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2749), - [7663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3843), - [7665] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3844), - [7667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3845), - [7669] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3845), - [7671] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3847), - [7673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3848), - [7675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3849), - [7677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3850), - [7679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3851), - [7681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3853), - [7683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3854), - [7685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3856), - [7687] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3858), - [7689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3859), - [7691] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3860), - [7693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3861), - [7695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3862), - [7697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3863), - [7699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3864), - [7701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3865), - [7703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3866), - [7705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3867), - [7707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3868), - [7709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3869), - [7711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3870), - [7713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3872), - [7715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3874), - [7717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3876), - [7719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3877), - [7721] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), - [7723] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), - [7725] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), - [7727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3878), - [7729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3879), - [7731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3880), - [7733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3881), - [7735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3883), - [7737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3885), - [7739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3887), - [7741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3888), - [7743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3889), - [7745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3890), - [7747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3891), - [7749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3892), - [7751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3893), - [7753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3894), - [7755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3895), - [7757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3897), - [7759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3899), - [7761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3901), - [7763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3902), - [7765] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), - [7767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [7769] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), - [7771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), - [7773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3903), - [7775] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), - [7777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), - [7779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3904), - [7781] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2967), - [7784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3905), - [7786] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3906), - [7788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3907), - [7790] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3907), - [7792] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3909), - [7794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3910), - [7796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3911), - [7798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3912), - [7800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3913), - [7802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3915), - [7804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3916), - [7806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3918), - [7808] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3920), - [7810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3921), - [7812] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3922), - [7814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3923), - [7816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3924), - [7818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3925), - [7820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3926), - [7822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3927), - [7824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3928), - [7826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3929), - [7828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3930), - [7830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3931), - [7832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3932), - [7834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3934), - [7836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3936), - [7838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3938), - [7840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3939), - [7842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3940), - [7844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3941), - [7846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3942), - [7848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3943), - [7850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3945), - [7852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3947), - [7854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3949), - [7856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3950), - [7858] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3067), - [7861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3951), - [7863] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3952), - [7865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3953), - [7867] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3953), - [7869] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3955), - [7871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3956), - [7873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3957), - [7875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3958), - [7877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3959), - [7879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3961), - [7881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3962), - [7883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3964), - [7885] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3966), - [7887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3967), - [7889] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3968), - [7891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3969), - [7893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3970), - [7895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3971), - [7897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3972), - [7899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3973), - [7901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3974), - [7903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3975), - [7905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3976), - [7907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3977), - [7909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3978), - [7911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3980), - [7913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3982), - [7915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3984), - [7917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3985), - [7919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3986), - [7921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3987), - [7923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3988), - [7925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3989), - [7927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3990), - [7929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3991), - [7931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3992), - [7933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3994), - [7935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3996), - [7937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3998), - [7939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3999), - [7941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4000), - [7943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4001), - [7945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4002), - [7947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4003), - [7949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4004), - [7951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4005), - [7953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4006), - [7955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4008), - [7957] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4010), - [7959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4012), - [7961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4013), - [7963] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4014), - [7965] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4012), - [7967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4015), - [7969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4016), - [7971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4017), - [7973] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4018), - [7975] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4016), - [7977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4027), - [7979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4028), - [7981] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4029), - [7983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4031), - [7985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4032), - [7987] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4033), - [7989] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3243), - [7991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4034), - [7993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3245), - [7995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3246), - [7997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3247), - [7999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3248), - [8001] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4034), - [8003] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4035), - [8005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4035), - [8007] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4037), - [8009] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4038), - [8011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4039), - [8013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4040), - [8015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4042), - [8017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4043), - [8019] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4044), - [8021] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4043), - [8023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4046), - [8025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4047), - [8027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4049), - [8029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4050), - [8031] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4052), - [8033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4053), - [8035] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3240), - [8038] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3241), - [8041] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3242), - [8044] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3243), - [8047] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3244), - [8050] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3245), - [8053] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3246), - [8056] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3247), - [8059] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3248), - [8062] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3249), - [8065] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4054), - [8067] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3255), - [8069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4054), - [8071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3257), - [8073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3258), - [8075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3259), - [8077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3260), - [8079] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4056), - [8081] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4057), - [8083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4058), - [8085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4059), - [8087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4061), - [8089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4062), - [8091] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4063), - [8093] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4062), - [8095] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4065), - [8097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4066), - [8099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4068), - [8101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4069), - [8103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4071), - [8105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4072), - [8107] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3253), - [8110] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3254), - [8113] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3255), - [8116] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3256), - [8119] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3257), - [8122] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3258), - [8125] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3259), - [8128] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3260), - [8131] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3261), - [8134] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3264), - [8137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4073), - [8139] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4074), - [8141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4075), - [8143] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4075), - [8145] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4077), - [8147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4078), - [8149] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4079), - [8151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4080), - [8153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4081), - [8155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4083), - [8157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4084), - [8159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4086), - [8161] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4088), - [8163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4089), - [8165] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4090), - [8167] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4092), - [8169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4093), - [8171] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4093), - [8173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4094), - [8175] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4096), - [8177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4098), - [8179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4099), - [8181] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4100), - [8183] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4098), - [8185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4101), - [8187] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4102), - [8189] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4103), - [8191] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4104), - [8193] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4102), - [8195] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3287), - [8198] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3289), - [8201] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3290), - [8204] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(3288), - [8207] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(3291), - [8210] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2651), - [8213] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2652), - [8216] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(3292), - [8219] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2654), - [8222] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2655), - [8225] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2656), - [8228] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2657), - [8231] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), - [8233] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [8235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [8237] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [8239] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), - [8241] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4113), - [8243] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 5), - [8245] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), - [8247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), - [8249] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5), - [8251] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 5), - [8253] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4114), - [8255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4115), - [8257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4116), - [8259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4117), - [8261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4118), - [8263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4120), - [8265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4122), - [8267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4124), - [8269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4125), - [8271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4126), - [8273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4127), - [8275] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4132), - [8277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4133), - [8279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4137), - [8281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4138), - [8283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4139), - [8285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4140), - [8287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4142), - [8289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4144), - [8291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4146), - [8293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4147), - [8295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4148), - [8297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4149), - [8299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4150), - [8301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4151), - [8303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4152), - [8305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4153), - [8307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4155), - [8309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4156), - [8311] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4156), - [8313] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4158), - [8315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4159), - [8317] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4160), - [8319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4161), - [8321] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4162), - [8323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4163), - [8325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4165), - [8327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4167), - [8329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4168), - [8331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4169), - [8333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4170), - [8335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4171), - [8337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4172), - [8339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4173), - [8341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4174), - [8343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4175), - [8345] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), - [8347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), - [8349] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), - [8351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), - [8353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4176), - [8355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4177), - [8357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4178), - [8359] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4180), - [8361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4181), - [8363] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4181), - [8365] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4183), - [8367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4184), - [8369] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4185), - [8371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4186), - [8373] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4187), - [8375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4188), - [8377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4190), - [8379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4192), - [8381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4193), - [8383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4194), - [8385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4195), - [8387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4196), - [8389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4197), - [8391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4198), - [8393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4199), - [8395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4200), - [8397] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4202), - [8399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4203), - [8401] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4203), - [8403] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4205), - [8405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4206), - [8407] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4207), - [8409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4208), - [8411] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4209), - [8413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4210), - [8415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4212), - [8417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4214), - [8419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4215), - [8421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4216), - [8423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4217), - [8425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4218), - [8427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4219), - [8429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4220), - [8431] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4221), - [8433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4221), - [8435] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4223), - [8437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4224), - [8439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4225), - [8441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4226), - [8443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4228), - [8445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4229), - [8447] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4230), - [8449] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4229), - [8451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4232), - [8453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4233), - [8455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4235), - [8457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4236), - [8459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4238), - [8461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4239), - [8463] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4241), - [8465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4241), - [8467] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4242), - [8469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4243), - [8471] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4244), - [8473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4245), - [8475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4246), - [8477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4247), - [8479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4248), - [8481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4249), - [8483] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4245), - [8485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4250), - [8487] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3701), - [8490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4252), - [8492] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4253), - [8494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4254), - [8496] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4254), - [8498] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4256), - [8500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4257), - [8502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4258), - [8504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4259), - [8506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4260), - [8508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4262), - [8510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4263), - [8512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4265), - [8514] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4267), - [8516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4268), - [8518] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4269), - [8520] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3720), - [8523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4270), - [8525] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4271), - [8527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4272), - [8529] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4272), - [8531] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4274), - [8533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4275), - [8535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4276), - [8537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4277), - [8539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4278), - [8541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4280), - [8543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4281), - [8545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4283), - [8547] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4285), - [8549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4286), - [8551] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4287), - [8553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4288), - [8555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4289), - [8557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4290), - [8559] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4292), - [8561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4293), - [8563] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4293), - [8565] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4295), - [8567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4296), - [8569] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4297), - [8571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4298), - [8573] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4299), - [8575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4300), - [8577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4302), - [8579] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4304), - [8581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4304), - [8583] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4306), - [8585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4307), - [8587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4308), - [8589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4309), - [8591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4311), - [8593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4312), - [8595] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4313), - [8597] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4312), - [8599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4315), - [8601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4316), - [8603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4318), - [8605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4319), - [8607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4321), - [8609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4322), - [8611] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 6, .alias_sequence_id = 1), - [8613] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), - [8615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), - [8617] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), - [8619] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 6), - [8621] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 6), - [8623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 6), - [8625] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 6), - [8627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4323), - [8629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4324), - [8631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4325), - [8633] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4326), - [8635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4327), - [8637] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4330), - [8639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4331), - [8641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4334), - [8643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4335), - [8645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4336), - [8647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4337), - [8649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4338), - [8651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4339), - [8653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4340), - [8655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4342), - [8657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4344), - [8659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4346), - [8661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4347), - [8663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4348), - [8665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4349), - [8667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4350), - [8669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4351), - [8671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4353), - [8673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4355), - [8675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4357), - [8677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4358), - [8679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4359), - [8681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4360), - [8683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4361), - [8685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4362), - [8687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4364), - [8689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4366), - [8691] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4368), - [8693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4369), - [8695] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4008), - [8698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4370), - [8700] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4371), - [8702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4372), - [8704] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4372), - [8706] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4374), - [8708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4375), - [8710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4376), - [8712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4377), - [8714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4378), - [8716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4380), - [8718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4381), - [8720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4383), - [8722] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4385), - [8724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4386), - [8726] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4387), - [8728] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4388), - [8730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4389), - [8732] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4389), - [8734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4390), - [8736] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4392), - [8738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4394), - [8740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4395), - [8742] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4396), - [8744] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4394), - [8746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4397), - [8748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4398), - [8750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4399), - [8752] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4400), - [8754] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4398), - [8756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4408), - [8758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4409), - [8760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4410), - [8762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4411), - [8764] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4413), - [8766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4414), - [8768] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4414), - [8770] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4416), - [8772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4417), - [8774] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4418), - [8776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4419), - [8778] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4420), - [8780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4421), - [8782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4423), - [8784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4425), - [8786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4426), - [8788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4427), - [8790] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4429), - [8792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4430), - [8794] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4430), - [8796] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4432), - [8798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4433), - [8800] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4434), - [8802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4435), - [8804] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4436), - [8806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4437), - [8808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4439), - [8810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4441), - [8812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4442), - [8814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4443), - [8816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4444), - [8818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4446), - [8820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4448), - [8822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4450), - [8824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4451), - [8826] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4094), - [8829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4452), - [8831] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4453), - [8833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4454), - [8835] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4454), - [8837] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4456), - [8839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4457), - [8841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4458), - [8843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4459), - [8845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4460), - [8847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4462), - [8849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4463), - [8851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4465), - [8853] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4467), - [8855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4468), - [8857] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4469), - [8859] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4470), - [8861] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4471), - [8863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4472), - [8865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4473), - [8867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4474), - [8869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4475), - [8871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4476), - [8873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4477), - [8875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4478), - [8877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4479), - [8879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4480), - [8881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4481), - [8883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4482), - [8885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4483), - [8887] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4485), - [8889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4486), - [8891] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4486), - [8893] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4488), - [8895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4489), - [8897] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4490), - [8899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4491), - [8901] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4492), - [8903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4493), - [8905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4495), - [8907] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4497), - [8909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4497), - [8911] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4499), - [8913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4500), - [8915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4501), - [8917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4502), - [8919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4504), - [8921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4505), - [8923] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4506), - [8925] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4505), - [8927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4508), - [8929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4509), - [8931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4511), - [8933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4512), - [8935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4514), - [8937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4515), - [8939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4516), - [8941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4517), - [8943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4518), - [8945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4519), - [8947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4521), - [8949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4523), - [8951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4525), - [8953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4526), - [8955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4527), - [8957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4528), - [8959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4529), - [8961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4530), - [8963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4532), - [8965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4534), - [8967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4536), - [8969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4537), - [8971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4538), - [8973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4539), - [8975] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4540), - [8977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4541), - [8979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4542), - [8981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4543), - [8983] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4545), - [8985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4546), - [8987] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4546), - [8989] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4548), - [8991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4549), - [8993] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4550), - [8995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4551), - [8997] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4552), - [8999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4553), - [9001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4555), - [9003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4557), - [9005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4558), - [9007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4559), - [9009] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4560), - [9011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4562), - [9013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4564), - [9015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4566), - [9017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4567), - [9019] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4390), - [9022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4568), - [9024] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4569), - [9026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4570), - [9028] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4570), - [9030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4572), - [9032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4573), - [9034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4574), - [9036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4575), - [9038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4576), - [9040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4578), - [9042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4579), - [9044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4581), - [9046] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4583), - [9048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4584), - [9050] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4585), - [9052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4586), - [9054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4587), - [9056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4588), - [9058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4589), - [9060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4590), - [9062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4591), - [9064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4592), - [9066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4593), - [9068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4594), - [9070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4595), - [9072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4597), - [9074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4599), - [9076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4601), - [9078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4602), - [9080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4603), - [9082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4604), - [9084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4605), - [9086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4606), - [9088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4607), - [9090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4608), - [9092] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4610), - [9094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4611), - [9096] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4611), - [9098] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4613), - [9100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4614), - [9102] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4615), - [9104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4616), - [9106] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4617), - [9108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4618), - [9110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4620), - [9112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4622), - [9114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4623), - [9116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4624), - [9118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4625), - [9120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4626), - [9122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4627), - [9124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4628), - [9126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4630), - [9128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4632), - [9130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4634), - [9132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4635), - [9134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4636), - [9136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4637), - [9138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4638), + [0] = {.count = 0, .reusable = false}, + [1] = {.count = 1, .reusable = true}, RECOVER(), + [3] = {.count = 1, .reusable = false}, RECOVER(), + [5] = {.count = 2, .reusable = false}, SHIFT_EXTRA(), RECOVER(), + [8] = {.count = 1, .reusable = true}, SHIFT(2), + [10] = {.count = 1, .reusable = true}, SHIFT(3), + [12] = {.count = 1, .reusable = true}, REDUCE(sym_program, 0), + [14] = {.count = 1, .reusable = false}, SHIFT(4), + [16] = {.count = 1, .reusable = false}, SHIFT(5), + [18] = {.count = 1, .reusable = false}, SHIFT(6), + [20] = {.count = 1, .reusable = false}, SHIFT(7), + [22] = {.count = 1, .reusable = false}, SHIFT(8), + [24] = {.count = 1, .reusable = true}, SHIFT(9), + [26] = {.count = 1, .reusable = false}, SHIFT(10), + [28] = {.count = 1, .reusable = true}, SHIFT(11), + [30] = {.count = 1, .reusable = false}, SHIFT(12), + [32] = {.count = 1, .reusable = false}, SHIFT(13), + [34] = {.count = 1, .reusable = false}, SHIFT(14), + [36] = {.count = 1, .reusable = true}, SHIFT(14), + [38] = {.count = 1, .reusable = false}, SHIFT(15), + [40] = {.count = 1, .reusable = true}, SHIFT(16), + [42] = {.count = 1, .reusable = false}, SHIFT(17), + [44] = {.count = 1, .reusable = true}, SHIFT(18), + [46] = {.count = 1, .reusable = true}, SHIFT(19), + [48] = {.count = 1, .reusable = true}, SHIFT(20), + [50] = {.count = 1, .reusable = true}, SHIFT(21), + [52] = {.count = 1, .reusable = true}, SHIFT(22), + [54] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), + [56] = {.count = 1, .reusable = false}, SHIFT(23), + [58] = {.count = 1, .reusable = false}, SHIFT(32), + [60] = {.count = 1, .reusable = true}, SHIFT(32), + [62] = {.count = 1, .reusable = true}, SHIFT(33), + [64] = {.count = 1, .reusable = true}, SHIFT(34), + [66] = {.count = 1, .reusable = true}, SHIFT(36), + [68] = {.count = 1, .reusable = true}, SHIFT(41), + [70] = {.count = 1, .reusable = true}, SHIFT(42), + [72] = {.count = 1, .reusable = false}, SHIFT(43), + [74] = {.count = 1, .reusable = true}, SHIFT(44), + [76] = {.count = 1, .reusable = true}, SHIFT(45), + [78] = {.count = 1, .reusable = true}, SHIFT(46), + [80] = {.count = 1, .reusable = true}, SHIFT(47), + [82] = {.count = 1, .reusable = true}, SHIFT(48), + [84] = {.count = 1, .reusable = true}, SHIFT(50), + [86] = {.count = 1, .reusable = true}, SHIFT(51), + [88] = {.count = 1, .reusable = false}, SHIFT(52), + [90] = {.count = 1, .reusable = false}, SHIFT(53), + [92] = {.count = 1, .reusable = false}, SHIFT(54), + [94] = {.count = 1, .reusable = true}, SHIFT(55), + [96] = {.count = 1, .reusable = false}, SHIFT(56), + [98] = {.count = 1, .reusable = false}, SHIFT(57), + [100] = {.count = 1, .reusable = false}, SHIFT(58), + [102] = {.count = 1, .reusable = true}, SHIFT(59), + [104] = {.count = 1, .reusable = false}, SHIFT(60), + [106] = {.count = 1, .reusable = false}, SHIFT(67), + [108] = {.count = 1, .reusable = true}, SHIFT(68), + [110] = {.count = 1, .reusable = true}, SHIFT(69), + [112] = {.count = 1, .reusable = false}, SHIFT(70), + [114] = {.count = 1, .reusable = true}, SHIFT(71), + [116] = {.count = 1, .reusable = true}, SHIFT(72), + [118] = {.count = 1, .reusable = true}, SHIFT(73), + [120] = {.count = 1, .reusable = true}, SHIFT(74), + [122] = {.count = 1, .reusable = true}, SHIFT(75), + [124] = {.count = 1, .reusable = false}, SHIFT(71), + [126] = {.count = 1, .reusable = false}, SHIFT(78), + [128] = {.count = 1, .reusable = true}, SHIFT(79), + [130] = {.count = 1, .reusable = true}, SHIFT(80), + [132] = {.count = 1, .reusable = false}, SHIFT(81), + [134] = {.count = 1, .reusable = true}, SHIFT(82), + [136] = {.count = 1, .reusable = true}, SHIFT(83), + [138] = {.count = 1, .reusable = true}, SHIFT(84), + [140] = {.count = 1, .reusable = true}, SHIFT(85), + [142] = {.count = 1, .reusable = true}, SHIFT(86), + [144] = {.count = 1, .reusable = false}, SHIFT(82), + [146] = {.count = 1, .reusable = true}, SHIFT(89), + [148] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 1), + [150] = {.count = 1, .reusable = false}, SHIFT(90), + [152] = {.count = 1, .reusable = false}, SHIFT(91), + [154] = {.count = 1, .reusable = false}, SHIFT(92), + [156] = {.count = 1, .reusable = false}, SHIFT(93), + [158] = {.count = 1, .reusable = false}, SHIFT(94), + [160] = {.count = 1, .reusable = false}, SHIFT(95), + [162] = {.count = 1, .reusable = false}, SHIFT(96), + [164] = {.count = 1, .reusable = false}, SHIFT(97), + [166] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), + [168] = {.count = 1, .reusable = false}, SHIFT(98), + [170] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 1), + [172] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 1), + [174] = {.count = 1, .reusable = false}, SHIFT(101), + [176] = {.count = 1, .reusable = false}, SHIFT(102), + [178] = {.count = 1, .reusable = false}, SHIFT(103), + [180] = {.count = 1, .reusable = false}, SHIFT(104), + [182] = {.count = 1, .reusable = false}, SHIFT(105), + [184] = {.count = 1, .reusable = false}, SHIFT(106), + [186] = {.count = 1, .reusable = false}, SHIFT(107), + [188] = {.count = 1, .reusable = false}, SHIFT(108), + [190] = {.count = 1, .reusable = false}, SHIFT(109), + [192] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 1), + [194] = {.count = 1, .reusable = true}, SHIFT(111), + [196] = {.count = 1, .reusable = true}, SHIFT(112), + [198] = {.count = 1, .reusable = false}, SHIFT(113), + [200] = {.count = 1, .reusable = true}, SHIFT(114), + [202] = {.count = 1, .reusable = true}, SHIFT(115), + [204] = {.count = 1, .reusable = true}, SHIFT(116), + [206] = {.count = 1, .reusable = true}, SHIFT(117), + [208] = {.count = 1, .reusable = true}, SHIFT(118), + [210] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [212] = {.count = 1, .reusable = true}, SHIFT(120), + [214] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [216] = {.count = 1, .reusable = false}, SHIFT(122), + [218] = {.count = 1, .reusable = false}, SHIFT(123), + [220] = {.count = 1, .reusable = true}, SHIFT(124), + [222] = {.count = 1, .reusable = false}, SHIFT(125), + [224] = {.count = 1, .reusable = false}, SHIFT(126), + [226] = {.count = 1, .reusable = false}, SHIFT(127), + [228] = {.count = 1, .reusable = true}, SHIFT(129), + [230] = {.count = 1, .reusable = true}, SHIFT(130), + [232] = {.count = 1, .reusable = false}, SHIFT(131), + [234] = {.count = 1, .reusable = false}, SHIFT(129), + [236] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1), + [238] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1), + [240] = {.count = 1, .reusable = true}, SHIFT(132), + [242] = {.count = 1, .reusable = true}, SHIFT(133), + [244] = {.count = 1, .reusable = true}, SHIFT(134), + [246] = {.count = 1, .reusable = false}, SHIFT(135), + [248] = {.count = 1, .reusable = false}, SHIFT(133), + [250] = {.count = 1, .reusable = true}, SHIFT(137), + [252] = {.count = 1, .reusable = false}, SHIFT(138), + [254] = {.count = 1, .reusable = false}, SHIFT(139), + [256] = {.count = 1, .reusable = false}, SHIFT(140), + [258] = {.count = 1, .reusable = false}, SHIFT(141), + [260] = {.count = 1, .reusable = false}, SHIFT(142), + [262] = {.count = 1, .reusable = true}, SHIFT(143), + [264] = {.count = 1, .reusable = false}, SHIFT(144), + [266] = {.count = 1, .reusable = true}, SHIFT(145), + [268] = {.count = 1, .reusable = false}, SHIFT(146), + [270] = {.count = 1, .reusable = false}, SHIFT(147), + [272] = {.count = 1, .reusable = false}, SHIFT(148), + [274] = {.count = 1, .reusable = true}, SHIFT(149), + [276] = {.count = 1, .reusable = false}, SHIFT(150), + [278] = {.count = 1, .reusable = true}, SHIFT(151), + [280] = {.count = 1, .reusable = true}, SHIFT(152), + [282] = {.count = 1, .reusable = true}, SHIFT(153), + [284] = {.count = 1, .reusable = true}, SHIFT(154), + [286] = {.count = 1, .reusable = true}, SHIFT(155), + [288] = {.count = 1, .reusable = false}, SHIFT(156), + [290] = {.count = 1, .reusable = true}, SHIFT(163), + [292] = {.count = 1, .reusable = false}, SHIFT(164), + [294] = {.count = 1, .reusable = false}, SHIFT(165), + [296] = {.count = 1, .reusable = false}, SHIFT(166), + [298] = {.count = 1, .reusable = true}, SHIFT(167), + [300] = {.count = 1, .reusable = false}, SHIFT(168), + [302] = {.count = 1, .reusable = false}, SHIFT(169), + [304] = {.count = 1, .reusable = false}, SHIFT(170), + [306] = {.count = 1, .reusable = true}, SHIFT(171), + [308] = {.count = 1, .reusable = false}, SHIFT(172), + [310] = {.count = 1, .reusable = false}, SHIFT(180), + [312] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), + [314] = {.count = 1, .reusable = false}, SHIFT(181), + [316] = {.count = 1, .reusable = false}, SHIFT(182), + [318] = {.count = 1, .reusable = false}, SHIFT(183), + [320] = {.count = 1, .reusable = true}, SHIFT(182), + [322] = {.count = 1, .reusable = true}, SHIFT(184), + [324] = {.count = 1, .reusable = false}, REDUCE(sym_command, 1), + [326] = {.count = 1, .reusable = false}, SHIFT(185), + [328] = {.count = 1, .reusable = false}, SHIFT(186), + [330] = {.count = 1, .reusable = false}, SHIFT(187), + [332] = {.count = 1, .reusable = false}, SHIFT(188), + [334] = {.count = 1, .reusable = false}, SHIFT(189), + [336] = {.count = 1, .reusable = false}, SHIFT(16), + [338] = {.count = 1, .reusable = false}, SHIFT(190), + [340] = {.count = 1, .reusable = false}, SHIFT(19), + [342] = {.count = 1, .reusable = false}, SHIFT(20), + [344] = {.count = 1, .reusable = false}, SHIFT(21), + [346] = {.count = 1, .reusable = false}, SHIFT(22), + [348] = {.count = 1, .reusable = true}, REDUCE(sym_command, 1), + [350] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 1), + [352] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 1), + [354] = {.count = 1, .reusable = true}, REDUCE(sym_program, 1), + [356] = {.count = 1, .reusable = true}, SHIFT(195), + [358] = {.count = 1, .reusable = true}, SHIFT(15), + [360] = {.count = 1, .reusable = true}, SHIFT(199), + [362] = {.count = 1, .reusable = true}, SHIFT(200), + [364] = {.count = 1, .reusable = true}, SHIFT(202), + [366] = {.count = 1, .reusable = true}, SHIFT(203), + [368] = {.count = 1, .reusable = true}, SHIFT(205), + [370] = {.count = 1, .reusable = true}, SHIFT(206), + [372] = {.count = 1, .reusable = true}, SHIFT(207), + [374] = {.count = 1, .reusable = true}, SHIFT(208), + [376] = {.count = 1, .reusable = false}, SHIFT(209), + [378] = {.count = 1, .reusable = true}, SHIFT(210), + [380] = {.count = 1, .reusable = true}, SHIFT(211), + [382] = {.count = 1, .reusable = true}, SHIFT(212), + [384] = {.count = 1, .reusable = true}, SHIFT(213), + [386] = {.count = 1, .reusable = true}, SHIFT(214), + [388] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 2), + [390] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 2), + [392] = {.count = 1, .reusable = false}, SHIFT(215), + [394] = {.count = 1, .reusable = false}, SHIFT(216), + [396] = {.count = 1, .reusable = true}, SHIFT(216), + [398] = {.count = 1, .reusable = true}, SHIFT(217), + [400] = {.count = 1, .reusable = false}, SHIFT(219), + [402] = {.count = 1, .reusable = true}, SHIFT(219), + [404] = {.count = 1, .reusable = true}, SHIFT(220), + [406] = {.count = 1, .reusable = true}, SHIFT(221), + [408] = {.count = 1, .reusable = false}, SHIFT(222), + [410] = {.count = 1, .reusable = false}, SHIFT(223), + [412] = {.count = 1, .reusable = true}, SHIFT(223), + [414] = {.count = 1, .reusable = false}, SHIFT(225), + [416] = {.count = 1, .reusable = true}, SHIFT(227), + [418] = {.count = 1, .reusable = true}, SHIFT(228), + [420] = {.count = 1, .reusable = false}, SHIFT(229), + [422] = {.count = 1, .reusable = false}, SHIFT(227), + [424] = {.count = 1, .reusable = false}, SHIFT(230), + [426] = {.count = 1, .reusable = false}, SHIFT(231), + [428] = {.count = 1, .reusable = true}, SHIFT(231), + [430] = {.count = 1, .reusable = true}, SHIFT(232), + [432] = {.count = 1, .reusable = true}, SHIFT(233), + [434] = {.count = 1, .reusable = true}, SHIFT(234), + [436] = {.count = 1, .reusable = false}, SHIFT(235), + [438] = {.count = 1, .reusable = false}, SHIFT(233), + [440] = {.count = 1, .reusable = true}, SHIFT(243), + [442] = {.count = 1, .reusable = true}, SHIFT(244), + [444] = {.count = 1, .reusable = true}, SHIFT(246), + [446] = {.count = 1, .reusable = true}, SHIFT(248), + [448] = {.count = 1, .reusable = true}, SHIFT(251), + [450] = {.count = 1, .reusable = false}, SHIFT(252), + [452] = {.count = 1, .reusable = false}, SHIFT(253), + [454] = {.count = 1, .reusable = false}, SHIFT(256), + [456] = {.count = 1, .reusable = false}, SHIFT(257), + [458] = {.count = 1, .reusable = false}, SHIFT(260), + [460] = {.count = 1, .reusable = false}, SHIFT(261), + [462] = {.count = 1, .reusable = false}, SHIFT(262), + [464] = {.count = 1, .reusable = false}, SHIFT(263), + [466] = {.count = 1, .reusable = false}, SHIFT(264), + [468] = {.count = 1, .reusable = true}, SHIFT(263), + [470] = {.count = 1, .reusable = true}, SHIFT(265), + [472] = {.count = 1, .reusable = false}, SHIFT(266), + [474] = {.count = 1, .reusable = false}, SHIFT(267), + [476] = {.count = 1, .reusable = false}, SHIFT(268), + [478] = {.count = 1, .reusable = false}, SHIFT(269), + [480] = {.count = 1, .reusable = false}, SHIFT(270), + [482] = {.count = 1, .reusable = true}, SHIFT(58), + [484] = {.count = 1, .reusable = false}, SHIFT(277), + [486] = {.count = 1, .reusable = false}, SHIFT(69), + [488] = {.count = 1, .reusable = false}, SHIFT(278), + [490] = {.count = 1, .reusable = false}, SHIFT(72), + [492] = {.count = 1, .reusable = false}, SHIFT(73), + [494] = {.count = 1, .reusable = false}, SHIFT(74), + [496] = {.count = 1, .reusable = false}, SHIFT(75), + [498] = {.count = 1, .reusable = false}, SHIFT(279), + [500] = {.count = 1, .reusable = true}, SHIFT(280), + [502] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [504] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [506] = {.count = 1, .reusable = false}, SHIFT(282), + [508] = {.count = 1, .reusable = true}, SHIFT(284), + [510] = {.count = 1, .reusable = true}, SHIFT(285), + [512] = {.count = 1, .reusable = false}, SHIFT(286), + [514] = {.count = 1, .reusable = false}, SHIFT(284), + [516] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), + [518] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), + [520] = {.count = 1, .reusable = true}, SHIFT(287), + [522] = {.count = 1, .reusable = true}, SHIFT(288), + [524] = {.count = 1, .reusable = true}, SHIFT(289), + [526] = {.count = 1, .reusable = false}, SHIFT(290), + [528] = {.count = 1, .reusable = false}, SHIFT(288), + [530] = {.count = 1, .reusable = true}, SHIFT(298), + [532] = {.count = 1, .reusable = false}, SHIFT(68), + [534] = {.count = 1, .reusable = false}, SHIFT(300), + [536] = {.count = 1, .reusable = false}, SHIFT(80), + [538] = {.count = 1, .reusable = false}, SHIFT(301), + [540] = {.count = 1, .reusable = false}, SHIFT(83), + [542] = {.count = 1, .reusable = false}, SHIFT(84), + [544] = {.count = 1, .reusable = false}, SHIFT(85), + [546] = {.count = 1, .reusable = false}, SHIFT(86), + [548] = {.count = 1, .reusable = false}, SHIFT(302), + [550] = {.count = 1, .reusable = true}, SHIFT(303), + [552] = {.count = 1, .reusable = false}, SHIFT(305), + [554] = {.count = 1, .reusable = true}, SHIFT(307), + [556] = {.count = 1, .reusable = true}, SHIFT(308), + [558] = {.count = 1, .reusable = false}, SHIFT(309), + [560] = {.count = 1, .reusable = false}, SHIFT(307), + [562] = {.count = 1, .reusable = true}, SHIFT(310), + [564] = {.count = 1, .reusable = true}, SHIFT(311), + [566] = {.count = 1, .reusable = true}, SHIFT(312), + [568] = {.count = 1, .reusable = false}, SHIFT(313), + [570] = {.count = 1, .reusable = false}, SHIFT(311), + [572] = {.count = 1, .reusable = false}, SHIFT(79), + [574] = {.count = 1, .reusable = true}, SHIFT(322), + [576] = {.count = 1, .reusable = true}, SHIFT(324), + [578] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [580] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [582] = {.count = 1, .reusable = false}, SHIFT(326), + [584] = {.count = 1, .reusable = true}, SHIFT(91), + [586] = {.count = 1, .reusable = true}, SHIFT(328), + [588] = {.count = 1, .reusable = true}, SHIFT(329), + [590] = {.count = 1, .reusable = false}, SHIFT(330), + [592] = {.count = 1, .reusable = false}, SHIFT(328), + [594] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [596] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [598] = {.count = 1, .reusable = true}, SHIFT(331), + [600] = {.count = 1, .reusable = true}, SHIFT(332), + [602] = {.count = 1, .reusable = true}, SHIFT(333), + [604] = {.count = 1, .reusable = false}, SHIFT(334), + [606] = {.count = 1, .reusable = false}, SHIFT(332), + [608] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [610] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [612] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 2), + [614] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 2), + [616] = {.count = 1, .reusable = true}, SHIFT(343), + [618] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [620] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [622] = {.count = 1, .reusable = false}, SHIFT(345), + [624] = {.count = 1, .reusable = true}, SHIFT(102), + [626] = {.count = 1, .reusable = true}, SHIFT(347), + [628] = {.count = 1, .reusable = true}, SHIFT(348), + [630] = {.count = 1, .reusable = false}, SHIFT(349), + [632] = {.count = 1, .reusable = false}, SHIFT(347), + [634] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1), + [636] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1), + [638] = {.count = 1, .reusable = true}, SHIFT(350), + [640] = {.count = 1, .reusable = true}, SHIFT(351), + [642] = {.count = 1, .reusable = true}, SHIFT(352), + [644] = {.count = 1, .reusable = false}, SHIFT(353), + [646] = {.count = 1, .reusable = false}, SHIFT(351), + [648] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), + [650] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), + [652] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 2), + [654] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 2), + [656] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [658] = {.count = 1, .reusable = true}, SHIFT(362), + [660] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [662] = {.count = 1, .reusable = false}, SHIFT(364), + [664] = {.count = 1, .reusable = true}, SHIFT(366), + [666] = {.count = 1, .reusable = true}, SHIFT(367), + [668] = {.count = 1, .reusable = false}, SHIFT(368), + [670] = {.count = 1, .reusable = false}, SHIFT(366), + [672] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2), + [674] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2), + [676] = {.count = 1, .reusable = true}, SHIFT(369), + [678] = {.count = 1, .reusable = true}, SHIFT(370), + [680] = {.count = 1, .reusable = true}, SHIFT(371), + [682] = {.count = 1, .reusable = false}, SHIFT(372), + [684] = {.count = 1, .reusable = false}, SHIFT(370), + [686] = {.count = 1, .reusable = true}, SHIFT(380), + [688] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 2), + [690] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 2), + [692] = {.count = 1, .reusable = true}, REDUCE(sym_string, 2), + [694] = {.count = 1, .reusable = false}, REDUCE(sym_string, 2), + [696] = {.count = 1, .reusable = false}, SHIFT(382), + [698] = {.count = 1, .reusable = false}, SHIFT(383), + [700] = {.count = 1, .reusable = true}, SHIFT(382), + [702] = {.count = 1, .reusable = false}, SHIFT(384), + [704] = {.count = 1, .reusable = true}, SHIFT(385), + [706] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 1), + [708] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 1), + [710] = {.count = 1, .reusable = true}, SHIFT(386), + [712] = {.count = 1, .reusable = true}, SHIFT(387), + [714] = {.count = 1, .reusable = true}, SHIFT(388), + [716] = {.count = 1, .reusable = false}, SHIFT(389), + [718] = {.count = 1, .reusable = false}, SHIFT(387), + [720] = {.count = 1, .reusable = false}, SHIFT(395), + [722] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [724] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [726] = {.count = 1, .reusable = true}, REDUCE(sym_string_expansion, 2), + [728] = {.count = 1, .reusable = false}, REDUCE(sym_string_expansion, 2), + [730] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), + [732] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), + [734] = {.count = 1, .reusable = true}, SHIFT(397), + [736] = {.count = 1, .reusable = true}, SHIFT(398), + [738] = {.count = 1, .reusable = true}, SHIFT(399), + [740] = {.count = 1, .reusable = false}, SHIFT(409), + [742] = {.count = 1, .reusable = false}, SHIFT(400), + [744] = {.count = 1, .reusable = true}, SHIFT(401), + [746] = {.count = 1, .reusable = false}, SHIFT(402), + [748] = {.count = 1, .reusable = true}, SHIFT(403), + [750] = {.count = 1, .reusable = true}, SHIFT(409), + [752] = {.count = 1, .reusable = true}, SHIFT(404), + [754] = {.count = 1, .reusable = true}, SHIFT(405), + [756] = {.count = 1, .reusable = true}, SHIFT(406), + [758] = {.count = 1, .reusable = true}, SHIFT(407), + [760] = {.count = 1, .reusable = true}, SHIFT(408), + [762] = {.count = 1, .reusable = false}, SHIFT(403), + [764] = {.count = 1, .reusable = true}, SHIFT(410), + [766] = {.count = 1, .reusable = true}, SHIFT(411), + [768] = {.count = 1, .reusable = false}, SHIFT(412), + [770] = {.count = 1, .reusable = false}, SHIFT(411), + [772] = {.count = 1, .reusable = true}, SHIFT(414), + [774] = {.count = 1, .reusable = false}, SHIFT(416), + [776] = {.count = 1, .reusable = true}, SHIFT(416), + [778] = {.count = 1, .reusable = true}, SHIFT(415), + [780] = {.count = 1, .reusable = true}, SHIFT(417), + [782] = {.count = 1, .reusable = false}, SHIFT(419), + [784] = {.count = 1, .reusable = true}, SHIFT(419), + [786] = {.count = 1, .reusable = true}, SHIFT(418), + [788] = {.count = 1, .reusable = true}, SHIFT(420), + [790] = {.count = 1, .reusable = true}, SHIFT(422), + [792] = {.count = 1, .reusable = true}, SHIFT(425), + [794] = {.count = 1, .reusable = true}, SHIFT(426), + [796] = {.count = 1, .reusable = true}, SHIFT(428), + [798] = {.count = 1, .reusable = true}, SHIFT(434), + [800] = {.count = 1, .reusable = true}, SHIFT(435), + [802] = {.count = 1, .reusable = true}, SHIFT(436), + [804] = {.count = 1, .reusable = false}, SHIFT(437), + [806] = {.count = 1, .reusable = true}, SHIFT(438), + [808] = {.count = 1, .reusable = true}, SHIFT(439), + [810] = {.count = 1, .reusable = true}, SHIFT(440), + [812] = {.count = 1, .reusable = true}, SHIFT(441), + [814] = {.count = 1, .reusable = true}, SHIFT(442), + [816] = {.count = 1, .reusable = false}, SHIFT(443), + [818] = {.count = 1, .reusable = false}, SHIFT(438), + [820] = {.count = 1, .reusable = true}, SHIFT(446), + [822] = {.count = 1, .reusable = true}, SHIFT(447), + [824] = {.count = 1, .reusable = false}, SHIFT(448), + [826] = {.count = 1, .reusable = true}, SHIFT(449), + [828] = {.count = 1, .reusable = true}, SHIFT(450), + [830] = {.count = 1, .reusable = true}, SHIFT(451), + [832] = {.count = 1, .reusable = true}, SHIFT(452), + [834] = {.count = 1, .reusable = true}, SHIFT(453), + [836] = {.count = 1, .reusable = false}, SHIFT(454), + [838] = {.count = 1, .reusable = false}, SHIFT(449), + [840] = {.count = 1, .reusable = true}, SHIFT(456), + [842] = {.count = 1, .reusable = false}, SHIFT(458), + [844] = {.count = 1, .reusable = true}, SHIFT(460), + [846] = {.count = 1, .reusable = true}, SHIFT(461), + [848] = {.count = 1, .reusable = false}, SHIFT(462), + [850] = {.count = 1, .reusable = false}, SHIFT(460), + [852] = {.count = 1, .reusable = true}, SHIFT(463), + [854] = {.count = 1, .reusable = true}, SHIFT(464), + [856] = {.count = 1, .reusable = true}, SHIFT(465), + [858] = {.count = 1, .reusable = false}, SHIFT(466), + [860] = {.count = 1, .reusable = false}, SHIFT(464), + [862] = {.count = 1, .reusable = true}, SHIFT(474), + [864] = {.count = 1, .reusable = false}, SHIFT(475), + [866] = {.count = 1, .reusable = true}, SHIFT(476), + [868] = {.count = 1, .reusable = true}, SHIFT(475), + [870] = {.count = 1, .reusable = true}, SHIFT(477), + [872] = {.count = 1, .reusable = true}, SHIFT(478), + [874] = {.count = 1, .reusable = false}, SHIFT(479), + [876] = {.count = 1, .reusable = false}, SHIFT(480), + [878] = {.count = 1, .reusable = true}, SHIFT(480), + [880] = {.count = 1, .reusable = false}, SHIFT(481), + [882] = {.count = 1, .reusable = true}, SHIFT(481), + [884] = {.count = 1, .reusable = true}, SHIFT(482), + [886] = {.count = 1, .reusable = true}, SHIFT(483), + [888] = {.count = 1, .reusable = true}, SHIFT(484), + [890] = {.count = 1, .reusable = false}, SHIFT(484), + [892] = {.count = 1, .reusable = true}, SHIFT(148), + [894] = {.count = 1, .reusable = true}, SHIFT(489), + [896] = {.count = 1, .reusable = true}, SHIFT(491), + [898] = {.count = 1, .reusable = true}, SHIFT(494), + [900] = {.count = 1, .reusable = true}, SHIFT(495), + [902] = {.count = 1, .reusable = true}, SHIFT(496), + [904] = {.count = 1, .reusable = false}, SHIFT(496), + [906] = {.count = 1, .reusable = true}, SHIFT(499), + [908] = {.count = 1, .reusable = true}, SHIFT(500), + [910] = {.count = 1, .reusable = false}, SHIFT(500), + [912] = {.count = 1, .reusable = true}, SHIFT(503), + [914] = {.count = 1, .reusable = false}, SHIFT(504), + [916] = {.count = 1, .reusable = true}, SHIFT(504), + [918] = {.count = 1, .reusable = true}, SHIFT(505), + [920] = {.count = 1, .reusable = true}, SHIFT(506), + [922] = {.count = 1, .reusable = false}, SHIFT(507), + [924] = {.count = 1, .reusable = false}, SHIFT(508), + [926] = {.count = 1, .reusable = true}, SHIFT(508), + [928] = {.count = 1, .reusable = true}, SHIFT(509), + [930] = {.count = 1, .reusable = true}, SHIFT(510), + [932] = {.count = 1, .reusable = true}, SHIFT(511), + [934] = {.count = 1, .reusable = false}, SHIFT(511), + [936] = {.count = 1, .reusable = true}, SHIFT(170), + [938] = {.count = 1, .reusable = true}, SHIFT(515), + [940] = {.count = 1, .reusable = true}, SHIFT(516), + [942] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), + [944] = {.count = 1, .reusable = false}, REDUCE(sym__terminated_statement, 2), + [946] = {.count = 1, .reusable = false}, SHIFT(521), + [948] = {.count = 1, .reusable = true}, SHIFT(521), + [950] = {.count = 1, .reusable = false}, SHIFT(522), + [952] = {.count = 1, .reusable = false}, SHIFT(523), + [954] = {.count = 1, .reusable = false}, SHIFT(524), + [956] = {.count = 1, .reusable = true}, SHIFT(525), + [958] = {.count = 1, .reusable = true}, SHIFT(526), + [960] = {.count = 1, .reusable = true}, SHIFT(528), + [962] = {.count = 1, .reusable = true}, SHIFT(529), + [964] = {.count = 1, .reusable = true}, SHIFT(531), + [966] = {.count = 1, .reusable = true}, SHIFT(532), + [968] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), + [970] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), + [972] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2), + [975] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), + [978] = {.count = 1, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), + [980] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), + [983] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), + [986] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), + [989] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), + [992] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), + [995] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), + [998] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), + [1001] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), + [1004] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), + [1007] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13), + [1010] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), + [1013] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), + [1016] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), + [1019] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16), + [1022] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), + [1025] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), + [1028] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19), + [1031] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(20), + [1034] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(21), + [1037] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(22), + [1040] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(23), + [1043] = {.count = 1, .reusable = true}, SHIFT(537), + [1045] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), + [1048] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(195), + [1051] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(14), + [1054] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(14), + [1057] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), + [1059] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), + [1061] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [1063] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [1065] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), + [1067] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), + [1069] = {.count = 1, .reusable = true}, SHIFT(539), + [1071] = {.count = 1, .reusable = true}, SHIFT(540), + [1073] = {.count = 1, .reusable = true}, SHIFT(542), + [1075] = {.count = 1, .reusable = true}, SHIFT(543), + [1077] = {.count = 1, .reusable = true}, SHIFT(544), + [1079] = {.count = 1, .reusable = true}, REDUCE(sym__assignment, 2), + [1081] = {.count = 1, .reusable = false}, REDUCE(sym__assignment, 2), + [1083] = {.count = 1, .reusable = true}, SHIFT(545), + [1085] = {.count = 1, .reusable = true}, SHIFT(546), + [1087] = {.count = 1, .reusable = true}, SHIFT(547), + [1089] = {.count = 1, .reusable = false}, SHIFT(548), + [1091] = {.count = 1, .reusable = true}, SHIFT(549), + [1093] = {.count = 1, .reusable = true}, SHIFT(550), + [1095] = {.count = 1, .reusable = true}, SHIFT(551), + [1097] = {.count = 1, .reusable = true}, SHIFT(552), + [1099] = {.count = 1, .reusable = true}, SHIFT(553), + [1101] = {.count = 1, .reusable = true}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), + [1103] = {.count = 1, .reusable = true}, SHIFT(555), + [1105] = {.count = 1, .reusable = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), + [1107] = {.count = 1, .reusable = false}, SHIFT(557), + [1109] = {.count = 1, .reusable = true}, SHIFT(559), + [1111] = {.count = 1, .reusable = true}, SHIFT(560), + [1113] = {.count = 1, .reusable = false}, SHIFT(561), + [1115] = {.count = 1, .reusable = false}, SHIFT(559), + [1117] = {.count = 1, .reusable = true}, SHIFT(562), + [1119] = {.count = 1, .reusable = true}, SHIFT(563), + [1121] = {.count = 1, .reusable = true}, SHIFT(564), + [1123] = {.count = 1, .reusable = false}, SHIFT(565), + [1125] = {.count = 1, .reusable = false}, SHIFT(563), + [1127] = {.count = 1, .reusable = true}, SHIFT(573), + [1129] = {.count = 1, .reusable = true}, SHIFT(574), + [1131] = {.count = 1, .reusable = false}, SHIFT(575), + [1133] = {.count = 1, .reusable = true}, SHIFT(576), + [1135] = {.count = 1, .reusable = true}, SHIFT(577), + [1137] = {.count = 1, .reusable = true}, SHIFT(578), + [1139] = {.count = 1, .reusable = true}, SHIFT(579), + [1141] = {.count = 1, .reusable = true}, SHIFT(580), + [1143] = {.count = 1, .reusable = true}, SHIFT(582), + [1145] = {.count = 1, .reusable = false}, SHIFT(584), + [1147] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), + [1149] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), + [1151] = {.count = 1, .reusable = false}, SHIFT(589), + [1153] = {.count = 1, .reusable = false}, SHIFT(590), + [1155] = {.count = 1, .reusable = false}, SHIFT(591), + [1157] = {.count = 1, .reusable = true}, SHIFT(597), + [1159] = {.count = 1, .reusable = false}, SHIFT(598), + [1161] = {.count = 1, .reusable = true}, SHIFT(598), + [1163] = {.count = 1, .reusable = true}, SHIFT(599), + [1165] = {.count = 1, .reusable = false}, SHIFT(601), + [1167] = {.count = 1, .reusable = false}, SHIFT(602), + [1169] = {.count = 1, .reusable = true}, SHIFT(602), + [1171] = {.count = 1, .reusable = true}, SHIFT(603), + [1173] = {.count = 1, .reusable = true}, SHIFT(604), + [1175] = {.count = 1, .reusable = true}, SHIFT(605), + [1177] = {.count = 1, .reusable = false}, SHIFT(607), + [1179] = {.count = 1, .reusable = true}, SHIFT(607), + [1181] = {.count = 1, .reusable = true}, SHIFT(606), + [1183] = {.count = 1, .reusable = true}, SHIFT(608), + [1185] = {.count = 1, .reusable = true}, SHIFT(609), + [1187] = {.count = 1, .reusable = false}, SHIFT(610), + [1189] = {.count = 1, .reusable = false}, SHIFT(609), + [1191] = {.count = 1, .reusable = true}, SHIFT(612), + [1193] = {.count = 1, .reusable = false}, SHIFT(614), + [1195] = {.count = 1, .reusable = true}, SHIFT(614), + [1197] = {.count = 1, .reusable = true}, SHIFT(613), + [1199] = {.count = 1, .reusable = true}, SHIFT(615), + [1201] = {.count = 1, .reusable = false}, SHIFT(617), + [1203] = {.count = 1, .reusable = true}, SHIFT(617), + [1205] = {.count = 1, .reusable = true}, SHIFT(616), + [1207] = {.count = 1, .reusable = true}, SHIFT(618), + [1209] = {.count = 1, .reusable = true}, SHIFT(619), + [1211] = {.count = 1, .reusable = true}, SHIFT(620), + [1213] = {.count = 1, .reusable = true}, SHIFT(621), + [1215] = {.count = 1, .reusable = true}, SHIFT(625), + [1217] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [1219] = {.count = 1, .reusable = false}, SHIFT(626), + [1221] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [1223] = {.count = 1, .reusable = true}, SHIFT(628), + [1225] = {.count = 1, .reusable = true}, SHIFT(629), + [1227] = {.count = 1, .reusable = true}, SHIFT(631), + [1229] = {.count = 1, .reusable = true}, SHIFT(633), + [1231] = {.count = 1, .reusable = true}, SHIFT(634), + [1233] = {.count = 1, .reusable = true}, SHIFT(640), + [1235] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), + [1237] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), + [1239] = {.count = 1, .reusable = true}, SHIFT(641), + [1241] = {.count = 1, .reusable = false}, SHIFT(644), + [1243] = {.count = 1, .reusable = true}, SHIFT(644), + [1245] = {.count = 1, .reusable = false}, SHIFT(645), + [1247] = {.count = 1, .reusable = false}, SHIFT(646), + [1249] = {.count = 1, .reusable = true}, SHIFT(647), + [1251] = {.count = 1, .reusable = true}, SHIFT(648), + [1253] = {.count = 1, .reusable = true}, SHIFT(649), + [1255] = {.count = 1, .reusable = true}, SHIFT(650), + [1257] = {.count = 1, .reusable = false}, SHIFT(641), + [1259] = {.count = 1, .reusable = false}, SHIFT(654), + [1261] = {.count = 1, .reusable = true}, SHIFT(654), + [1263] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), + [1265] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), + [1267] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), + [1269] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), + [1271] = {.count = 1, .reusable = true}, SHIFT(656), + [1273] = {.count = 1, .reusable = false}, SHIFT(658), + [1275] = {.count = 1, .reusable = true}, SHIFT(659), + [1277] = {.count = 1, .reusable = true}, SHIFT(660), + [1279] = {.count = 1, .reusable = false}, SHIFT(662), + [1281] = {.count = 1, .reusable = true}, SHIFT(662), + [1283] = {.count = 1, .reusable = true}, SHIFT(661), + [1285] = {.count = 1, .reusable = true}, SHIFT(663), + [1287] = {.count = 1, .reusable = true}, SHIFT(664), + [1289] = {.count = 1, .reusable = false}, SHIFT(665), + [1291] = {.count = 1, .reusable = false}, SHIFT(664), + [1293] = {.count = 1, .reusable = true}, SHIFT(667), + [1295] = {.count = 1, .reusable = false}, SHIFT(669), + [1297] = {.count = 1, .reusable = true}, SHIFT(669), + [1299] = {.count = 1, .reusable = true}, SHIFT(668), + [1301] = {.count = 1, .reusable = true}, SHIFT(670), + [1303] = {.count = 1, .reusable = false}, SHIFT(672), + [1305] = {.count = 1, .reusable = true}, SHIFT(672), + [1307] = {.count = 1, .reusable = true}, SHIFT(671), + [1309] = {.count = 1, .reusable = true}, SHIFT(673), + [1311] = {.count = 1, .reusable = true}, SHIFT(674), + [1313] = {.count = 1, .reusable = false}, REDUCE(sym_bracket_command, 3), + [1315] = {.count = 1, .reusable = true}, REDUCE(sym_bracket_command, 3), + [1317] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(67), + [1320] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(68), + [1323] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(69), + [1326] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(70), + [1329] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(71), + [1332] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(72), + [1335] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(73), + [1338] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(74), + [1341] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(75), + [1344] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(71), + [1347] = {.count = 1, .reusable = true}, SHIFT(676), + [1349] = {.count = 1, .reusable = false}, SHIFT(678), + [1351] = {.count = 1, .reusable = true}, SHIFT(679), + [1353] = {.count = 1, .reusable = true}, SHIFT(680), + [1355] = {.count = 1, .reusable = false}, SHIFT(682), + [1357] = {.count = 1, .reusable = true}, SHIFT(682), + [1359] = {.count = 1, .reusable = true}, SHIFT(681), + [1361] = {.count = 1, .reusable = true}, SHIFT(683), + [1363] = {.count = 1, .reusable = true}, SHIFT(684), + [1365] = {.count = 1, .reusable = false}, SHIFT(685), + [1367] = {.count = 1, .reusable = false}, SHIFT(684), + [1369] = {.count = 1, .reusable = true}, SHIFT(687), + [1371] = {.count = 1, .reusable = false}, SHIFT(689), + [1373] = {.count = 1, .reusable = true}, SHIFT(689), + [1375] = {.count = 1, .reusable = true}, SHIFT(688), + [1377] = {.count = 1, .reusable = true}, SHIFT(690), + [1379] = {.count = 1, .reusable = false}, SHIFT(692), + [1381] = {.count = 1, .reusable = true}, SHIFT(692), + [1383] = {.count = 1, .reusable = true}, SHIFT(691), + [1385] = {.count = 1, .reusable = true}, SHIFT(693), + [1387] = {.count = 1, .reusable = true}, SHIFT(694), + [1389] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(78), + [1392] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(79), + [1395] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(80), + [1398] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(81), + [1401] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(82), + [1404] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(83), + [1407] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(84), + [1410] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(85), + [1413] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(86), + [1416] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(82), + [1419] = {.count = 1, .reusable = true}, SHIFT(695), + [1421] = {.count = 1, .reusable = true}, SHIFT(696), + [1423] = {.count = 1, .reusable = true}, SHIFT(697), + [1425] = {.count = 1, .reusable = true}, SHIFT(698), + [1427] = {.count = 1, .reusable = true}, SHIFT(94), + [1429] = {.count = 1, .reusable = true}, SHIFT(95), + [1431] = {.count = 1, .reusable = true}, SHIFT(96), + [1433] = {.count = 1, .reusable = true}, SHIFT(97), + [1435] = {.count = 1, .reusable = true}, SHIFT(699), + [1437] = {.count = 1, .reusable = false}, SHIFT(701), + [1439] = {.count = 1, .reusable = true}, SHIFT(702), + [1441] = {.count = 1, .reusable = true}, SHIFT(703), + [1443] = {.count = 1, .reusable = false}, SHIFT(705), + [1445] = {.count = 1, .reusable = true}, SHIFT(705), + [1447] = {.count = 1, .reusable = true}, SHIFT(704), + [1449] = {.count = 1, .reusable = true}, SHIFT(706), + [1451] = {.count = 1, .reusable = true}, SHIFT(707), + [1453] = {.count = 1, .reusable = false}, SHIFT(708), + [1455] = {.count = 1, .reusable = false}, SHIFT(707), + [1457] = {.count = 1, .reusable = true}, SHIFT(710), + [1459] = {.count = 1, .reusable = false}, SHIFT(712), + [1461] = {.count = 1, .reusable = true}, SHIFT(712), + [1463] = {.count = 1, .reusable = true}, SHIFT(711), + [1465] = {.count = 1, .reusable = true}, SHIFT(713), + [1467] = {.count = 1, .reusable = false}, SHIFT(715), + [1469] = {.count = 1, .reusable = true}, SHIFT(715), + [1471] = {.count = 1, .reusable = true}, SHIFT(714), + [1473] = {.count = 1, .reusable = true}, SHIFT(716), + [1475] = {.count = 1, .reusable = true}, SHIFT(717), + [1477] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(89), + [1480] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1482] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(90), + [1485] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(91), + [1488] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(92), + [1491] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(93), + [1494] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(94), + [1497] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(95), + [1500] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(96), + [1503] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(97), + [1506] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(98), + [1509] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1511] = {.count = 1, .reusable = true}, SHIFT(718), + [1513] = {.count = 1, .reusable = true}, SHIFT(105), + [1515] = {.count = 1, .reusable = true}, SHIFT(106), + [1517] = {.count = 1, .reusable = true}, SHIFT(107), + [1519] = {.count = 1, .reusable = true}, SHIFT(108), + [1521] = {.count = 1, .reusable = false}, SHIFT(720), + [1523] = {.count = 1, .reusable = true}, SHIFT(721), + [1525] = {.count = 1, .reusable = true}, SHIFT(722), + [1527] = {.count = 1, .reusable = false}, SHIFT(724), + [1529] = {.count = 1, .reusable = true}, SHIFT(724), + [1531] = {.count = 1, .reusable = true}, SHIFT(723), + [1533] = {.count = 1, .reusable = true}, SHIFT(725), + [1535] = {.count = 1, .reusable = true}, SHIFT(726), + [1537] = {.count = 1, .reusable = false}, SHIFT(727), + [1539] = {.count = 1, .reusable = false}, SHIFT(726), + [1541] = {.count = 1, .reusable = true}, SHIFT(729), + [1543] = {.count = 1, .reusable = false}, SHIFT(731), + [1545] = {.count = 1, .reusable = true}, SHIFT(731), + [1547] = {.count = 1, .reusable = true}, SHIFT(730), + [1549] = {.count = 1, .reusable = true}, SHIFT(732), + [1551] = {.count = 1, .reusable = false}, SHIFT(734), + [1553] = {.count = 1, .reusable = true}, SHIFT(734), + [1555] = {.count = 1, .reusable = true}, SHIFT(733), + [1557] = {.count = 1, .reusable = true}, SHIFT(735), + [1559] = {.count = 1, .reusable = true}, SHIFT(736), + [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(101), + [1566] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(102), + [1569] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(103), + [1572] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(104), + [1575] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(105), + [1578] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(106), + [1581] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(107), + [1584] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(108), + [1587] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(109), + [1590] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1592] = {.count = 1, .reusable = true}, SHIFT(737), + [1594] = {.count = 1, .reusable = false}, SHIFT(739), + [1596] = {.count = 1, .reusable = true}, SHIFT(740), + [1598] = {.count = 1, .reusable = true}, SHIFT(741), + [1600] = {.count = 1, .reusable = false}, SHIFT(743), + [1602] = {.count = 1, .reusable = true}, SHIFT(743), + [1604] = {.count = 1, .reusable = true}, SHIFT(742), + [1606] = {.count = 1, .reusable = true}, SHIFT(744), + [1608] = {.count = 1, .reusable = true}, SHIFT(745), + [1610] = {.count = 1, .reusable = false}, SHIFT(746), + [1612] = {.count = 1, .reusable = false}, SHIFT(745), + [1614] = {.count = 1, .reusable = true}, SHIFT(748), + [1616] = {.count = 1, .reusable = false}, SHIFT(750), + [1618] = {.count = 1, .reusable = true}, SHIFT(750), + [1620] = {.count = 1, .reusable = true}, SHIFT(749), + [1622] = {.count = 1, .reusable = true}, SHIFT(751), + [1624] = {.count = 1, .reusable = false}, SHIFT(753), + [1626] = {.count = 1, .reusable = true}, SHIFT(753), + [1628] = {.count = 1, .reusable = true}, SHIFT(752), + [1630] = {.count = 1, .reusable = true}, SHIFT(754), + [1632] = {.count = 1, .reusable = true}, SHIFT(755), + [1634] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1636] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1638] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(120), + [1641] = {.count = 1, .reusable = true}, SHIFT(756), + [1643] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), + [1645] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), + [1647] = {.count = 1, .reusable = true}, SHIFT(757), + [1649] = {.count = 1, .reusable = true}, SHIFT(758), + [1651] = {.count = 1, .reusable = false}, SHIFT(760), + [1653] = {.count = 1, .reusable = true}, SHIFT(760), + [1655] = {.count = 1, .reusable = true}, SHIFT(759), + [1657] = {.count = 1, .reusable = true}, SHIFT(761), + [1659] = {.count = 1, .reusable = true}, SHIFT(762), + [1661] = {.count = 1, .reusable = false}, SHIFT(763), + [1663] = {.count = 1, .reusable = false}, SHIFT(762), + [1665] = {.count = 1, .reusable = true}, SHIFT(765), + [1667] = {.count = 1, .reusable = false}, SHIFT(767), + [1669] = {.count = 1, .reusable = true}, SHIFT(767), + [1671] = {.count = 1, .reusable = true}, SHIFT(766), + [1673] = {.count = 1, .reusable = true}, SHIFT(768), + [1675] = {.count = 1, .reusable = false}, SHIFT(770), + [1677] = {.count = 1, .reusable = true}, SHIFT(770), + [1679] = {.count = 1, .reusable = true}, SHIFT(769), + [1681] = {.count = 1, .reusable = true}, SHIFT(771), + [1683] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), + [1685] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), + [1687] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(123), + [1690] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(124), + [1693] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(125), + [1696] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(126), + [1699] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(127), + [1702] = {.count = 1, .reusable = true}, SHIFT(772), + [1704] = {.count = 1, .reusable = true}, SHIFT(773), + [1706] = {.count = 1, .reusable = true}, SHIFT(775), + [1708] = {.count = 1, .reusable = false}, SHIFT(776), + [1710] = {.count = 1, .reusable = true}, SHIFT(777), + [1712] = {.count = 1, .reusable = false}, SHIFT(778), + [1714] = {.count = 1, .reusable = true}, SHIFT(779), + [1716] = {.count = 1, .reusable = true}, SHIFT(780), + [1718] = {.count = 1, .reusable = true}, SHIFT(781), + [1720] = {.count = 1, .reusable = true}, SHIFT(782), + [1722] = {.count = 1, .reusable = true}, SHIFT(783), + [1724] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1726] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1728] = {.count = 1, .reusable = true}, SHIFT(785), + [1730] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1732] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1734] = {.count = 1, .reusable = false}, SHIFT(787), + [1736] = {.count = 1, .reusable = true}, SHIFT(789), + [1738] = {.count = 1, .reusable = true}, SHIFT(790), + [1740] = {.count = 1, .reusable = false}, SHIFT(791), + [1742] = {.count = 1, .reusable = false}, SHIFT(789), + [1744] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), + [1746] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), + [1748] = {.count = 1, .reusable = true}, SHIFT(792), + [1750] = {.count = 1, .reusable = true}, SHIFT(793), + [1752] = {.count = 1, .reusable = true}, SHIFT(794), + [1754] = {.count = 1, .reusable = false}, SHIFT(795), + [1756] = {.count = 1, .reusable = false}, SHIFT(793), + [1758] = {.count = 1, .reusable = true}, SHIFT(797), + [1760] = {.count = 1, .reusable = true}, SHIFT(804), + [1762] = {.count = 1, .reusable = false}, SHIFT(805), + [1764] = {.count = 1, .reusable = true}, SHIFT(805), + [1766] = {.count = 1, .reusable = true}, SHIFT(806), + [1768] = {.count = 1, .reusable = true}, SHIFT(807), + [1770] = {.count = 1, .reusable = false}, SHIFT(809), + [1772] = {.count = 1, .reusable = true}, SHIFT(809), + [1774] = {.count = 1, .reusable = true}, SHIFT(808), + [1776] = {.count = 1, .reusable = true}, SHIFT(810), + [1778] = {.count = 1, .reusable = false}, SHIFT(812), + [1780] = {.count = 1, .reusable = true}, SHIFT(812), + [1782] = {.count = 1, .reusable = true}, SHIFT(811), + [1784] = {.count = 1, .reusable = false}, SHIFT(814), + [1786] = {.count = 1, .reusable = true}, SHIFT(814), + [1788] = {.count = 1, .reusable = true}, SHIFT(813), + [1790] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [1792] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [1794] = {.count = 1, .reusable = true}, SHIFT(815), + [1796] = {.count = 1, .reusable = true}, SHIFT(816), + [1798] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), + [1800] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), + [1802] = {.count = 1, .reusable = true}, SHIFT(817), + [1804] = {.count = 1, .reusable = true}, SHIFT(818), + [1806] = {.count = 1, .reusable = true}, SHIFT(819), + [1808] = {.count = 1, .reusable = true}, SHIFT(820), + [1810] = {.count = 1, .reusable = true}, SHIFT(821), + [1812] = {.count = 1, .reusable = false}, SHIFT(822), + [1814] = {.count = 1, .reusable = false}, SHIFT(823), + [1816] = {.count = 1, .reusable = true}, SHIFT(823), + [1818] = {.count = 1, .reusable = true}, SHIFT(824), + [1820] = {.count = 1, .reusable = true}, SHIFT(826), + [1822] = {.count = 1, .reusable = false}, SHIFT(827), + [1824] = {.count = 1, .reusable = false}, SHIFT(828), + [1826] = {.count = 1, .reusable = true}, SHIFT(828), + [1828] = {.count = 1, .reusable = false}, SHIFT(829), + [1830] = {.count = 1, .reusable = false}, SHIFT(830), + [1832] = {.count = 1, .reusable = true}, SHIFT(830), + [1834] = {.count = 1, .reusable = true}, SHIFT(831), + [1836] = {.count = 1, .reusable = true}, SHIFT(832), + [1838] = {.count = 1, .reusable = false}, SHIFT(834), + [1840] = {.count = 1, .reusable = false}, SHIFT(835), + [1842] = {.count = 1, .reusable = true}, SHIFT(835), + [1844] = {.count = 1, .reusable = true}, SHIFT(838), + [1846] = {.count = 1, .reusable = true}, SHIFT(839), + [1848] = {.count = 1, .reusable = true}, SHIFT(841), + [1850] = {.count = 1, .reusable = false}, SHIFT(843), + [1852] = {.count = 1, .reusable = true}, SHIFT(845), + [1854] = {.count = 1, .reusable = true}, SHIFT(846), + [1856] = {.count = 1, .reusable = false}, SHIFT(847), + [1858] = {.count = 1, .reusable = false}, SHIFT(845), + [1860] = {.count = 1, .reusable = true}, SHIFT(848), + [1862] = {.count = 1, .reusable = true}, SHIFT(849), + [1864] = {.count = 1, .reusable = true}, SHIFT(850), + [1866] = {.count = 1, .reusable = false}, SHIFT(851), + [1868] = {.count = 1, .reusable = false}, SHIFT(849), + [1870] = {.count = 1, .reusable = true}, SHIFT(860), + [1872] = {.count = 1, .reusable = false}, SHIFT(862), + [1874] = {.count = 1, .reusable = true}, SHIFT(864), + [1876] = {.count = 1, .reusable = true}, SHIFT(865), + [1878] = {.count = 1, .reusable = false}, SHIFT(866), + [1880] = {.count = 1, .reusable = false}, SHIFT(864), + [1882] = {.count = 1, .reusable = true}, SHIFT(867), + [1884] = {.count = 1, .reusable = true}, SHIFT(868), + [1886] = {.count = 1, .reusable = true}, SHIFT(869), + [1888] = {.count = 1, .reusable = false}, SHIFT(870), + [1890] = {.count = 1, .reusable = false}, SHIFT(868), + [1892] = {.count = 1, .reusable = true}, SHIFT(879), + [1894] = {.count = 1, .reusable = false}, SHIFT(881), + [1896] = {.count = 1, .reusable = true}, SHIFT(882), + [1898] = {.count = 1, .reusable = true}, SHIFT(883), + [1900] = {.count = 1, .reusable = false}, SHIFT(885), + [1902] = {.count = 1, .reusable = true}, SHIFT(885), + [1904] = {.count = 1, .reusable = true}, SHIFT(884), + [1906] = {.count = 1, .reusable = true}, SHIFT(886), + [1908] = {.count = 1, .reusable = true}, SHIFT(887), + [1910] = {.count = 1, .reusable = false}, SHIFT(888), + [1912] = {.count = 1, .reusable = false}, SHIFT(887), + [1914] = {.count = 1, .reusable = true}, SHIFT(890), + [1916] = {.count = 1, .reusable = false}, SHIFT(892), + [1918] = {.count = 1, .reusable = true}, SHIFT(892), + [1920] = {.count = 1, .reusable = true}, SHIFT(891), + [1922] = {.count = 1, .reusable = true}, SHIFT(893), + [1924] = {.count = 1, .reusable = false}, SHIFT(895), + [1926] = {.count = 1, .reusable = true}, SHIFT(895), + [1928] = {.count = 1, .reusable = true}, SHIFT(894), + [1930] = {.count = 1, .reusable = true}, SHIFT(896), + [1932] = {.count = 1, .reusable = true}, SHIFT(897), + [1934] = {.count = 1, .reusable = true}, SHIFT(898), + [1936] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), + [1938] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), + [1940] = {.count = 1, .reusable = false}, SHIFT(903), + [1942] = {.count = 1, .reusable = true}, SHIFT(903), + [1944] = {.count = 1, .reusable = false}, SHIFT(904), + [1946] = {.count = 1, .reusable = false}, SHIFT(149), + [1948] = {.count = 1, .reusable = false}, SHIFT(905), + [1950] = {.count = 1, .reusable = false}, SHIFT(152), + [1952] = {.count = 1, .reusable = false}, SHIFT(153), + [1954] = {.count = 1, .reusable = false}, SHIFT(154), + [1956] = {.count = 1, .reusable = false}, SHIFT(155), + [1958] = {.count = 1, .reusable = false}, SHIFT(906), + [1960] = {.count = 1, .reusable = true}, SHIFT(907), + [1962] = {.count = 1, .reusable = true}, SHIFT(908), + [1964] = {.count = 1, .reusable = true}, SHIFT(910), + [1966] = {.count = 1, .reusable = true}, SHIFT(911), + [1968] = {.count = 1, .reusable = true}, SHIFT(913), + [1970] = {.count = 1, .reusable = true}, SHIFT(914), + [1972] = {.count = 1, .reusable = true}, SHIFT(920), + [1974] = {.count = 1, .reusable = true}, SHIFT(921), + [1976] = {.count = 1, .reusable = true}, SHIFT(923), + [1978] = {.count = 1, .reusable = true}, SHIFT(925), + [1980] = {.count = 1, .reusable = true}, SHIFT(926), + [1982] = {.count = 1, .reusable = true}, SHIFT(932), + [1984] = {.count = 1, .reusable = false}, SHIFT(936), + [1986] = {.count = 1, .reusable = true}, SHIFT(936), + [1988] = {.count = 1, .reusable = false}, SHIFT(937), + [1990] = {.count = 1, .reusable = false}, SHIFT(938), + [1992] = {.count = 1, .reusable = true}, SHIFT(939), + [1994] = {.count = 1, .reusable = true}, SHIFT(940), + [1996] = {.count = 1, .reusable = true}, SHIFT(941), + [1998] = {.count = 1, .reusable = true}, SHIFT(942), + [2000] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), + [2002] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), + [2004] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), + [2006] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), + [2008] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), + [2010] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), + [2012] = {.count = 1, .reusable = true}, SHIFT(948), + [2014] = {.count = 1, .reusable = true}, SHIFT(949), + [2016] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc, 1), + [2018] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc, 1), + [2020] = {.count = 1, .reusable = true}, SHIFT(952), + [2022] = {.count = 1, .reusable = true}, SHIFT(953), + [2024] = {.count = 1, .reusable = false}, SHIFT(954), + [2026] = {.count = 1, .reusable = true}, SHIFT(955), + [2028] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), + [2030] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), + [2032] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [2034] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [2036] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), + [2038] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), + [2040] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(184), + [2043] = {.count = 1, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), + [2045] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(186), + [2048] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(187), + [2051] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(188), + [2054] = {.count = 1, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), + [2056] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), + [2058] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), + [2060] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(185), + [2063] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(189), + [2066] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(16), + [2069] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(17), + [2072] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(190), + [2075] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(19), + [2078] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(20), + [2081] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), + [2084] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), + [2087] = {.count = 1, .reusable = true}, SHIFT(957), + [2089] = {.count = 1, .reusable = true}, SHIFT(958), + [2091] = {.count = 1, .reusable = true}, SHIFT(960), + [2093] = {.count = 1, .reusable = false}, SHIFT(656), + [2095] = {.count = 1, .reusable = true}, SHIFT(961), + [2097] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [2099] = {.count = 1, .reusable = true}, SHIFT(963), + [2101] = {.count = 1, .reusable = true}, SHIFT(964), + [2103] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), + [2105] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), + [2107] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), + [2109] = {.count = 1, .reusable = true}, SHIFT(965), + [2111] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2113] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2115] = {.count = 1, .reusable = false}, SHIFT(967), + [2117] = {.count = 1, .reusable = true}, SHIFT(969), + [2119] = {.count = 1, .reusable = true}, SHIFT(970), + [2121] = {.count = 1, .reusable = false}, SHIFT(971), + [2123] = {.count = 1, .reusable = false}, SHIFT(969), + [2125] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2127] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2129] = {.count = 1, .reusable = true}, SHIFT(972), + [2131] = {.count = 1, .reusable = true}, SHIFT(973), + [2133] = {.count = 1, .reusable = true}, SHIFT(974), + [2135] = {.count = 1, .reusable = false}, SHIFT(975), + [2137] = {.count = 1, .reusable = false}, SHIFT(973), + [2139] = {.count = 1, .reusable = true}, SHIFT(983), + [2141] = {.count = 1, .reusable = true}, SHIFT(985), + [2143] = {.count = 1, .reusable = false}, SHIFT(987), + [2145] = {.count = 1, .reusable = true}, SHIFT(988), + [2147] = {.count = 1, .reusable = true}, SHIFT(989), + [2149] = {.count = 1, .reusable = false}, SHIFT(991), + [2151] = {.count = 1, .reusable = true}, SHIFT(991), + [2153] = {.count = 1, .reusable = true}, SHIFT(990), + [2155] = {.count = 1, .reusable = true}, SHIFT(992), + [2157] = {.count = 1, .reusable = true}, SHIFT(993), + [2159] = {.count = 1, .reusable = false}, SHIFT(994), + [2161] = {.count = 1, .reusable = false}, SHIFT(993), + [2163] = {.count = 1, .reusable = true}, SHIFT(996), + [2165] = {.count = 1, .reusable = false}, SHIFT(998), + [2167] = {.count = 1, .reusable = true}, SHIFT(998), + [2169] = {.count = 1, .reusable = true}, SHIFT(997), + [2171] = {.count = 1, .reusable = true}, SHIFT(999), + [2173] = {.count = 1, .reusable = false}, SHIFT(1001), + [2175] = {.count = 1, .reusable = true}, SHIFT(1001), + [2177] = {.count = 1, .reusable = true}, SHIFT(1000), + [2179] = {.count = 1, .reusable = true}, SHIFT(1002), + [2181] = {.count = 1, .reusable = true}, SHIFT(1003), + [2183] = {.count = 1, .reusable = true}, SHIFT(1004), + [2185] = {.count = 1, .reusable = false}, SHIFT(1006), + [2187] = {.count = 1, .reusable = true}, SHIFT(1008), + [2189] = {.count = 1, .reusable = true}, SHIFT(1009), + [2191] = {.count = 1, .reusable = false}, SHIFT(1010), + [2193] = {.count = 1, .reusable = false}, SHIFT(1008), + [2195] = {.count = 1, .reusable = true}, SHIFT(1011), + [2197] = {.count = 1, .reusable = true}, SHIFT(1012), + [2199] = {.count = 1, .reusable = true}, SHIFT(1013), + [2201] = {.count = 1, .reusable = false}, SHIFT(1014), + [2203] = {.count = 1, .reusable = false}, SHIFT(1012), + [2205] = {.count = 1, .reusable = false}, SHIFT(1022), + [2207] = {.count = 1, .reusable = false}, SHIFT(573), + [2209] = {.count = 1, .reusable = false}, SHIFT(574), + [2211] = {.count = 1, .reusable = false}, SHIFT(576), + [2213] = {.count = 1, .reusable = false}, SHIFT(577), + [2215] = {.count = 1, .reusable = false}, SHIFT(578), + [2217] = {.count = 1, .reusable = false}, SHIFT(579), + [2219] = {.count = 1, .reusable = false}, SHIFT(580), + [2221] = {.count = 1, .reusable = true}, SHIFT(1022), + [2223] = {.count = 1, .reusable = false}, SHIFT(1024), + [2225] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), + [2227] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), + [2229] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), + [2231] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), + [2233] = {.count = 1, .reusable = false}, SHIFT(1026), + [2235] = {.count = 1, .reusable = true}, SHIFT(1026), + [2237] = {.count = 1, .reusable = false}, SHIFT(1027), + [2239] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 4), + [2241] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 4), + [2243] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), + [2245] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), + [2247] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), + [2249] = {.count = 1, .reusable = false}, SHIFT(1033), + [2251] = {.count = 1, .reusable = true}, SHIFT(1033), + [2253] = {.count = 1, .reusable = true}, SHIFT(1034), + [2255] = {.count = 1, .reusable = false}, SHIFT(1034), + [2257] = {.count = 1, .reusable = true}, SHIFT(590), + [2259] = {.count = 1, .reusable = true}, SHIFT(591), + [2261] = {.count = 1, .reusable = false}, SHIFT(1039), + [2263] = {.count = 1, .reusable = true}, SHIFT(1040), + [2265] = {.count = 1, .reusable = true}, SHIFT(1041), + [2267] = {.count = 1, .reusable = false}, SHIFT(1041), + [2269] = {.count = 1, .reusable = false}, SHIFT(1045), + [2271] = {.count = 1, .reusable = true}, SHIFT(1045), + [2273] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(221), + [2276] = {.count = 1, .reusable = false}, SHIFT(1046), + [2278] = {.count = 1, .reusable = false}, SHIFT(1049), + [2280] = {.count = 1, .reusable = true}, SHIFT(1049), + [2282] = {.count = 1, .reusable = true}, SHIFT(1050), + [2284] = {.count = 1, .reusable = false}, SHIFT(1051), + [2286] = {.count = 1, .reusable = true}, SHIFT(1052), + [2288] = {.count = 1, .reusable = true}, SHIFT(1054), + [2290] = {.count = 1, .reusable = true}, SHIFT(1055), + [2292] = {.count = 1, .reusable = true}, SHIFT(1056), + [2294] = {.count = 1, .reusable = true}, SHIFT(1057), + [2296] = {.count = 1, .reusable = false}, SHIFT(1059), + [2298] = {.count = 1, .reusable = true}, SHIFT(1059), + [2300] = {.count = 1, .reusable = true}, SHIFT(1058), + [2302] = {.count = 1, .reusable = true}, SHIFT(1060), + [2304] = {.count = 1, .reusable = false}, SHIFT(1062), + [2306] = {.count = 1, .reusable = true}, SHIFT(1062), + [2308] = {.count = 1, .reusable = true}, SHIFT(1061), + [2310] = {.count = 1, .reusable = false}, SHIFT(1064), + [2312] = {.count = 1, .reusable = true}, SHIFT(1064), + [2314] = {.count = 1, .reusable = true}, SHIFT(1063), + [2316] = {.count = 1, .reusable = true}, SHIFT(1065), + [2318] = {.count = 1, .reusable = true}, SHIFT(1066), + [2320] = {.count = 1, .reusable = true}, SHIFT(1067), + [2322] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [2324] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [2326] = {.count = 1, .reusable = false}, SHIFT(1069), + [2328] = {.count = 1, .reusable = true}, SHIFT(1069), + [2330] = {.count = 1, .reusable = true}, SHIFT(1070), + [2332] = {.count = 1, .reusable = false}, SHIFT(1072), + [2334] = {.count = 1, .reusable = true}, SHIFT(1072), + [2336] = {.count = 1, .reusable = true}, SHIFT(1073), + [2338] = {.count = 1, .reusable = true}, SHIFT(1074), + [2340] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), + [2342] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), + [2344] = {.count = 1, .reusable = true}, SHIFT(1078), + [2346] = {.count = 1, .reusable = true}, SHIFT(1079), + [2348] = {.count = 1, .reusable = false}, SHIFT(1080), + [2350] = {.count = 1, .reusable = true}, SHIFT(1082), + [2352] = {.count = 1, .reusable = true}, SHIFT(1083), + [2354] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(251), + [2357] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(252), + [2360] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(253), + [2363] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(256), + [2366] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(257), + [2369] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 4), + [2371] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 4), + [2373] = {.count = 1, .reusable = true}, SHIFT(1087), + [2375] = {.count = 1, .reusable = true}, SHIFT(1088), + [2377] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(265), + [2380] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(267), + [2383] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(268), + [2386] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(266), + [2389] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(269), + [2392] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(270), + [2395] = {.count = 1, .reusable = true}, SHIFT(1090), + [2397] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(280), + [2400] = {.count = 1, .reusable = true}, SHIFT(1092), + [2402] = {.count = 1, .reusable = false}, SHIFT(1093), + [2404] = {.count = 1, .reusable = true}, SHIFT(1094), + [2406] = {.count = 1, .reusable = true}, SHIFT(1096), + [2408] = {.count = 1, .reusable = true}, SHIFT(1097), + [2410] = {.count = 1, .reusable = true}, SHIFT(1098), + [2412] = {.count = 1, .reusable = true}, SHIFT(1099), + [2414] = {.count = 1, .reusable = false}, SHIFT(1101), + [2416] = {.count = 1, .reusable = true}, SHIFT(1101), + [2418] = {.count = 1, .reusable = true}, SHIFT(1100), + [2420] = {.count = 1, .reusable = true}, SHIFT(1102), + [2422] = {.count = 1, .reusable = false}, SHIFT(1104), + [2424] = {.count = 1, .reusable = true}, SHIFT(1104), + [2426] = {.count = 1, .reusable = true}, SHIFT(1103), + [2428] = {.count = 1, .reusable = false}, SHIFT(1106), + [2430] = {.count = 1, .reusable = true}, SHIFT(1106), + [2432] = {.count = 1, .reusable = true}, SHIFT(1105), + [2434] = {.count = 1, .reusable = true}, SHIFT(1107), + [2436] = {.count = 1, .reusable = true}, SHIFT(1108), + [2438] = {.count = 1, .reusable = true}, SHIFT(1109), + [2440] = {.count = 1, .reusable = false}, REDUCE(sym_bracket_command, 4), + [2442] = {.count = 1, .reusable = true}, REDUCE(sym_bracket_command, 4), + [2444] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(303), + [2447] = {.count = 1, .reusable = true}, SHIFT(1110), + [2449] = {.count = 1, .reusable = false}, SHIFT(1111), + [2451] = {.count = 1, .reusable = true}, SHIFT(1112), + [2453] = {.count = 1, .reusable = true}, SHIFT(1114), + [2455] = {.count = 1, .reusable = true}, SHIFT(1115), + [2457] = {.count = 1, .reusable = true}, SHIFT(1116), + [2459] = {.count = 1, .reusable = true}, SHIFT(1117), + [2461] = {.count = 1, .reusable = false}, SHIFT(1119), + [2463] = {.count = 1, .reusable = true}, SHIFT(1119), + [2465] = {.count = 1, .reusable = true}, SHIFT(1118), + [2467] = {.count = 1, .reusable = true}, SHIFT(1120), + [2469] = {.count = 1, .reusable = false}, SHIFT(1122), + [2471] = {.count = 1, .reusable = true}, SHIFT(1122), + [2473] = {.count = 1, .reusable = true}, SHIFT(1121), + [2475] = {.count = 1, .reusable = false}, SHIFT(1124), + [2477] = {.count = 1, .reusable = true}, SHIFT(1124), + [2479] = {.count = 1, .reusable = true}, SHIFT(1123), + [2481] = {.count = 1, .reusable = true}, SHIFT(1125), + [2483] = {.count = 1, .reusable = true}, SHIFT(1126), + [2485] = {.count = 1, .reusable = true}, SHIFT(1127), + [2487] = {.count = 1, .reusable = true}, SHIFT(1128), + [2489] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(324), + [2492] = {.count = 1, .reusable = true}, SHIFT(1130), + [2494] = {.count = 1, .reusable = false}, SHIFT(1131), + [2496] = {.count = 1, .reusable = true}, SHIFT(1132), + [2498] = {.count = 1, .reusable = true}, SHIFT(1134), + [2500] = {.count = 1, .reusable = true}, SHIFT(1135), + [2502] = {.count = 1, .reusable = true}, SHIFT(1136), + [2504] = {.count = 1, .reusable = true}, SHIFT(1137), + [2506] = {.count = 1, .reusable = false}, SHIFT(1139), + [2508] = {.count = 1, .reusable = true}, SHIFT(1139), + [2510] = {.count = 1, .reusable = true}, SHIFT(1138), + [2512] = {.count = 1, .reusable = true}, SHIFT(1140), + [2514] = {.count = 1, .reusable = false}, SHIFT(1142), + [2516] = {.count = 1, .reusable = true}, SHIFT(1142), + [2518] = {.count = 1, .reusable = true}, SHIFT(1141), + [2520] = {.count = 1, .reusable = false}, SHIFT(1144), + [2522] = {.count = 1, .reusable = true}, SHIFT(1144), + [2524] = {.count = 1, .reusable = true}, SHIFT(1143), + [2526] = {.count = 1, .reusable = true}, SHIFT(1145), + [2528] = {.count = 1, .reusable = true}, SHIFT(1146), + [2530] = {.count = 1, .reusable = true}, SHIFT(1147), + [2532] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(343), + [2535] = {.count = 1, .reusable = true}, SHIFT(1148), + [2537] = {.count = 1, .reusable = false}, SHIFT(1149), + [2539] = {.count = 1, .reusable = true}, SHIFT(1150), + [2541] = {.count = 1, .reusable = true}, SHIFT(1152), + [2543] = {.count = 1, .reusable = true}, SHIFT(1153), + [2545] = {.count = 1, .reusable = true}, SHIFT(1154), + [2547] = {.count = 1, .reusable = true}, SHIFT(1155), + [2549] = {.count = 1, .reusable = false}, SHIFT(1157), + [2551] = {.count = 1, .reusable = true}, SHIFT(1157), + [2553] = {.count = 1, .reusable = true}, SHIFT(1156), + [2555] = {.count = 1, .reusable = true}, SHIFT(1158), + [2557] = {.count = 1, .reusable = false}, SHIFT(1160), + [2559] = {.count = 1, .reusable = true}, SHIFT(1160), + [2561] = {.count = 1, .reusable = true}, SHIFT(1159), + [2563] = {.count = 1, .reusable = false}, SHIFT(1162), + [2565] = {.count = 1, .reusable = true}, SHIFT(1162), + [2567] = {.count = 1, .reusable = true}, SHIFT(1161), + [2569] = {.count = 1, .reusable = true}, SHIFT(1163), + [2571] = {.count = 1, .reusable = true}, SHIFT(1164), + [2573] = {.count = 1, .reusable = true}, SHIFT(1165), + [2575] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(362), + [2578] = {.count = 1, .reusable = true}, SHIFT(1166), + [2580] = {.count = 1, .reusable = false}, SHIFT(1167), + [2582] = {.count = 1, .reusable = true}, SHIFT(1168), + [2584] = {.count = 1, .reusable = true}, SHIFT(1170), + [2586] = {.count = 1, .reusable = true}, SHIFT(1171), + [2588] = {.count = 1, .reusable = true}, SHIFT(1172), + [2590] = {.count = 1, .reusable = true}, SHIFT(1173), + [2592] = {.count = 1, .reusable = false}, SHIFT(1175), + [2594] = {.count = 1, .reusable = true}, SHIFT(1175), + [2596] = {.count = 1, .reusable = true}, SHIFT(1174), + [2598] = {.count = 1, .reusable = true}, SHIFT(1176), + [2600] = {.count = 1, .reusable = false}, SHIFT(1178), + [2602] = {.count = 1, .reusable = true}, SHIFT(1178), + [2604] = {.count = 1, .reusable = true}, SHIFT(1177), + [2606] = {.count = 1, .reusable = false}, SHIFT(1180), + [2608] = {.count = 1, .reusable = true}, SHIFT(1180), + [2610] = {.count = 1, .reusable = true}, SHIFT(1179), + [2612] = {.count = 1, .reusable = true}, SHIFT(1181), + [2614] = {.count = 1, .reusable = true}, SHIFT(1182), + [2616] = {.count = 1, .reusable = true}, SHIFT(1183), + [2618] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), + [2620] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 3), + [2622] = {.count = 1, .reusable = true}, SHIFT(1184), + [2624] = {.count = 1, .reusable = false}, SHIFT(1185), + [2626] = {.count = 1, .reusable = true}, SHIFT(1186), + [2628] = {.count = 1, .reusable = true}, SHIFT(1188), + [2630] = {.count = 1, .reusable = true}, SHIFT(1189), + [2632] = {.count = 1, .reusable = true}, SHIFT(1190), + [2634] = {.count = 1, .reusable = true}, SHIFT(1191), + [2636] = {.count = 1, .reusable = false}, SHIFT(1193), + [2638] = {.count = 1, .reusable = true}, SHIFT(1193), + [2640] = {.count = 1, .reusable = true}, SHIFT(1192), + [2642] = {.count = 1, .reusable = true}, SHIFT(1194), + [2644] = {.count = 1, .reusable = false}, SHIFT(1196), + [2646] = {.count = 1, .reusable = true}, SHIFT(1196), + [2648] = {.count = 1, .reusable = true}, SHIFT(1195), + [2650] = {.count = 1, .reusable = false}, SHIFT(1198), + [2652] = {.count = 1, .reusable = true}, SHIFT(1198), + [2654] = {.count = 1, .reusable = true}, SHIFT(1197), + [2656] = {.count = 1, .reusable = true}, SHIFT(1199), + [2658] = {.count = 1, .reusable = true}, SHIFT(1200), + [2660] = {.count = 1, .reusable = true}, SHIFT(1201), + [2662] = {.count = 1, .reusable = true}, SHIFT(1202), + [2664] = {.count = 1, .reusable = true}, SHIFT(1203), + [2666] = {.count = 1, .reusable = true}, SHIFT(1204), + [2668] = {.count = 1, .reusable = true}, SHIFT(1205), + [2670] = {.count = 1, .reusable = true}, SHIFT(1206), + [2672] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), + [2674] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), + [2676] = {.count = 1, .reusable = true}, SHIFT(1207), + [2678] = {.count = 1, .reusable = true}, SHIFT(1208), + [2680] = {.count = 1, .reusable = false}, SHIFT(1210), + [2682] = {.count = 1, .reusable = true}, SHIFT(1212), + [2684] = {.count = 1, .reusable = true}, SHIFT(1213), + [2686] = {.count = 1, .reusable = false}, SHIFT(1214), + [2688] = {.count = 1, .reusable = false}, SHIFT(1212), + [2690] = {.count = 1, .reusable = true}, SHIFT(1215), + [2692] = {.count = 1, .reusable = true}, SHIFT(1216), + [2694] = {.count = 1, .reusable = true}, SHIFT(1217), + [2696] = {.count = 1, .reusable = true}, SHIFT(1218), + [2698] = {.count = 1, .reusable = false}, SHIFT(1219), + [2700] = {.count = 1, .reusable = false}, SHIFT(1217), + [2702] = {.count = 1, .reusable = true}, SHIFT(1227), + [2704] = {.count = 1, .reusable = false}, SHIFT(1229), + [2706] = {.count = 1, .reusable = true}, SHIFT(1230), + [2708] = {.count = 1, .reusable = true}, SHIFT(1231), + [2710] = {.count = 1, .reusable = false}, SHIFT(1233), + [2712] = {.count = 1, .reusable = true}, SHIFT(1233), + [2714] = {.count = 1, .reusable = true}, SHIFT(1232), + [2716] = {.count = 1, .reusable = true}, SHIFT(1234), + [2718] = {.count = 1, .reusable = true}, SHIFT(1235), + [2720] = {.count = 1, .reusable = false}, SHIFT(1236), + [2722] = {.count = 1, .reusable = false}, SHIFT(1235), + [2724] = {.count = 1, .reusable = true}, SHIFT(1238), + [2726] = {.count = 1, .reusable = false}, SHIFT(1240), + [2728] = {.count = 1, .reusable = true}, SHIFT(1240), + [2730] = {.count = 1, .reusable = true}, SHIFT(1239), + [2732] = {.count = 1, .reusable = true}, SHIFT(1241), + [2734] = {.count = 1, .reusable = false}, SHIFT(1243), + [2736] = {.count = 1, .reusable = true}, SHIFT(1243), + [2738] = {.count = 1, .reusable = true}, SHIFT(1242), + [2740] = {.count = 1, .reusable = true}, SHIFT(1244), + [2742] = {.count = 1, .reusable = false}, SHIFT(1245), + [2744] = {.count = 1, .reusable = true}, SHIFT(1245), + [2746] = {.count = 1, .reusable = true}, SHIFT(1246), + [2748] = {.count = 1, .reusable = true}, SHIFT(1247), + [2750] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [2752] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [2754] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), + [2756] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(805), + [2759] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(400), + [2762] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(401), + [2765] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(402), + [2768] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(403), + [2771] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(805), + [2774] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(404), + [2777] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(406), + [2780] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(407), + [2783] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(408), + [2786] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(403), + [2789] = {.count = 1, .reusable = false}, SHIFT(1248), + [2791] = {.count = 1, .reusable = true}, SHIFT(1249), + [2793] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [2795] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [2797] = {.count = 1, .reusable = true}, SHIFT(1251), + [2799] = {.count = 1, .reusable = true}, SHIFT(1252), + [2801] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [2803] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [2805] = {.count = 1, .reusable = true}, SHIFT(1253), + [2807] = {.count = 1, .reusable = true}, SHIFT(1254), + [2809] = {.count = 1, .reusable = true}, SHIFT(1255), + [2811] = {.count = 1, .reusable = true}, SHIFT(1256), + [2813] = {.count = 1, .reusable = false}, SHIFT(1257), + [2815] = {.count = 1, .reusable = true}, SHIFT(1257), + [2817] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [2819] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [2821] = {.count = 1, .reusable = true}, SHIFT(1258), + [2823] = {.count = 1, .reusable = false}, SHIFT(1259), + [2825] = {.count = 1, .reusable = true}, SHIFT(1259), + [2827] = {.count = 1, .reusable = true}, SHIFT(1260), + [2829] = {.count = 1, .reusable = true}, SHIFT(1264), + [2831] = {.count = 1, .reusable = false}, SHIFT(1266), + [2833] = {.count = 1, .reusable = false}, SHIFT(1269), + [2835] = {.count = 1, .reusable = false}, SHIFT(1273), + [2837] = {.count = 1, .reusable = true}, SHIFT(1273), + [2839] = {.count = 1, .reusable = true}, SHIFT(1274), + [2841] = {.count = 1, .reusable = false}, SHIFT(1275), + [2843] = {.count = 1, .reusable = true}, SHIFT(1275), + [2845] = {.count = 1, .reusable = true}, SHIFT(1276), + [2847] = {.count = 1, .reusable = true}, SHIFT(1277), + [2849] = {.count = 1, .reusable = true}, SHIFT(1278), + [2851] = {.count = 1, .reusable = true}, SHIFT(1280), + [2853] = {.count = 1, .reusable = false}, SHIFT(1281), + [2855] = {.count = 1, .reusable = true}, SHIFT(1281), + [2857] = {.count = 1, .reusable = true}, SHIFT(1283), + [2859] = {.count = 1, .reusable = false}, SHIFT(1283), + [2861] = {.count = 1, .reusable = false}, SHIFT(1284), + [2863] = {.count = 1, .reusable = true}, SHIFT(1284), + [2865] = {.count = 1, .reusable = true}, SHIFT(1286), + [2867] = {.count = 1, .reusable = true}, SHIFT(1287), + [2869] = {.count = 1, .reusable = true}, SHIFT(1288), + [2871] = {.count = 1, .reusable = true}, SHIFT(1289), + [2873] = {.count = 1, .reusable = true}, SHIFT(1290), + [2875] = {.count = 1, .reusable = false}, SHIFT(1292), + [2877] = {.count = 1, .reusable = true}, SHIFT(1293), + [2879] = {.count = 1, .reusable = true}, SHIFT(1294), + [2881] = {.count = 1, .reusable = false}, SHIFT(1296), + [2883] = {.count = 1, .reusable = true}, SHIFT(1296), + [2885] = {.count = 1, .reusable = true}, SHIFT(1295), + [2887] = {.count = 1, .reusable = true}, SHIFT(1297), + [2889] = {.count = 1, .reusable = true}, SHIFT(1298), + [2891] = {.count = 1, .reusable = false}, SHIFT(1299), + [2893] = {.count = 1, .reusable = false}, SHIFT(1298), + [2895] = {.count = 1, .reusable = true}, SHIFT(1301), + [2897] = {.count = 1, .reusable = false}, SHIFT(1303), + [2899] = {.count = 1, .reusable = true}, SHIFT(1303), + [2901] = {.count = 1, .reusable = true}, SHIFT(1302), + [2903] = {.count = 1, .reusable = true}, SHIFT(1304), + [2905] = {.count = 1, .reusable = false}, SHIFT(1306), + [2907] = {.count = 1, .reusable = true}, SHIFT(1306), + [2909] = {.count = 1, .reusable = true}, SHIFT(1305), + [2911] = {.count = 1, .reusable = true}, SHIFT(1307), + [2913] = {.count = 1, .reusable = true}, SHIFT(1308), + [2915] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(434), + [2918] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(435), + [2921] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(436), + [2924] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(437), + [2927] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(438), + [2930] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(439), + [2933] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(440), + [2936] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(441), + [2939] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(442), + [2942] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(443), + [2945] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(438), + [2948] = {.count = 1, .reusable = true}, SHIFT(1309), + [2950] = {.count = 1, .reusable = false}, SHIFT(1311), + [2952] = {.count = 1, .reusable = true}, SHIFT(1312), + [2954] = {.count = 1, .reusable = true}, SHIFT(1313), + [2956] = {.count = 1, .reusable = false}, SHIFT(1315), + [2958] = {.count = 1, .reusable = true}, SHIFT(1315), + [2960] = {.count = 1, .reusable = true}, SHIFT(1314), + [2962] = {.count = 1, .reusable = true}, SHIFT(1316), + [2964] = {.count = 1, .reusable = true}, SHIFT(1317), + [2966] = {.count = 1, .reusable = false}, SHIFT(1318), + [2968] = {.count = 1, .reusable = false}, SHIFT(1317), + [2970] = {.count = 1, .reusable = true}, SHIFT(1320), + [2972] = {.count = 1, .reusable = false}, SHIFT(1322), + [2974] = {.count = 1, .reusable = true}, SHIFT(1322), + [2976] = {.count = 1, .reusable = true}, SHIFT(1321), + [2978] = {.count = 1, .reusable = true}, SHIFT(1323), + [2980] = {.count = 1, .reusable = false}, SHIFT(1325), + [2982] = {.count = 1, .reusable = true}, SHIFT(1325), + [2984] = {.count = 1, .reusable = true}, SHIFT(1324), + [2986] = {.count = 1, .reusable = true}, SHIFT(1326), + [2988] = {.count = 1, .reusable = true}, SHIFT(1327), + [2990] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(446), + [2993] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(447), + [2996] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(448), + [2999] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(449), + [3002] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(450), + [3005] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(451), + [3008] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(452), + [3011] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(453), + [3014] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(454), + [3017] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(449), + [3020] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(456), + [3023] = {.count = 1, .reusable = true}, SHIFT(1328), + [3025] = {.count = 1, .reusable = false}, SHIFT(1329), + [3027] = {.count = 1, .reusable = true}, SHIFT(1330), + [3029] = {.count = 1, .reusable = true}, SHIFT(1332), + [3031] = {.count = 1, .reusable = true}, SHIFT(1333), + [3033] = {.count = 1, .reusable = true}, SHIFT(1334), + [3035] = {.count = 1, .reusable = true}, SHIFT(1335), + [3037] = {.count = 1, .reusable = false}, SHIFT(1337), + [3039] = {.count = 1, .reusable = true}, SHIFT(1337), + [3041] = {.count = 1, .reusable = true}, SHIFT(1336), + [3043] = {.count = 1, .reusable = true}, SHIFT(1338), + [3045] = {.count = 1, .reusable = false}, SHIFT(1340), + [3047] = {.count = 1, .reusable = true}, SHIFT(1340), + [3049] = {.count = 1, .reusable = true}, SHIFT(1339), + [3051] = {.count = 1, .reusable = false}, SHIFT(1342), + [3053] = {.count = 1, .reusable = true}, SHIFT(1342), + [3055] = {.count = 1, .reusable = true}, SHIFT(1341), + [3057] = {.count = 1, .reusable = true}, SHIFT(1343), + [3059] = {.count = 1, .reusable = true}, SHIFT(1344), + [3061] = {.count = 1, .reusable = true}, SHIFT(1345), + [3063] = {.count = 1, .reusable = true}, SHIFT(1347), + [3065] = {.count = 1, .reusable = true}, SHIFT(1348), + [3067] = {.count = 1, .reusable = true}, SHIFT(1351), + [3069] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(478), + [3072] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(480), + [3075] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(480), + [3078] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(481), + [3081] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(481), + [3084] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(482), + [3087] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(479), + [3090] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(483), + [3093] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(149), + [3096] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(150), + [3099] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(484), + [3102] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(152), + [3105] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(153), + [3108] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(154), + [3111] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(155), + [3114] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(484), + [3117] = {.count = 1, .reusable = true}, SHIFT(1356), + [3119] = {.count = 1, .reusable = true}, SHIFT(1357), + [3121] = {.count = 1, .reusable = false}, SHIFT(1358), + [3123] = {.count = 1, .reusable = true}, SHIFT(1358), + [3125] = {.count = 1, .reusable = true}, SHIFT(1360), + [3127] = {.count = 1, .reusable = true}, SHIFT(1361), + [3129] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(494), + [3132] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(495), + [3135] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(496), + [3138] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(496), + [3141] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(499), + [3144] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(500), + [3147] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(500), + [3150] = {.count = 1, .reusable = true}, SHIFT(1365), + [3152] = {.count = 1, .reusable = true}, SHIFT(1366), + [3154] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(506), + [3157] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(508), + [3160] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(508), + [3163] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(509), + [3166] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(507), + [3169] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(510), + [3172] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(511), + [3175] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(511), + [3178] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_repeat1, 1), + [3180] = {.count = 1, .reusable = false}, REDUCE(aux_sym_heredoc_repeat1, 1), + [3182] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc, 2), + [3184] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc, 2), + [3186] = {.count = 1, .reusable = true}, SHIFT(1371), + [3188] = {.count = 1, .reusable = false}, SHIFT(1372), + [3190] = {.count = 1, .reusable = false}, SHIFT(1371), + [3192] = {.count = 1, .reusable = true}, SHIFT(1373), + [3194] = {.count = 1, .reusable = true}, SHIFT(1374), + [3196] = {.count = 1, .reusable = true}, SHIFT(1375), + [3198] = {.count = 1, .reusable = false}, SHIFT(1376), + [3200] = {.count = 1, .reusable = false}, SHIFT(1374), + [3202] = {.count = 1, .reusable = true}, SHIFT(1378), + [3204] = {.count = 1, .reusable = false}, REDUCE(sym_command, 4), + [3206] = {.count = 1, .reusable = true}, REDUCE(sym_command, 4), + [3208] = {.count = 1, .reusable = true}, SHIFT(1380), + [3210] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [3212] = {.count = 1, .reusable = true}, SHIFT(1381), + [3214] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), + [3216] = {.count = 1, .reusable = true}, SHIFT(1382), + [3218] = {.count = 1, .reusable = false}, SHIFT(1384), + [3220] = {.count = 1, .reusable = true}, SHIFT(1385), + [3222] = {.count = 1, .reusable = true}, SHIFT(1386), + [3224] = {.count = 1, .reusable = false}, SHIFT(1388), + [3226] = {.count = 1, .reusable = true}, SHIFT(1388), + [3228] = {.count = 1, .reusable = true}, SHIFT(1387), + [3230] = {.count = 1, .reusable = true}, SHIFT(1389), + [3232] = {.count = 1, .reusable = true}, SHIFT(1390), + [3234] = {.count = 1, .reusable = false}, SHIFT(1391), + [3236] = {.count = 1, .reusable = false}, SHIFT(1390), + [3238] = {.count = 1, .reusable = true}, SHIFT(1393), + [3240] = {.count = 1, .reusable = false}, SHIFT(1395), + [3242] = {.count = 1, .reusable = true}, SHIFT(1395), + [3244] = {.count = 1, .reusable = true}, SHIFT(1394), + [3246] = {.count = 1, .reusable = true}, SHIFT(1396), + [3248] = {.count = 1, .reusable = false}, SHIFT(1398), + [3250] = {.count = 1, .reusable = true}, SHIFT(1398), + [3252] = {.count = 1, .reusable = true}, SHIFT(1397), + [3254] = {.count = 1, .reusable = true}, SHIFT(1399), + [3256] = {.count = 1, .reusable = true}, SHIFT(1400), + [3258] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), + [3260] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), + [3262] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3264] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(546), + [3267] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(547), + [3270] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(548), + [3273] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(549), + [3276] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(550), + [3279] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(551), + [3282] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(552), + [3285] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(553), + [3288] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(555), + [3291] = {.count = 1, .reusable = true}, SHIFT(1401), + [3293] = {.count = 1, .reusable = false}, SHIFT(1402), + [3295] = {.count = 1, .reusable = true}, SHIFT(1403), + [3297] = {.count = 1, .reusable = true}, SHIFT(1405), + [3299] = {.count = 1, .reusable = true}, SHIFT(1406), + [3301] = {.count = 1, .reusable = true}, SHIFT(1407), + [3303] = {.count = 1, .reusable = true}, SHIFT(1408), + [3305] = {.count = 1, .reusable = false}, SHIFT(1410), + [3307] = {.count = 1, .reusable = true}, SHIFT(1410), + [3309] = {.count = 1, .reusable = true}, SHIFT(1409), + [3311] = {.count = 1, .reusable = true}, SHIFT(1411), + [3313] = {.count = 1, .reusable = false}, SHIFT(1413), + [3315] = {.count = 1, .reusable = true}, SHIFT(1413), + [3317] = {.count = 1, .reusable = true}, SHIFT(1412), + [3319] = {.count = 1, .reusable = false}, SHIFT(1415), + [3321] = {.count = 1, .reusable = true}, SHIFT(1415), + [3323] = {.count = 1, .reusable = true}, SHIFT(1414), + [3325] = {.count = 1, .reusable = true}, SHIFT(1416), + [3327] = {.count = 1, .reusable = true}, SHIFT(1417), + [3329] = {.count = 1, .reusable = true}, SHIFT(1418), + [3331] = {.count = 1, .reusable = true}, SHIFT(1419), + [3333] = {.count = 1, .reusable = false}, SHIFT(1421), + [3335] = {.count = 1, .reusable = true}, SHIFT(1422), + [3337] = {.count = 1, .reusable = true}, SHIFT(1423), + [3339] = {.count = 1, .reusable = false}, SHIFT(1425), + [3341] = {.count = 1, .reusable = true}, SHIFT(1425), + [3343] = {.count = 1, .reusable = true}, SHIFT(1424), + [3345] = {.count = 1, .reusable = true}, SHIFT(1426), + [3347] = {.count = 1, .reusable = true}, SHIFT(1427), + [3349] = {.count = 1, .reusable = false}, SHIFT(1428), + [3351] = {.count = 1, .reusable = false}, SHIFT(1427), + [3353] = {.count = 1, .reusable = true}, SHIFT(1430), + [3355] = {.count = 1, .reusable = false}, SHIFT(1432), + [3357] = {.count = 1, .reusable = true}, SHIFT(1432), + [3359] = {.count = 1, .reusable = true}, SHIFT(1431), + [3361] = {.count = 1, .reusable = true}, SHIFT(1433), + [3363] = {.count = 1, .reusable = false}, SHIFT(1435), + [3365] = {.count = 1, .reusable = true}, SHIFT(1435), + [3367] = {.count = 1, .reusable = true}, SHIFT(1434), + [3369] = {.count = 1, .reusable = true}, SHIFT(1436), + [3371] = {.count = 1, .reusable = true}, SHIFT(1437), + [3373] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3375] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(573), + [3378] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(574), + [3381] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(575), + [3384] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(576), + [3387] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(577), + [3390] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(578), + [3393] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(579), + [3396] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(580), + [3399] = {.count = 1, .reusable = false}, SHIFT(1439), + [3401] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), + [3403] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), + [3405] = {.count = 1, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), + [3407] = {.count = 1, .reusable = true}, SHIFT(1440), + [3409] = {.count = 1, .reusable = false}, SHIFT(1441), + [3411] = {.count = 1, .reusable = true}, SHIFT(1441), + [3413] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), + [3415] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [3417] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [3419] = {.count = 1, .reusable = true}, SHIFT(1443), + [3421] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), + [3423] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(590), + [3426] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [3428] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [3430] = {.count = 1, .reusable = true}, SHIFT(1445), + [3432] = {.count = 1, .reusable = true}, SHIFT(1446), + [3434] = {.count = 1, .reusable = true}, SHIFT(1449), + [3436] = {.count = 1, .reusable = true}, SHIFT(1451), + [3438] = {.count = 1, .reusable = false}, SHIFT(1454), + [3440] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), + [3442] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), + [3444] = {.count = 1, .reusable = true}, SHIFT(1456), + [3446] = {.count = 1, .reusable = false}, SHIFT(1458), + [3448] = {.count = 1, .reusable = true}, SHIFT(1460), + [3450] = {.count = 1, .reusable = true}, SHIFT(1461), + [3452] = {.count = 1, .reusable = true}, SHIFT(1462), + [3454] = {.count = 1, .reusable = false}, SHIFT(1463), + [3456] = {.count = 1, .reusable = true}, SHIFT(1463), + [3458] = {.count = 1, .reusable = false}, SHIFT(1464), + [3460] = {.count = 1, .reusable = true}, SHIFT(1465), + [3462] = {.count = 1, .reusable = true}, SHIFT(1467), + [3464] = {.count = 1, .reusable = true}, SHIFT(1468), + [3466] = {.count = 1, .reusable = true}, SHIFT(1469), + [3468] = {.count = 1, .reusable = true}, SHIFT(1470), + [3470] = {.count = 1, .reusable = true}, SHIFT(1471), + [3472] = {.count = 1, .reusable = true}, SHIFT(1472), + [3474] = {.count = 1, .reusable = false}, SHIFT(1473), + [3476] = {.count = 1, .reusable = true}, SHIFT(1473), + [3478] = {.count = 1, .reusable = true}, SHIFT(1474), + [3480] = {.count = 1, .reusable = false}, SHIFT(1475), + [3482] = {.count = 1, .reusable = true}, SHIFT(1475), + [3484] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), + [3486] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), + [3488] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [3490] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [3492] = {.count = 1, .reusable = true}, SHIFT(1477), + [3494] = {.count = 1, .reusable = true}, SHIFT(1478), + [3496] = {.count = 1, .reusable = false}, SHIFT(1483), + [3498] = {.count = 1, .reusable = true}, SHIFT(1483), + [3500] = {.count = 1, .reusable = true}, SHIFT(1484), + [3502] = {.count = 1, .reusable = true}, SHIFT(1485), + [3504] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 5), + [3506] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 5), + [3508] = {.count = 1, .reusable = true}, SHIFT(1487), + [3510] = {.count = 1, .reusable = true}, SHIFT(1488), + [3512] = {.count = 1, .reusable = true}, SHIFT(1489), + [3514] = {.count = 1, .reusable = false}, SHIFT(1490), + [3516] = {.count = 1, .reusable = true}, SHIFT(1490), + [3518] = {.count = 1, .reusable = false}, SHIFT(1491), + [3520] = {.count = 1, .reusable = true}, SHIFT(1492), + [3522] = {.count = 1, .reusable = true}, SHIFT(1494), + [3524] = {.count = 1, .reusable = true}, SHIFT(1495), + [3526] = {.count = 1, .reusable = true}, SHIFT(1496), + [3528] = {.count = 1, .reusable = true}, SHIFT(1497), + [3530] = {.count = 1, .reusable = true}, SHIFT(1498), + [3532] = {.count = 1, .reusable = true}, SHIFT(1499), + [3534] = {.count = 1, .reusable = false}, SHIFT(1500), + [3536] = {.count = 1, .reusable = true}, SHIFT(1500), + [3538] = {.count = 1, .reusable = true}, SHIFT(1501), + [3540] = {.count = 1, .reusable = false}, SHIFT(1502), + [3542] = {.count = 1, .reusable = true}, SHIFT(1502), + [3544] = {.count = 1, .reusable = true}, SHIFT(1503), + [3546] = {.count = 1, .reusable = true}, SHIFT(1504), + [3548] = {.count = 1, .reusable = true}, SHIFT(1505), + [3550] = {.count = 1, .reusable = false}, SHIFT(1506), + [3552] = {.count = 1, .reusable = true}, SHIFT(1506), + [3554] = {.count = 1, .reusable = false}, SHIFT(1507), + [3556] = {.count = 1, .reusable = true}, SHIFT(1508), + [3558] = {.count = 1, .reusable = true}, SHIFT(1510), + [3560] = {.count = 1, .reusable = true}, SHIFT(1511), + [3562] = {.count = 1, .reusable = true}, SHIFT(1512), + [3564] = {.count = 1, .reusable = true}, SHIFT(1513), + [3566] = {.count = 1, .reusable = true}, SHIFT(1514), + [3568] = {.count = 1, .reusable = true}, SHIFT(1515), + [3570] = {.count = 1, .reusable = false}, SHIFT(1516), + [3572] = {.count = 1, .reusable = true}, SHIFT(1516), + [3574] = {.count = 1, .reusable = true}, SHIFT(1517), + [3576] = {.count = 1, .reusable = false}, SHIFT(1518), + [3578] = {.count = 1, .reusable = true}, SHIFT(1518), + [3580] = {.count = 1, .reusable = true}, SHIFT(1519), + [3582] = {.count = 1, .reusable = true}, SHIFT(1520), + [3584] = {.count = 1, .reusable = true}, SHIFT(1521), + [3586] = {.count = 1, .reusable = true}, SHIFT(1522), + [3588] = {.count = 1, .reusable = false}, SHIFT(1523), + [3590] = {.count = 1, .reusable = true}, SHIFT(1523), + [3592] = {.count = 1, .reusable = false}, SHIFT(1524), + [3594] = {.count = 1, .reusable = true}, SHIFT(1525), + [3596] = {.count = 1, .reusable = true}, SHIFT(1527), + [3598] = {.count = 1, .reusable = true}, SHIFT(1528), + [3600] = {.count = 1, .reusable = true}, SHIFT(1529), + [3602] = {.count = 1, .reusable = true}, SHIFT(1530), + [3604] = {.count = 1, .reusable = true}, SHIFT(1531), + [3606] = {.count = 1, .reusable = true}, SHIFT(1532), + [3608] = {.count = 1, .reusable = false}, SHIFT(1533), + [3610] = {.count = 1, .reusable = true}, SHIFT(1533), + [3612] = {.count = 1, .reusable = true}, SHIFT(1534), + [3614] = {.count = 1, .reusable = false}, SHIFT(1535), + [3616] = {.count = 1, .reusable = true}, SHIFT(1535), + [3618] = {.count = 1, .reusable = true}, SHIFT(1536), + [3620] = {.count = 1, .reusable = true}, SHIFT(1537), + [3622] = {.count = 1, .reusable = true}, SHIFT(1538), + [3624] = {.count = 1, .reusable = false}, SHIFT(1539), + [3626] = {.count = 1, .reusable = true}, SHIFT(1539), + [3628] = {.count = 1, .reusable = false}, SHIFT(1540), + [3630] = {.count = 1, .reusable = true}, SHIFT(1541), + [3632] = {.count = 1, .reusable = true}, SHIFT(1543), + [3634] = {.count = 1, .reusable = true}, SHIFT(1544), + [3636] = {.count = 1, .reusable = true}, SHIFT(1545), + [3638] = {.count = 1, .reusable = true}, SHIFT(1546), + [3640] = {.count = 1, .reusable = true}, SHIFT(1547), + [3642] = {.count = 1, .reusable = true}, SHIFT(1548), + [3644] = {.count = 1, .reusable = false}, SHIFT(1549), + [3646] = {.count = 1, .reusable = true}, SHIFT(1549), + [3648] = {.count = 1, .reusable = true}, SHIFT(1550), + [3650] = {.count = 1, .reusable = false}, SHIFT(1551), + [3652] = {.count = 1, .reusable = true}, SHIFT(1551), + [3654] = {.count = 1, .reusable = true}, SHIFT(1552), + [3656] = {.count = 1, .reusable = true}, SHIFT(1553), + [3658] = {.count = 1, .reusable = true}, SHIFT(1554), + [3660] = {.count = 1, .reusable = false}, SHIFT(1555), + [3662] = {.count = 1, .reusable = true}, SHIFT(1555), + [3664] = {.count = 1, .reusable = false}, SHIFT(1556), + [3666] = {.count = 1, .reusable = true}, SHIFT(1557), + [3668] = {.count = 1, .reusable = true}, SHIFT(1559), + [3670] = {.count = 1, .reusable = true}, SHIFT(1560), + [3672] = {.count = 1, .reusable = true}, SHIFT(1561), + [3674] = {.count = 1, .reusable = true}, SHIFT(1562), + [3676] = {.count = 1, .reusable = true}, SHIFT(1563), + [3678] = {.count = 1, .reusable = true}, SHIFT(1564), + [3680] = {.count = 1, .reusable = false}, SHIFT(1565), + [3682] = {.count = 1, .reusable = true}, SHIFT(1565), + [3684] = {.count = 1, .reusable = true}, SHIFT(1566), + [3686] = {.count = 1, .reusable = false}, SHIFT(1567), + [3688] = {.count = 1, .reusable = true}, SHIFT(1567), + [3690] = {.count = 1, .reusable = true}, SHIFT(1568), + [3692] = {.count = 1, .reusable = true}, SHIFT(1569), + [3694] = {.count = 1, .reusable = true}, SHIFT(1570), + [3696] = {.count = 1, .reusable = false}, SHIFT(1571), + [3698] = {.count = 1, .reusable = true}, SHIFT(1571), + [3700] = {.count = 1, .reusable = false}, SHIFT(1572), + [3702] = {.count = 1, .reusable = true}, SHIFT(1573), + [3704] = {.count = 1, .reusable = true}, SHIFT(1575), + [3706] = {.count = 1, .reusable = true}, SHIFT(1576), + [3708] = {.count = 1, .reusable = true}, SHIFT(1577), + [3710] = {.count = 1, .reusable = true}, SHIFT(1578), + [3712] = {.count = 1, .reusable = true}, SHIFT(1579), + [3714] = {.count = 1, .reusable = true}, SHIFT(1580), + [3716] = {.count = 1, .reusable = false}, SHIFT(1581), + [3718] = {.count = 1, .reusable = true}, SHIFT(1581), + [3720] = {.count = 1, .reusable = true}, SHIFT(1582), + [3722] = {.count = 1, .reusable = false}, SHIFT(1583), + [3724] = {.count = 1, .reusable = true}, SHIFT(1583), + [3726] = {.count = 1, .reusable = true}, SHIFT(1584), + [3728] = {.count = 1, .reusable = true}, SHIFT(1585), + [3730] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [3732] = {.count = 1, .reusable = true}, SHIFT(1586), + [3734] = {.count = 1, .reusable = true}, SHIFT(1587), + [3736] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), + [3738] = {.count = 1, .reusable = true}, SHIFT(1588), + [3740] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [3742] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [3744] = {.count = 1, .reusable = false}, SHIFT(1590), + [3746] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), + [3748] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), + [3750] = {.count = 1, .reusable = true}, SHIFT(1591), + [3752] = {.count = 1, .reusable = true}, SHIFT(1592), + [3754] = {.count = 1, .reusable = false}, SHIFT(1594), + [3756] = {.count = 1, .reusable = true}, SHIFT(1594), + [3758] = {.count = 1, .reusable = true}, SHIFT(1593), + [3760] = {.count = 1, .reusable = true}, SHIFT(1595), + [3762] = {.count = 1, .reusable = true}, SHIFT(1596), + [3764] = {.count = 1, .reusable = false}, SHIFT(1597), + [3766] = {.count = 1, .reusable = false}, SHIFT(1596), + [3768] = {.count = 1, .reusable = true}, SHIFT(1599), + [3770] = {.count = 1, .reusable = false}, SHIFT(1601), + [3772] = {.count = 1, .reusable = true}, SHIFT(1601), + [3774] = {.count = 1, .reusable = true}, SHIFT(1600), + [3776] = {.count = 1, .reusable = true}, SHIFT(1602), + [3778] = {.count = 1, .reusable = false}, SHIFT(1604), + [3780] = {.count = 1, .reusable = true}, SHIFT(1604), + [3782] = {.count = 1, .reusable = true}, SHIFT(1603), + [3784] = {.count = 1, .reusable = true}, SHIFT(1605), + [3786] = {.count = 1, .reusable = true}, SHIFT(1606), + [3788] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(785), + [3791] = {.count = 1, .reusable = true}, SHIFT(1607), + [3793] = {.count = 1, .reusable = false}, SHIFT(1608), + [3795] = {.count = 1, .reusable = true}, SHIFT(1609), + [3797] = {.count = 1, .reusable = true}, SHIFT(1611), + [3799] = {.count = 1, .reusable = true}, SHIFT(1612), + [3801] = {.count = 1, .reusable = true}, SHIFT(1613), + [3803] = {.count = 1, .reusable = true}, SHIFT(1614), + [3805] = {.count = 1, .reusable = false}, SHIFT(1616), + [3807] = {.count = 1, .reusable = true}, SHIFT(1616), + [3809] = {.count = 1, .reusable = true}, SHIFT(1615), + [3811] = {.count = 1, .reusable = true}, SHIFT(1617), + [3813] = {.count = 1, .reusable = false}, SHIFT(1619), + [3815] = {.count = 1, .reusable = true}, SHIFT(1619), + [3817] = {.count = 1, .reusable = true}, SHIFT(1618), + [3819] = {.count = 1, .reusable = false}, SHIFT(1621), + [3821] = {.count = 1, .reusable = true}, SHIFT(1621), + [3823] = {.count = 1, .reusable = true}, SHIFT(1620), + [3825] = {.count = 1, .reusable = true}, SHIFT(1622), + [3827] = {.count = 1, .reusable = true}, SHIFT(1623), + [3829] = {.count = 1, .reusable = true}, SHIFT(1624), + [3831] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [3833] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [3835] = {.count = 1, .reusable = true}, SHIFT(1625), + [3837] = {.count = 1, .reusable = true}, SHIFT(1626), + [3839] = {.count = 1, .reusable = true}, SHIFT(1627), + [3841] = {.count = 1, .reusable = true}, SHIFT(1628), + [3843] = {.count = 1, .reusable = false}, SHIFT(1629), + [3845] = {.count = 1, .reusable = true}, SHIFT(1629), + [3847] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [3849] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [3851] = {.count = 1, .reusable = true}, SHIFT(1630), + [3853] = {.count = 1, .reusable = false}, SHIFT(1631), + [3855] = {.count = 1, .reusable = true}, SHIFT(1631), + [3857] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [3859] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [3861] = {.count = 1, .reusable = true}, SHIFT(1632), + [3863] = {.count = 1, .reusable = false}, SHIFT(1633), + [3865] = {.count = 1, .reusable = true}, SHIFT(1633), + [3867] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [3869] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [3871] = {.count = 1, .reusable = true}, SHIFT(1634), + [3873] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), + [3875] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), + [3877] = {.count = 1, .reusable = true}, SHIFT(1635), + [3879] = {.count = 1, .reusable = true}, SHIFT(1636), + [3881] = {.count = 1, .reusable = false}, SHIFT(1638), + [3883] = {.count = 1, .reusable = true}, SHIFT(1638), + [3885] = {.count = 1, .reusable = false}, SHIFT(1639), + [3887] = {.count = 1, .reusable = false}, SHIFT(1641), + [3889] = {.count = 1, .reusable = true}, SHIFT(1642), + [3891] = {.count = 1, .reusable = false}, SHIFT(1642), + [3893] = {.count = 1, .reusable = false}, SHIFT(1645), + [3895] = {.count = 1, .reusable = false}, SHIFT(1648), + [3897] = {.count = 1, .reusable = true}, SHIFT(1648), + [3899] = {.count = 1, .reusable = false}, SHIFT(1649), + [3901] = {.count = 1, .reusable = false}, SHIFT(1652), + [3903] = {.count = 1, .reusable = true}, SHIFT(1652), + [3905] = {.count = 1, .reusable = true}, SHIFT(1654), + [3907] = {.count = 1, .reusable = false}, SHIFT(1655), + [3909] = {.count = 1, .reusable = true}, SHIFT(1655), + [3911] = {.count = 1, .reusable = true}, SHIFT(1656), + [3913] = {.count = 1, .reusable = true}, SHIFT(1657), + [3915] = {.count = 1, .reusable = true}, SHIFT(1659), + [3917] = {.count = 1, .reusable = true}, SHIFT(1660), + [3919] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(841), + [3922] = {.count = 1, .reusable = true}, SHIFT(1662), + [3924] = {.count = 1, .reusable = false}, SHIFT(1663), + [3926] = {.count = 1, .reusable = true}, SHIFT(1664), + [3928] = {.count = 1, .reusable = true}, SHIFT(1666), + [3930] = {.count = 1, .reusable = true}, SHIFT(1667), + [3932] = {.count = 1, .reusable = true}, SHIFT(1668), + [3934] = {.count = 1, .reusable = true}, SHIFT(1669), + [3936] = {.count = 1, .reusable = false}, SHIFT(1671), + [3938] = {.count = 1, .reusable = true}, SHIFT(1671), + [3940] = {.count = 1, .reusable = true}, SHIFT(1670), + [3942] = {.count = 1, .reusable = true}, SHIFT(1672), + [3944] = {.count = 1, .reusable = false}, SHIFT(1674), + [3946] = {.count = 1, .reusable = true}, SHIFT(1674), + [3948] = {.count = 1, .reusable = true}, SHIFT(1673), + [3950] = {.count = 1, .reusable = false}, SHIFT(1676), + [3952] = {.count = 1, .reusable = true}, SHIFT(1676), + [3954] = {.count = 1, .reusable = true}, SHIFT(1675), + [3956] = {.count = 1, .reusable = true}, SHIFT(1677), + [3958] = {.count = 1, .reusable = true}, SHIFT(1678), + [3960] = {.count = 1, .reusable = true}, SHIFT(1679), + [3962] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(860), + [3965] = {.count = 1, .reusable = true}, SHIFT(1680), + [3967] = {.count = 1, .reusable = false}, SHIFT(1681), + [3969] = {.count = 1, .reusable = true}, SHIFT(1682), + [3971] = {.count = 1, .reusable = true}, SHIFT(1684), + [3973] = {.count = 1, .reusable = true}, SHIFT(1685), + [3975] = {.count = 1, .reusable = true}, SHIFT(1686), + [3977] = {.count = 1, .reusable = true}, SHIFT(1687), + [3979] = {.count = 1, .reusable = false}, SHIFT(1689), + [3981] = {.count = 1, .reusable = true}, SHIFT(1689), + [3983] = {.count = 1, .reusable = true}, SHIFT(1688), + [3985] = {.count = 1, .reusable = true}, SHIFT(1690), + [3987] = {.count = 1, .reusable = false}, SHIFT(1692), + [3989] = {.count = 1, .reusable = true}, SHIFT(1692), + [3991] = {.count = 1, .reusable = true}, SHIFT(1691), + [3993] = {.count = 1, .reusable = false}, SHIFT(1694), + [3995] = {.count = 1, .reusable = true}, SHIFT(1694), + [3997] = {.count = 1, .reusable = true}, SHIFT(1693), + [3999] = {.count = 1, .reusable = true}, SHIFT(1695), + [4001] = {.count = 1, .reusable = true}, SHIFT(1696), + [4003] = {.count = 1, .reusable = true}, SHIFT(1697), + [4005] = {.count = 1, .reusable = true}, SHIFT(1698), + [4007] = {.count = 1, .reusable = true}, SHIFT(1699), + [4009] = {.count = 1, .reusable = true}, SHIFT(1700), + [4011] = {.count = 1, .reusable = false}, SHIFT(1701), + [4013] = {.count = 1, .reusable = true}, SHIFT(1701), + [4015] = {.count = 1, .reusable = false}, SHIFT(1702), + [4017] = {.count = 1, .reusable = true}, SHIFT(1703), + [4019] = {.count = 1, .reusable = true}, SHIFT(1705), + [4021] = {.count = 1, .reusable = true}, SHIFT(1706), + [4023] = {.count = 1, .reusable = true}, SHIFT(1707), + [4025] = {.count = 1, .reusable = true}, SHIFT(1708), + [4027] = {.count = 1, .reusable = true}, SHIFT(1709), + [4029] = {.count = 1, .reusable = true}, SHIFT(1710), + [4031] = {.count = 1, .reusable = false}, SHIFT(1711), + [4033] = {.count = 1, .reusable = true}, SHIFT(1711), + [4035] = {.count = 1, .reusable = true}, SHIFT(1712), + [4037] = {.count = 1, .reusable = false}, SHIFT(1713), + [4039] = {.count = 1, .reusable = true}, SHIFT(1713), + [4041] = {.count = 1, .reusable = true}, SHIFT(1716), + [4043] = {.count = 1, .reusable = false}, SHIFT(1719), + [4045] = {.count = 1, .reusable = true}, SHIFT(1719), + [4047] = {.count = 1, .reusable = true}, SHIFT(1720), + [4049] = {.count = 1, .reusable = true}, SHIFT(1721), + [4051] = {.count = 1, .reusable = true}, SHIFT(1723), + [4053] = {.count = 1, .reusable = true}, SHIFT(1724), + [4055] = {.count = 1, .reusable = false}, SHIFT(1726), + [4057] = {.count = 1, .reusable = true}, SHIFT(1726), + [4059] = {.count = 1, .reusable = true}, SHIFT(1725), + [4061] = {.count = 1, .reusable = true}, SHIFT(1727), + [4063] = {.count = 1, .reusable = true}, SHIFT(1728), + [4065] = {.count = 1, .reusable = false}, SHIFT(1729), + [4067] = {.count = 1, .reusable = false}, SHIFT(1728), + [4069] = {.count = 1, .reusable = true}, SHIFT(1731), + [4071] = {.count = 1, .reusable = false}, SHIFT(1733), + [4073] = {.count = 1, .reusable = true}, SHIFT(1733), + [4075] = {.count = 1, .reusable = true}, SHIFT(1732), + [4077] = {.count = 1, .reusable = true}, SHIFT(1734), + [4079] = {.count = 1, .reusable = false}, SHIFT(1736), + [4081] = {.count = 1, .reusable = true}, SHIFT(1736), + [4083] = {.count = 1, .reusable = true}, SHIFT(1735), + [4085] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc, 3), + [4087] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc, 3), + [4089] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(952), + [4092] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_repeat1, 2), + [4094] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(954), + [4097] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(955), + [4100] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [4102] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), + [4104] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(965), + [4107] = {.count = 1, .reusable = true}, SHIFT(1737), + [4109] = {.count = 1, .reusable = false}, SHIFT(1738), + [4111] = {.count = 1, .reusable = true}, SHIFT(1739), + [4113] = {.count = 1, .reusable = true}, SHIFT(1741), + [4115] = {.count = 1, .reusable = true}, SHIFT(1742), + [4117] = {.count = 1, .reusable = true}, SHIFT(1743), + [4119] = {.count = 1, .reusable = true}, SHIFT(1744), + [4121] = {.count = 1, .reusable = false}, SHIFT(1746), + [4123] = {.count = 1, .reusable = true}, SHIFT(1746), + [4125] = {.count = 1, .reusable = true}, SHIFT(1745), + [4127] = {.count = 1, .reusable = true}, SHIFT(1747), + [4129] = {.count = 1, .reusable = false}, SHIFT(1749), + [4131] = {.count = 1, .reusable = true}, SHIFT(1749), + [4133] = {.count = 1, .reusable = true}, SHIFT(1748), + [4135] = {.count = 1, .reusable = false}, SHIFT(1751), + [4137] = {.count = 1, .reusable = true}, SHIFT(1751), + [4139] = {.count = 1, .reusable = true}, SHIFT(1750), + [4141] = {.count = 1, .reusable = true}, SHIFT(1752), + [4143] = {.count = 1, .reusable = true}, SHIFT(1753), + [4145] = {.count = 1, .reusable = true}, SHIFT(1754), + [4147] = {.count = 1, .reusable = true}, SHIFT(1755), + [4149] = {.count = 1, .reusable = true}, SHIFT(1756), + [4151] = {.count = 1, .reusable = true}, SHIFT(1757), + [4153] = {.count = 1, .reusable = false}, SHIFT(1758), + [4155] = {.count = 1, .reusable = true}, SHIFT(1758), + [4157] = {.count = 1, .reusable = false}, SHIFT(1759), + [4159] = {.count = 1, .reusable = true}, SHIFT(1760), + [4161] = {.count = 1, .reusable = true}, SHIFT(1762), + [4163] = {.count = 1, .reusable = true}, SHIFT(1763), + [4165] = {.count = 1, .reusable = true}, SHIFT(1764), + [4167] = {.count = 1, .reusable = true}, SHIFT(1765), + [4169] = {.count = 1, .reusable = true}, SHIFT(1766), + [4171] = {.count = 1, .reusable = true}, SHIFT(1767), + [4173] = {.count = 1, .reusable = false}, SHIFT(1768), + [4175] = {.count = 1, .reusable = true}, SHIFT(1768), + [4177] = {.count = 1, .reusable = true}, SHIFT(1769), + [4179] = {.count = 1, .reusable = false}, SHIFT(1770), + [4181] = {.count = 1, .reusable = true}, SHIFT(1770), + [4183] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1004), + [4186] = {.count = 1, .reusable = true}, SHIFT(1771), + [4188] = {.count = 1, .reusable = false}, SHIFT(1772), + [4190] = {.count = 1, .reusable = true}, SHIFT(1773), + [4192] = {.count = 1, .reusable = true}, SHIFT(1775), + [4194] = {.count = 1, .reusable = true}, SHIFT(1776), + [4196] = {.count = 1, .reusable = true}, SHIFT(1777), + [4198] = {.count = 1, .reusable = true}, SHIFT(1778), + [4200] = {.count = 1, .reusable = false}, SHIFT(1780), + [4202] = {.count = 1, .reusable = true}, SHIFT(1780), + [4204] = {.count = 1, .reusable = true}, SHIFT(1779), + [4206] = {.count = 1, .reusable = true}, SHIFT(1781), + [4208] = {.count = 1, .reusable = false}, SHIFT(1783), + [4210] = {.count = 1, .reusable = true}, SHIFT(1783), + [4212] = {.count = 1, .reusable = true}, SHIFT(1782), + [4214] = {.count = 1, .reusable = false}, SHIFT(1785), + [4216] = {.count = 1, .reusable = true}, SHIFT(1785), + [4218] = {.count = 1, .reusable = true}, SHIFT(1784), + [4220] = {.count = 1, .reusable = true}, SHIFT(1786), + [4222] = {.count = 1, .reusable = true}, SHIFT(1787), + [4224] = {.count = 1, .reusable = true}, SHIFT(1788), + [4226] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [4228] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [4230] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), + [4232] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), + [4234] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), + [4236] = {.count = 1, .reusable = true}, SHIFT(1790), + [4238] = {.count = 1, .reusable = true}, SHIFT(1791), + [4240] = {.count = 1, .reusable = true}, SHIFT(1792), + [4242] = {.count = 1, .reusable = true}, SHIFT(1794), + [4244] = {.count = 1, .reusable = false}, SHIFT(1795), + [4246] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), + [4248] = {.count = 1, .reusable = true}, SHIFT(1796), + [4250] = {.count = 1, .reusable = false}, SHIFT(1797), + [4252] = {.count = 1, .reusable = false}, SHIFT(1798), + [4254] = {.count = 1, .reusable = true}, SHIFT(1799), + [4256] = {.count = 1, .reusable = false}, SHIFT(1800), + [4258] = {.count = 1, .reusable = false}, SHIFT(1801), + [4260] = {.count = 1, .reusable = false}, SHIFT(1802), + [4262] = {.count = 1, .reusable = true}, SHIFT(1803), + [4264] = {.count = 1, .reusable = false}, SHIFT(1804), + [4266] = {.count = 1, .reusable = true}, SHIFT(1805), + [4268] = {.count = 1, .reusable = true}, SHIFT(1806), + [4270] = {.count = 1, .reusable = true}, SHIFT(1807), + [4272] = {.count = 1, .reusable = true}, SHIFT(1808), + [4274] = {.count = 1, .reusable = true}, SHIFT(1809), + [4276] = {.count = 1, .reusable = false}, SHIFT(1810), + [4278] = {.count = 1, .reusable = true}, SHIFT(1818), + [4280] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), + [4282] = {.count = 1, .reusable = true}, SHIFT(1821), + [4284] = {.count = 1, .reusable = true}, SHIFT(1825), + [4286] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), + [4288] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), + [4290] = {.count = 1, .reusable = true}, SHIFT(1826), + [4292] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1827), + [4295] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(80), + [4298] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(81), + [4301] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1828), + [4304] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(83), + [4307] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(84), + [4310] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(85), + [4313] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(86), + [4316] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [4318] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [4320] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), + [4322] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), + [4324] = {.count = 1, .reusable = true}, SHIFT(1831), + [4326] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), + [4328] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), + [4330] = {.count = 1, .reusable = true}, SHIFT(1833), + [4332] = {.count = 1, .reusable = true}, SHIFT(1834), + [4334] = {.count = 1, .reusable = true}, SHIFT(1835), + [4336] = {.count = 1, .reusable = true}, SHIFT(1836), + [4338] = {.count = 1, .reusable = false}, SHIFT(1837), + [4340] = {.count = 1, .reusable = true}, SHIFT(1837), + [4342] = {.count = 1, .reusable = true}, SHIFT(1838), + [4344] = {.count = 1, .reusable = false}, SHIFT(1839), + [4346] = {.count = 1, .reusable = true}, SHIFT(1839), + [4348] = {.count = 1, .reusable = true}, SHIFT(1840), + [4350] = {.count = 1, .reusable = false}, SHIFT(1841), + [4352] = {.count = 1, .reusable = true}, SHIFT(1841), + [4354] = {.count = 1, .reusable = true}, SHIFT(1842), + [4356] = {.count = 1, .reusable = true}, SHIFT(1843), + [4358] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 6), + [4360] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 6), + [4362] = {.count = 1, .reusable = true}, SHIFT(1845), + [4364] = {.count = 1, .reusable = true}, SHIFT(1846), + [4366] = {.count = 1, .reusable = true}, SHIFT(1848), + [4368] = {.count = 1, .reusable = true}, SHIFT(1849), + [4370] = {.count = 1, .reusable = true}, SHIFT(1850), + [4372] = {.count = 1, .reusable = true}, SHIFT(1851), + [4374] = {.count = 1, .reusable = false}, SHIFT(1852), + [4376] = {.count = 1, .reusable = true}, SHIFT(1852), + [4378] = {.count = 1, .reusable = true}, SHIFT(1853), + [4380] = {.count = 1, .reusable = false}, SHIFT(1854), + [4382] = {.count = 1, .reusable = true}, SHIFT(1854), + [4384] = {.count = 1, .reusable = true}, SHIFT(1855), + [4386] = {.count = 1, .reusable = false}, SHIFT(1856), + [4388] = {.count = 1, .reusable = true}, SHIFT(1856), + [4390] = {.count = 1, .reusable = true}, SHIFT(1857), + [4392] = {.count = 1, .reusable = true}, SHIFT(1858), + [4394] = {.count = 1, .reusable = true}, SHIFT(1859), + [4396] = {.count = 1, .reusable = true}, SHIFT(1860), + [4398] = {.count = 1, .reusable = true}, SHIFT(1861), + [4400] = {.count = 1, .reusable = true}, SHIFT(1862), + [4402] = {.count = 1, .reusable = false}, SHIFT(1863), + [4404] = {.count = 1, .reusable = true}, SHIFT(1863), + [4406] = {.count = 1, .reusable = true}, SHIFT(1864), + [4408] = {.count = 1, .reusable = false}, SHIFT(1865), + [4410] = {.count = 1, .reusable = true}, SHIFT(1865), + [4412] = {.count = 1, .reusable = true}, SHIFT(1866), + [4414] = {.count = 1, .reusable = false}, SHIFT(1867), + [4416] = {.count = 1, .reusable = true}, SHIFT(1867), + [4418] = {.count = 1, .reusable = true}, SHIFT(1868), + [4420] = {.count = 1, .reusable = true}, SHIFT(1869), + [4422] = {.count = 1, .reusable = true}, SHIFT(1870), + [4424] = {.count = 1, .reusable = true}, SHIFT(1871), + [4426] = {.count = 1, .reusable = true}, SHIFT(1872), + [4428] = {.count = 1, .reusable = true}, SHIFT(1873), + [4430] = {.count = 1, .reusable = false}, SHIFT(1874), + [4432] = {.count = 1, .reusable = true}, SHIFT(1874), + [4434] = {.count = 1, .reusable = true}, SHIFT(1875), + [4436] = {.count = 1, .reusable = false}, SHIFT(1876), + [4438] = {.count = 1, .reusable = true}, SHIFT(1876), + [4440] = {.count = 1, .reusable = true}, SHIFT(1877), + [4442] = {.count = 1, .reusable = false}, SHIFT(1878), + [4444] = {.count = 1, .reusable = true}, SHIFT(1878), + [4446] = {.count = 1, .reusable = true}, SHIFT(1879), + [4448] = {.count = 1, .reusable = true}, SHIFT(1880), + [4450] = {.count = 1, .reusable = true}, SHIFT(1881), + [4452] = {.count = 1, .reusable = true}, SHIFT(1882), + [4454] = {.count = 1, .reusable = true}, SHIFT(1883), + [4456] = {.count = 1, .reusable = true}, SHIFT(1884), + [4458] = {.count = 1, .reusable = false}, SHIFT(1885), + [4460] = {.count = 1, .reusable = true}, SHIFT(1885), + [4462] = {.count = 1, .reusable = true}, SHIFT(1886), + [4464] = {.count = 1, .reusable = false}, SHIFT(1887), + [4466] = {.count = 1, .reusable = true}, SHIFT(1887), + [4468] = {.count = 1, .reusable = true}, SHIFT(1888), + [4470] = {.count = 1, .reusable = false}, SHIFT(1889), + [4472] = {.count = 1, .reusable = true}, SHIFT(1889), + [4474] = {.count = 1, .reusable = true}, SHIFT(1890), + [4476] = {.count = 1, .reusable = true}, SHIFT(1891), + [4478] = {.count = 1, .reusable = true}, SHIFT(1892), + [4480] = {.count = 1, .reusable = true}, SHIFT(1893), + [4482] = {.count = 1, .reusable = true}, SHIFT(1894), + [4484] = {.count = 1, .reusable = true}, SHIFT(1895), + [4486] = {.count = 1, .reusable = false}, SHIFT(1896), + [4488] = {.count = 1, .reusable = true}, SHIFT(1896), + [4490] = {.count = 1, .reusable = true}, SHIFT(1897), + [4492] = {.count = 1, .reusable = false}, SHIFT(1898), + [4494] = {.count = 1, .reusable = true}, SHIFT(1898), + [4496] = {.count = 1, .reusable = true}, SHIFT(1899), + [4498] = {.count = 1, .reusable = false}, SHIFT(1900), + [4500] = {.count = 1, .reusable = true}, SHIFT(1900), + [4502] = {.count = 1, .reusable = true}, SHIFT(1901), + [4504] = {.count = 1, .reusable = true}, SHIFT(1902), + [4506] = {.count = 1, .reusable = true}, SHIFT(1903), + [4508] = {.count = 1, .reusable = true}, SHIFT(1904), + [4510] = {.count = 1, .reusable = true}, SHIFT(1905), + [4512] = {.count = 1, .reusable = true}, SHIFT(1906), + [4514] = {.count = 1, .reusable = false}, SHIFT(1907), + [4516] = {.count = 1, .reusable = true}, SHIFT(1907), + [4518] = {.count = 1, .reusable = true}, SHIFT(1908), + [4520] = {.count = 1, .reusable = false}, SHIFT(1909), + [4522] = {.count = 1, .reusable = true}, SHIFT(1909), + [4524] = {.count = 1, .reusable = true}, SHIFT(1910), + [4526] = {.count = 1, .reusable = false}, SHIFT(1911), + [4528] = {.count = 1, .reusable = true}, SHIFT(1911), + [4530] = {.count = 1, .reusable = true}, SHIFT(1912), + [4532] = {.count = 1, .reusable = true}, SHIFT(1913), + [4534] = {.count = 1, .reusable = true}, SHIFT(1914), + [4536] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [4538] = {.count = 1, .reusable = true}, SHIFT(1915), + [4540] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), + [4542] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1207), + [4545] = {.count = 1, .reusable = true}, SHIFT(1916), + [4547] = {.count = 1, .reusable = false}, SHIFT(1917), + [4549] = {.count = 1, .reusable = true}, SHIFT(1918), + [4551] = {.count = 1, .reusable = true}, SHIFT(1920), + [4553] = {.count = 1, .reusable = true}, SHIFT(1921), + [4555] = {.count = 1, .reusable = true}, SHIFT(1922), + [4557] = {.count = 1, .reusable = true}, SHIFT(1923), + [4559] = {.count = 1, .reusable = false}, SHIFT(1925), + [4561] = {.count = 1, .reusable = true}, SHIFT(1925), + [4563] = {.count = 1, .reusable = true}, SHIFT(1924), + [4565] = {.count = 1, .reusable = true}, SHIFT(1926), + [4567] = {.count = 1, .reusable = false}, SHIFT(1928), + [4569] = {.count = 1, .reusable = true}, SHIFT(1928), + [4571] = {.count = 1, .reusable = true}, SHIFT(1927), + [4573] = {.count = 1, .reusable = false}, SHIFT(1930), + [4575] = {.count = 1, .reusable = true}, SHIFT(1930), + [4577] = {.count = 1, .reusable = true}, SHIFT(1929), + [4579] = {.count = 1, .reusable = true}, SHIFT(1931), + [4581] = {.count = 1, .reusable = true}, SHIFT(1932), + [4583] = {.count = 1, .reusable = true}, SHIFT(1933), + [4585] = {.count = 1, .reusable = true}, SHIFT(1934), + [4587] = {.count = 1, .reusable = true}, SHIFT(1935), + [4589] = {.count = 1, .reusable = true}, SHIFT(1936), + [4591] = {.count = 1, .reusable = false}, SHIFT(1937), + [4593] = {.count = 1, .reusable = true}, SHIFT(1937), + [4595] = {.count = 1, .reusable = false}, SHIFT(1938), + [4597] = {.count = 1, .reusable = true}, SHIFT(1939), + [4599] = {.count = 1, .reusable = true}, SHIFT(1941), + [4601] = {.count = 1, .reusable = true}, SHIFT(1942), + [4603] = {.count = 1, .reusable = true}, SHIFT(1943), + [4605] = {.count = 1, .reusable = true}, SHIFT(1944), + [4607] = {.count = 1, .reusable = true}, SHIFT(1945), + [4609] = {.count = 1, .reusable = true}, SHIFT(1946), + [4611] = {.count = 1, .reusable = false}, SHIFT(1947), + [4613] = {.count = 1, .reusable = true}, SHIFT(1947), + [4615] = {.count = 1, .reusable = true}, SHIFT(1948), + [4617] = {.count = 1, .reusable = false}, SHIFT(1949), + [4619] = {.count = 1, .reusable = true}, SHIFT(1949), + [4621] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [4623] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [4625] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [4627] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [4629] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), + [4631] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), + [4633] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [4635] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [4637] = {.count = 1, .reusable = true}, SHIFT(1950), + [4639] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [4641] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [4643] = {.count = 1, .reusable = true}, SHIFT(1951), + [4645] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [4647] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [4649] = {.count = 1, .reusable = true}, SHIFT(1952), + [4651] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), + [4653] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), + [4655] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [4657] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [4659] = {.count = 1, .reusable = false}, SHIFT(1954), + [4661] = {.count = 1, .reusable = true}, SHIFT(1955), + [4663] = {.count = 1, .reusable = true}, SHIFT(1957), + [4665] = {.count = 1, .reusable = false}, SHIFT(1959), + [4667] = {.count = 1, .reusable = true}, SHIFT(1961), + [4669] = {.count = 1, .reusable = false}, SHIFT(1963), + [4671] = {.count = 1, .reusable = true}, SHIFT(1966), + [4673] = {.count = 1, .reusable = true}, SHIFT(1967), + [4675] = {.count = 1, .reusable = true}, SHIFT(1970), + [4677] = {.count = 1, .reusable = true}, SHIFT(1971), + [4679] = {.count = 1, .reusable = true}, SHIFT(1972), + [4681] = {.count = 1, .reusable = true}, SHIFT(1973), + [4683] = {.count = 1, .reusable = false}, SHIFT(1974), + [4685] = {.count = 1, .reusable = true}, SHIFT(1974), + [4687] = {.count = 1, .reusable = false}, SHIFT(1975), + [4689] = {.count = 1, .reusable = true}, SHIFT(1976), + [4691] = {.count = 1, .reusable = true}, SHIFT(1978), + [4693] = {.count = 1, .reusable = true}, SHIFT(1979), + [4695] = {.count = 1, .reusable = true}, SHIFT(1980), + [4697] = {.count = 1, .reusable = true}, SHIFT(1981), + [4699] = {.count = 1, .reusable = true}, SHIFT(1982), + [4701] = {.count = 1, .reusable = true}, SHIFT(1983), + [4703] = {.count = 1, .reusable = false}, SHIFT(1984), + [4705] = {.count = 1, .reusable = true}, SHIFT(1984), + [4707] = {.count = 1, .reusable = true}, SHIFT(1985), + [4709] = {.count = 1, .reusable = false}, SHIFT(1986), + [4711] = {.count = 1, .reusable = true}, SHIFT(1986), + [4713] = {.count = 1, .reusable = true}, SHIFT(1987), + [4715] = {.count = 1, .reusable = true}, SHIFT(1988), + [4717] = {.count = 1, .reusable = true}, SHIFT(1989), + [4719] = {.count = 1, .reusable = false}, SHIFT(1990), + [4721] = {.count = 1, .reusable = true}, SHIFT(1990), + [4723] = {.count = 1, .reusable = false}, SHIFT(1991), + [4725] = {.count = 1, .reusable = true}, SHIFT(1992), + [4727] = {.count = 1, .reusable = true}, SHIFT(1994), + [4729] = {.count = 1, .reusable = true}, SHIFT(1995), + [4731] = {.count = 1, .reusable = true}, SHIFT(1996), + [4733] = {.count = 1, .reusable = true}, SHIFT(1997), + [4735] = {.count = 1, .reusable = true}, SHIFT(1998), + [4737] = {.count = 1, .reusable = true}, SHIFT(1999), + [4739] = {.count = 1, .reusable = false}, SHIFT(2000), + [4741] = {.count = 1, .reusable = true}, SHIFT(2000), + [4743] = {.count = 1, .reusable = true}, SHIFT(2001), + [4745] = {.count = 1, .reusable = false}, SHIFT(2002), + [4747] = {.count = 1, .reusable = true}, SHIFT(2002), + [4749] = {.count = 1, .reusable = true}, SHIFT(2003), + [4751] = {.count = 1, .reusable = true}, SHIFT(2004), + [4753] = {.count = 1, .reusable = true}, SHIFT(2005), + [4755] = {.count = 1, .reusable = true}, SHIFT(2006), + [4757] = {.count = 1, .reusable = false}, SHIFT(2007), + [4759] = {.count = 1, .reusable = true}, SHIFT(2007), + [4761] = {.count = 1, .reusable = true}, SHIFT(2008), + [4763] = {.count = 1, .reusable = false}, SHIFT(2009), + [4765] = {.count = 1, .reusable = true}, SHIFT(2009), + [4767] = {.count = 1, .reusable = true}, SHIFT(2010), + [4769] = {.count = 1, .reusable = false}, SHIFT(2011), + [4771] = {.count = 1, .reusable = true}, SHIFT(2011), + [4773] = {.count = 1, .reusable = true}, SHIFT(2012), + [4775] = {.count = 1, .reusable = true}, SHIFT(2013), + [4777] = {.count = 1, .reusable = true}, SHIFT(2014), + [4779] = {.count = 1, .reusable = true}, SHIFT(2015), + [4781] = {.count = 1, .reusable = true}, SHIFT(2017), + [4783] = {.count = 1, .reusable = false}, SHIFT(2018), + [4785] = {.count = 1, .reusable = true}, SHIFT(2019), + [4787] = {.count = 1, .reusable = true}, SHIFT(2021), + [4789] = {.count = 1, .reusable = true}, SHIFT(2022), + [4791] = {.count = 1, .reusable = true}, SHIFT(2023), + [4793] = {.count = 1, .reusable = true}, SHIFT(2024), + [4795] = {.count = 1, .reusable = false}, SHIFT(2026), + [4797] = {.count = 1, .reusable = true}, SHIFT(2026), + [4799] = {.count = 1, .reusable = true}, SHIFT(2025), + [4801] = {.count = 1, .reusable = true}, SHIFT(2027), + [4803] = {.count = 1, .reusable = false}, SHIFT(2029), + [4805] = {.count = 1, .reusable = true}, SHIFT(2029), + [4807] = {.count = 1, .reusable = true}, SHIFT(2028), + [4809] = {.count = 1, .reusable = false}, SHIFT(2031), + [4811] = {.count = 1, .reusable = true}, SHIFT(2031), + [4813] = {.count = 1, .reusable = true}, SHIFT(2030), + [4815] = {.count = 1, .reusable = true}, SHIFT(2032), + [4817] = {.count = 1, .reusable = true}, SHIFT(2033), + [4819] = {.count = 1, .reusable = true}, SHIFT(2034), + [4821] = {.count = 1, .reusable = true}, SHIFT(2035), + [4823] = {.count = 1, .reusable = true}, SHIFT(2036), + [4825] = {.count = 1, .reusable = true}, SHIFT(2037), + [4827] = {.count = 1, .reusable = false}, SHIFT(2038), + [4829] = {.count = 1, .reusable = true}, SHIFT(2038), + [4831] = {.count = 1, .reusable = false}, SHIFT(2039), + [4833] = {.count = 1, .reusable = true}, SHIFT(2040), + [4835] = {.count = 1, .reusable = true}, SHIFT(2042), + [4837] = {.count = 1, .reusable = true}, SHIFT(2043), + [4839] = {.count = 1, .reusable = true}, SHIFT(2044), + [4841] = {.count = 1, .reusable = true}, SHIFT(2045), + [4843] = {.count = 1, .reusable = true}, SHIFT(2046), + [4845] = {.count = 1, .reusable = true}, SHIFT(2047), + [4847] = {.count = 1, .reusable = false}, SHIFT(2048), + [4849] = {.count = 1, .reusable = true}, SHIFT(2048), + [4851] = {.count = 1, .reusable = true}, SHIFT(2049), + [4853] = {.count = 1, .reusable = false}, SHIFT(2050), + [4855] = {.count = 1, .reusable = true}, SHIFT(2050), + [4857] = {.count = 1, .reusable = true}, SHIFT(2051), + [4859] = {.count = 1, .reusable = true}, SHIFT(2052), + [4861] = {.count = 1, .reusable = true}, SHIFT(2053), + [4863] = {.count = 1, .reusable = true}, SHIFT(2054), + [4865] = {.count = 1, .reusable = false}, SHIFT(2055), + [4867] = {.count = 1, .reusable = true}, SHIFT(2055), + [4869] = {.count = 1, .reusable = true}, SHIFT(2056), + [4871] = {.count = 1, .reusable = false}, SHIFT(2057), + [4873] = {.count = 1, .reusable = true}, SHIFT(2057), + [4875] = {.count = 1, .reusable = true}, SHIFT(2058), + [4877] = {.count = 1, .reusable = false}, SHIFT(2059), + [4879] = {.count = 1, .reusable = true}, SHIFT(2059), + [4881] = {.count = 1, .reusable = true}, SHIFT(2060), + [4883] = {.count = 1, .reusable = true}, SHIFT(2061), + [4885] = {.count = 1, .reusable = true}, SHIFT(2062), + [4887] = {.count = 1, .reusable = true}, SHIFT(2063), + [4889] = {.count = 1, .reusable = true}, SHIFT(2064), + [4891] = {.count = 1, .reusable = false}, SHIFT(2065), + [4893] = {.count = 1, .reusable = true}, SHIFT(2065), + [4895] = {.count = 1, .reusable = false}, SHIFT(2066), + [4897] = {.count = 1, .reusable = true}, SHIFT(2067), + [4899] = {.count = 1, .reusable = true}, SHIFT(2069), + [4901] = {.count = 1, .reusable = true}, SHIFT(2070), + [4903] = {.count = 1, .reusable = true}, SHIFT(2071), + [4905] = {.count = 1, .reusable = true}, SHIFT(2072), + [4907] = {.count = 1, .reusable = true}, SHIFT(2073), + [4909] = {.count = 1, .reusable = true}, SHIFT(2074), + [4911] = {.count = 1, .reusable = false}, SHIFT(2075), + [4913] = {.count = 1, .reusable = true}, SHIFT(2075), + [4915] = {.count = 1, .reusable = true}, SHIFT(2076), + [4917] = {.count = 1, .reusable = false}, SHIFT(2077), + [4919] = {.count = 1, .reusable = true}, SHIFT(2077), + [4921] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), + [4923] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), + [4925] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), + [4927] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 3), + [4929] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), + [4931] = {.count = 1, .reusable = true}, SHIFT(2078), + [4933] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), + [4935] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [4937] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [4939] = {.count = 1, .reusable = true}, SHIFT(2081), + [4941] = {.count = 1, .reusable = true}, SHIFT(2084), + [4943] = {.count = 1, .reusable = false}, SHIFT(2085), + [4945] = {.count = 1, .reusable = false}, SHIFT(2086), + [4947] = {.count = 1, .reusable = false}, SHIFT(2087), + [4949] = {.count = 1, .reusable = false}, SHIFT(2088), + [4951] = {.count = 1, .reusable = false}, SHIFT(2089), + [4953] = {.count = 1, .reusable = false}, SHIFT(2090), + [4955] = {.count = 1, .reusable = false}, SHIFT(2091), + [4957] = {.count = 1, .reusable = false}, SHIFT(2092), + [4959] = {.count = 1, .reusable = false}, SHIFT(2093), + [4961] = {.count = 1, .reusable = false}, SHIFT(2096), + [4963] = {.count = 1, .reusable = false}, SHIFT(2097), + [4965] = {.count = 1, .reusable = false}, SHIFT(2098), + [4967] = {.count = 1, .reusable = false}, SHIFT(2099), + [4969] = {.count = 1, .reusable = false}, SHIFT(2100), + [4971] = {.count = 1, .reusable = false}, SHIFT(2101), + [4973] = {.count = 1, .reusable = false}, SHIFT(2102), + [4975] = {.count = 1, .reusable = false}, SHIFT(2103), + [4977] = {.count = 1, .reusable = false}, SHIFT(2104), + [4979] = {.count = 1, .reusable = true}, SHIFT(2106), + [4981] = {.count = 1, .reusable = false}, SHIFT(2108), + [4983] = {.count = 1, .reusable = true}, SHIFT(2110), + [4985] = {.count = 1, .reusable = true}, SHIFT(2111), + [4987] = {.count = 1, .reusable = false}, SHIFT(2112), + [4989] = {.count = 1, .reusable = false}, SHIFT(2110), + [4991] = {.count = 1, .reusable = true}, SHIFT(2113), + [4993] = {.count = 1, .reusable = true}, SHIFT(2114), + [4995] = {.count = 1, .reusable = true}, SHIFT(2115), + [4997] = {.count = 1, .reusable = false}, SHIFT(2116), + [4999] = {.count = 1, .reusable = false}, SHIFT(2114), + [5001] = {.count = 1, .reusable = false}, SHIFT(2124), + [5003] = {.count = 1, .reusable = false}, SHIFT(2125), + [5005] = {.count = 1, .reusable = false}, SHIFT(2126), + [5007] = {.count = 1, .reusable = false}, SHIFT(2127), + [5009] = {.count = 1, .reusable = false}, SHIFT(2128), + [5011] = {.count = 1, .reusable = true}, SHIFT(2128), + [5013] = {.count = 1, .reusable = true}, SHIFT(2129), + [5015] = {.count = 1, .reusable = false}, SHIFT(2130), + [5017] = {.count = 1, .reusable = false}, SHIFT(2131), + [5019] = {.count = 1, .reusable = false}, SHIFT(2132), + [5021] = {.count = 1, .reusable = false}, SHIFT(2133), + [5023] = {.count = 1, .reusable = false}, SHIFT(1803), + [5025] = {.count = 1, .reusable = false}, SHIFT(2134), + [5027] = {.count = 1, .reusable = false}, SHIFT(1806), + [5029] = {.count = 1, .reusable = false}, SHIFT(1807), + [5031] = {.count = 1, .reusable = false}, SHIFT(1808), + [5033] = {.count = 1, .reusable = false}, SHIFT(1809), + [5035] = {.count = 1, .reusable = true}, SHIFT(2138), + [5037] = {.count = 1, .reusable = true}, SHIFT(1802), + [5039] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1445), + [5042] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), + [5044] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), + [5046] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), + [5048] = {.count = 1, .reusable = false}, SHIFT(2144), + [5050] = {.count = 1, .reusable = true}, SHIFT(2145), + [5052] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), + [5054] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), + [5056] = {.count = 1, .reusable = true}, SHIFT(2149), + [5058] = {.count = 1, .reusable = true}, SHIFT(2151), + [5060] = {.count = 1, .reusable = true}, SHIFT(2153), + [5062] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [5064] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [5066] = {.count = 1, .reusable = true}, SHIFT(2154), + [5068] = {.count = 1, .reusable = true}, SHIFT(2155), + [5070] = {.count = 1, .reusable = true}, SHIFT(2156), + [5072] = {.count = 1, .reusable = true}, SHIFT(2157), + [5074] = {.count = 1, .reusable = true}, SHIFT(2159), + [5076] = {.count = 1, .reusable = true}, SHIFT(2160), + [5078] = {.count = 1, .reusable = true}, SHIFT(2161), + [5080] = {.count = 1, .reusable = true}, SHIFT(2162), + [5082] = {.count = 1, .reusable = true}, SHIFT(2163), + [5084] = {.count = 1, .reusable = true}, SHIFT(2164), + [5086] = {.count = 1, .reusable = true}, SHIFT(2165), + [5088] = {.count = 1, .reusable = true}, SHIFT(2166), + [5090] = {.count = 1, .reusable = true}, SHIFT(2167), + [5092] = {.count = 1, .reusable = true}, SHIFT(2168), + [5094] = {.count = 1, .reusable = true}, SHIFT(2169), + [5096] = {.count = 1, .reusable = true}, SHIFT(2170), + [5098] = {.count = 1, .reusable = true}, SHIFT(2171), + [5100] = {.count = 1, .reusable = true}, SHIFT(2172), + [5102] = {.count = 1, .reusable = true}, SHIFT(2173), + [5104] = {.count = 1, .reusable = true}, SHIFT(2174), + [5106] = {.count = 1, .reusable = true}, SHIFT(2175), + [5108] = {.count = 1, .reusable = true}, SHIFT(2176), + [5110] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [5112] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), + [5114] = {.count = 1, .reusable = true}, SHIFT(2177), + [5116] = {.count = 1, .reusable = true}, SHIFT(2178), + [5118] = {.count = 1, .reusable = true}, SHIFT(2179), + [5120] = {.count = 1, .reusable = false}, SHIFT(2180), + [5122] = {.count = 1, .reusable = true}, SHIFT(2180), + [5124] = {.count = 1, .reusable = false}, SHIFT(2181), + [5126] = {.count = 1, .reusable = true}, SHIFT(2182), + [5128] = {.count = 1, .reusable = true}, SHIFT(2184), + [5130] = {.count = 1, .reusable = true}, SHIFT(2185), + [5132] = {.count = 1, .reusable = true}, SHIFT(2186), + [5134] = {.count = 1, .reusable = true}, SHIFT(2187), + [5136] = {.count = 1, .reusable = true}, SHIFT(2188), + [5138] = {.count = 1, .reusable = true}, SHIFT(2189), + [5140] = {.count = 1, .reusable = false}, SHIFT(2190), + [5142] = {.count = 1, .reusable = true}, SHIFT(2190), + [5144] = {.count = 1, .reusable = true}, SHIFT(2191), + [5146] = {.count = 1, .reusable = false}, SHIFT(2192), + [5148] = {.count = 1, .reusable = true}, SHIFT(2192), + [5150] = {.count = 1, .reusable = true}, SHIFT(2193), + [5152] = {.count = 1, .reusable = true}, SHIFT(2194), + [5154] = {.count = 1, .reusable = true}, SHIFT(2195), + [5156] = {.count = 1, .reusable = true}, SHIFT(2196), + [5158] = {.count = 1, .reusable = false}, SHIFT(2197), + [5160] = {.count = 1, .reusable = true}, SHIFT(2197), + [5162] = {.count = 1, .reusable = true}, SHIFT(2198), + [5164] = {.count = 1, .reusable = false}, SHIFT(2199), + [5166] = {.count = 1, .reusable = true}, SHIFT(2199), + [5168] = {.count = 1, .reusable = true}, SHIFT(2200), + [5170] = {.count = 1, .reusable = false}, SHIFT(2201), + [5172] = {.count = 1, .reusable = true}, SHIFT(2201), + [5174] = {.count = 1, .reusable = true}, SHIFT(2202), + [5176] = {.count = 1, .reusable = true}, SHIFT(2203), + [5178] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [5180] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [5182] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [5184] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [5186] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [5188] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [5190] = {.count = 1, .reusable = true}, SHIFT(2204), + [5192] = {.count = 1, .reusable = true}, SHIFT(2205), + [5194] = {.count = 1, .reusable = true}, SHIFT(2207), + [5196] = {.count = 1, .reusable = true}, SHIFT(2210), + [5198] = {.count = 1, .reusable = true}, SHIFT(2211), + [5200] = {.count = 1, .reusable = true}, SHIFT(2212), + [5202] = {.count = 1, .reusable = true}, SHIFT(2213), + [5204] = {.count = 1, .reusable = false}, SHIFT(2214), + [5206] = {.count = 1, .reusable = true}, SHIFT(2214), + [5208] = {.count = 1, .reusable = true}, SHIFT(2215), + [5210] = {.count = 1, .reusable = false}, SHIFT(2216), + [5212] = {.count = 1, .reusable = true}, SHIFT(2216), + [5214] = {.count = 1, .reusable = true}, SHIFT(2217), + [5216] = {.count = 1, .reusable = false}, SHIFT(2218), + [5218] = {.count = 1, .reusable = true}, SHIFT(2218), + [5220] = {.count = 1, .reusable = true}, SHIFT(2219), + [5222] = {.count = 1, .reusable = true}, SHIFT(2220), + [5224] = {.count = 1, .reusable = true}, SHIFT(2221), + [5226] = {.count = 1, .reusable = true}, SHIFT(2222), + [5228] = {.count = 1, .reusable = true}, SHIFT(2223), + [5230] = {.count = 1, .reusable = true}, SHIFT(2224), + [5232] = {.count = 1, .reusable = false}, SHIFT(2225), + [5234] = {.count = 1, .reusable = true}, SHIFT(2225), + [5236] = {.count = 1, .reusable = true}, SHIFT(2226), + [5238] = {.count = 1, .reusable = false}, SHIFT(2227), + [5240] = {.count = 1, .reusable = true}, SHIFT(2227), + [5242] = {.count = 1, .reusable = true}, SHIFT(2228), + [5244] = {.count = 1, .reusable = false}, SHIFT(2229), + [5246] = {.count = 1, .reusable = true}, SHIFT(2229), + [5248] = {.count = 1, .reusable = true}, SHIFT(2230), + [5250] = {.count = 1, .reusable = true}, SHIFT(2231), + [5252] = {.count = 1, .reusable = true}, SHIFT(2232), + [5254] = {.count = 1, .reusable = true}, SHIFT(2233), + [5256] = {.count = 1, .reusable = true}, SHIFT(2234), + [5258] = {.count = 1, .reusable = true}, SHIFT(2236), + [5260] = {.count = 1, .reusable = true}, SHIFT(2237), + [5262] = {.count = 1, .reusable = true}, SHIFT(2238), + [5264] = {.count = 1, .reusable = false}, SHIFT(2239), + [5266] = {.count = 1, .reusable = true}, SHIFT(2239), + [5268] = {.count = 1, .reusable = false}, SHIFT(2240), + [5270] = {.count = 1, .reusable = true}, SHIFT(2241), + [5272] = {.count = 1, .reusable = true}, SHIFT(2243), + [5274] = {.count = 1, .reusable = true}, SHIFT(2244), + [5276] = {.count = 1, .reusable = true}, SHIFT(2245), + [5278] = {.count = 1, .reusable = true}, SHIFT(2246), + [5280] = {.count = 1, .reusable = true}, SHIFT(2247), + [5282] = {.count = 1, .reusable = true}, SHIFT(2248), + [5284] = {.count = 1, .reusable = false}, SHIFT(2249), + [5286] = {.count = 1, .reusable = true}, SHIFT(2249), + [5288] = {.count = 1, .reusable = true}, SHIFT(2250), + [5290] = {.count = 1, .reusable = false}, SHIFT(2251), + [5292] = {.count = 1, .reusable = true}, SHIFT(2251), + [5294] = {.count = 1, .reusable = true}, SHIFT(2252), + [5296] = {.count = 1, .reusable = true}, SHIFT(2253), + [5298] = {.count = 1, .reusable = true}, SHIFT(2254), + [5300] = {.count = 1, .reusable = true}, SHIFT(2255), + [5302] = {.count = 1, .reusable = false}, SHIFT(2256), + [5304] = {.count = 1, .reusable = true}, SHIFT(2256), + [5306] = {.count = 1, .reusable = true}, SHIFT(2257), + [5308] = {.count = 1, .reusable = false}, SHIFT(2258), + [5310] = {.count = 1, .reusable = true}, SHIFT(2258), + [5312] = {.count = 1, .reusable = true}, SHIFT(2259), + [5314] = {.count = 1, .reusable = false}, SHIFT(2260), + [5316] = {.count = 1, .reusable = true}, SHIFT(2260), + [5318] = {.count = 1, .reusable = true}, SHIFT(2261), + [5320] = {.count = 1, .reusable = true}, SHIFT(2262), + [5322] = {.count = 1, .reusable = true}, SHIFT(2263), + [5324] = {.count = 1, .reusable = true}, SHIFT(2264), + [5326] = {.count = 1, .reusable = true}, SHIFT(2265), + [5328] = {.count = 1, .reusable = true}, SHIFT(2266), + [5330] = {.count = 1, .reusable = true}, SHIFT(2267), + [5332] = {.count = 1, .reusable = true}, SHIFT(2268), + [5334] = {.count = 1, .reusable = true}, SHIFT(2269), + [5336] = {.count = 1, .reusable = false}, SHIFT(2270), + [5338] = {.count = 1, .reusable = true}, SHIFT(2270), + [5340] = {.count = 1, .reusable = true}, SHIFT(2271), + [5342] = {.count = 1, .reusable = false}, SHIFT(2272), + [5344] = {.count = 1, .reusable = true}, SHIFT(2272), + [5346] = {.count = 1, .reusable = true}, SHIFT(2273), + [5348] = {.count = 1, .reusable = false}, SHIFT(2274), + [5350] = {.count = 1, .reusable = true}, SHIFT(2274), + [5352] = {.count = 1, .reusable = true}, SHIFT(2275), + [5354] = {.count = 1, .reusable = true}, SHIFT(2276), + [5356] = {.count = 1, .reusable = true}, SHIFT(2277), + [5358] = {.count = 1, .reusable = true}, SHIFT(2278), + [5360] = {.count = 1, .reusable = true}, SHIFT(2279), + [5362] = {.count = 1, .reusable = true}, SHIFT(2280), + [5364] = {.count = 1, .reusable = false}, SHIFT(2281), + [5366] = {.count = 1, .reusable = true}, SHIFT(2282), + [5368] = {.count = 1, .reusable = true}, SHIFT(2283), + [5370] = {.count = 1, .reusable = true}, SHIFT(2284), + [5372] = {.count = 1, .reusable = true}, SHIFT(2285), + [5374] = {.count = 1, .reusable = true}, SHIFT(2286), + [5376] = {.count = 1, .reusable = true}, SHIFT(2288), + [5378] = {.count = 1, .reusable = true}, SHIFT(2290), + [5380] = {.count = 1, .reusable = true}, SHIFT(2291), + [5382] = {.count = 1, .reusable = true}, SHIFT(2293), + [5384] = {.count = 1, .reusable = false}, SHIFT(2295), + [5386] = {.count = 1, .reusable = true}, SHIFT(2086), + [5388] = {.count = 1, .reusable = true}, SHIFT(2297), + [5390] = {.count = 1, .reusable = true}, SHIFT(2298), + [5392] = {.count = 1, .reusable = false}, SHIFT(2299), + [5394] = {.count = 1, .reusable = false}, SHIFT(2297), + [5396] = {.count = 1, .reusable = true}, SHIFT(2300), + [5398] = {.count = 1, .reusable = true}, SHIFT(2301), + [5400] = {.count = 1, .reusable = true}, SHIFT(2302), + [5402] = {.count = 1, .reusable = false}, SHIFT(2303), + [5404] = {.count = 1, .reusable = false}, SHIFT(2301), + [5406] = {.count = 1, .reusable = true}, SHIFT(2312), + [5408] = {.count = 1, .reusable = false}, SHIFT(2314), + [5410] = {.count = 1, .reusable = true}, SHIFT(2097), + [5412] = {.count = 1, .reusable = true}, SHIFT(2316), + [5414] = {.count = 1, .reusable = true}, SHIFT(2317), + [5416] = {.count = 1, .reusable = false}, SHIFT(2318), + [5418] = {.count = 1, .reusable = false}, SHIFT(2316), + [5420] = {.count = 1, .reusable = true}, SHIFT(2319), + [5422] = {.count = 1, .reusable = true}, SHIFT(2320), + [5424] = {.count = 1, .reusable = true}, SHIFT(2321), + [5426] = {.count = 1, .reusable = false}, SHIFT(2322), + [5428] = {.count = 1, .reusable = false}, SHIFT(2320), + [5430] = {.count = 1, .reusable = true}, SHIFT(2331), + [5432] = {.count = 1, .reusable = false}, SHIFT(2333), + [5434] = {.count = 1, .reusable = true}, SHIFT(2334), + [5436] = {.count = 1, .reusable = true}, SHIFT(2335), + [5438] = {.count = 1, .reusable = false}, SHIFT(2337), + [5440] = {.count = 1, .reusable = true}, SHIFT(2337), + [5442] = {.count = 1, .reusable = true}, SHIFT(2336), + [5444] = {.count = 1, .reusable = true}, SHIFT(2338), + [5446] = {.count = 1, .reusable = true}, SHIFT(2339), + [5448] = {.count = 1, .reusable = false}, SHIFT(2340), + [5450] = {.count = 1, .reusable = false}, SHIFT(2339), + [5452] = {.count = 1, .reusable = true}, SHIFT(2342), + [5454] = {.count = 1, .reusable = false}, SHIFT(2344), + [5456] = {.count = 1, .reusable = true}, SHIFT(2344), + [5458] = {.count = 1, .reusable = true}, SHIFT(2343), + [5460] = {.count = 1, .reusable = true}, SHIFT(2345), + [5462] = {.count = 1, .reusable = false}, SHIFT(2347), + [5464] = {.count = 1, .reusable = true}, SHIFT(2347), + [5466] = {.count = 1, .reusable = true}, SHIFT(2346), + [5468] = {.count = 1, .reusable = true}, SHIFT(2348), + [5470] = {.count = 1, .reusable = true}, SHIFT(2349), + [5472] = {.count = 1, .reusable = true}, SHIFT(2350), + [5474] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), + [5476] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [5478] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [5480] = {.count = 1, .reusable = false}, SHIFT(2354), + [5482] = {.count = 1, .reusable = true}, SHIFT(2354), + [5484] = {.count = 1, .reusable = false}, SHIFT(2355), + [5486] = {.count = 1, .reusable = false}, SHIFT(2356), + [5488] = {.count = 1, .reusable = false}, SHIFT(2357), + [5490] = {.count = 1, .reusable = true}, SHIFT(2358), + [5492] = {.count = 1, .reusable = true}, SHIFT(2359), + [5494] = {.count = 1, .reusable = false}, SHIFT(2360), + [5496] = {.count = 1, .reusable = true}, SHIFT(2361), + [5498] = {.count = 1, .reusable = true}, SHIFT(2362), + [5500] = {.count = 1, .reusable = true}, SHIFT(2363), + [5502] = {.count = 1, .reusable = true}, SHIFT(2364), + [5504] = {.count = 1, .reusable = true}, SHIFT(2365), + [5506] = {.count = 1, .reusable = true}, SHIFT(2366), + [5508] = {.count = 1, .reusable = true}, SHIFT(2367), + [5510] = {.count = 1, .reusable = false}, SHIFT(2371), + [5512] = {.count = 1, .reusable = true}, SHIFT(2375), + [5514] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), + [5516] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), + [5518] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), + [5520] = {.count = 1, .reusable = false}, SHIFT(2378), + [5522] = {.count = 1, .reusable = true}, SHIFT(2379), + [5524] = {.count = 1, .reusable = true}, SHIFT(2382), + [5526] = {.count = 1, .reusable = true}, SHIFT(2386), + [5528] = {.count = 1, .reusable = true}, SHIFT(2387), + [5530] = {.count = 1, .reusable = true}, SHIFT(2391), + [5532] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), + [5534] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), + [5536] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), + [5538] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), + [5540] = {.count = 1, .reusable = true}, SHIFT(2392), + [5542] = {.count = 1, .reusable = true}, SHIFT(2393), + [5544] = {.count = 1, .reusable = true}, SHIFT(2394), + [5546] = {.count = 1, .reusable = true}, SHIFT(2395), + [5548] = {.count = 1, .reusable = false}, SHIFT(2396), + [5550] = {.count = 1, .reusable = true}, SHIFT(2396), + [5552] = {.count = 1, .reusable = true}, SHIFT(2397), + [5554] = {.count = 1, .reusable = false}, SHIFT(2398), + [5556] = {.count = 1, .reusable = true}, SHIFT(2398), + [5558] = {.count = 1, .reusable = true}, SHIFT(2399), + [5560] = {.count = 1, .reusable = false}, SHIFT(2400), + [5562] = {.count = 1, .reusable = true}, SHIFT(2400), + [5564] = {.count = 1, .reusable = true}, SHIFT(2401), + [5566] = {.count = 1, .reusable = true}, SHIFT(2402), + [5568] = {.count = 1, .reusable = true}, SHIFT(2403), + [5570] = {.count = 1, .reusable = true}, SHIFT(2404), + [5572] = {.count = 1, .reusable = true}, SHIFT(2405), + [5574] = {.count = 1, .reusable = true}, SHIFT(2406), + [5576] = {.count = 1, .reusable = true}, SHIFT(2407), + [5578] = {.count = 1, .reusable = true}, SHIFT(2408), + [5580] = {.count = 1, .reusable = true}, SHIFT(2409), + [5582] = {.count = 1, .reusable = true}, SHIFT(2410), + [5584] = {.count = 1, .reusable = true}, SHIFT(2411), + [5586] = {.count = 1, .reusable = true}, SHIFT(2412), + [5588] = {.count = 1, .reusable = true}, SHIFT(2413), + [5590] = {.count = 1, .reusable = true}, SHIFT(2414), + [5592] = {.count = 1, .reusable = true}, SHIFT(2415), + [5594] = {.count = 1, .reusable = true}, SHIFT(2416), + [5596] = {.count = 1, .reusable = true}, SHIFT(2417), + [5598] = {.count = 1, .reusable = false}, SHIFT(2418), + [5600] = {.count = 1, .reusable = true}, SHIFT(2418), + [5602] = {.count = 1, .reusable = true}, SHIFT(2419), + [5604] = {.count = 1, .reusable = false}, SHIFT(2420), + [5606] = {.count = 1, .reusable = true}, SHIFT(2420), + [5608] = {.count = 1, .reusable = true}, SHIFT(2421), + [5610] = {.count = 1, .reusable = false}, SHIFT(2422), + [5612] = {.count = 1, .reusable = true}, SHIFT(2422), + [5614] = {.count = 1, .reusable = true}, SHIFT(2423), + [5616] = {.count = 1, .reusable = true}, SHIFT(2424), + [5618] = {.count = 1, .reusable = true}, SHIFT(2425), + [5620] = {.count = 1, .reusable = true}, SHIFT(2426), + [5622] = {.count = 1, .reusable = true}, SHIFT(2427), + [5624] = {.count = 1, .reusable = true}, SHIFT(2428), + [5626] = {.count = 1, .reusable = true}, SHIFT(2429), + [5628] = {.count = 1, .reusable = true}, SHIFT(2430), + [5630] = {.count = 1, .reusable = true}, SHIFT(2431), + [5632] = {.count = 1, .reusable = true}, SHIFT(2433), + [5634] = {.count = 1, .reusable = false}, SHIFT(2435), + [5636] = {.count = 1, .reusable = true}, SHIFT(2437), + [5638] = {.count = 1, .reusable = true}, SHIFT(2438), + [5640] = {.count = 1, .reusable = false}, SHIFT(2439), + [5642] = {.count = 1, .reusable = false}, SHIFT(2437), + [5644] = {.count = 1, .reusable = true}, SHIFT(2440), + [5646] = {.count = 1, .reusable = true}, SHIFT(2441), + [5648] = {.count = 1, .reusable = true}, SHIFT(2442), + [5650] = {.count = 1, .reusable = false}, SHIFT(2443), + [5652] = {.count = 1, .reusable = false}, SHIFT(2441), + [5654] = {.count = 1, .reusable = true}, SHIFT(2452), + [5656] = {.count = 1, .reusable = true}, SHIFT(2453), + [5658] = {.count = 1, .reusable = false}, SHIFT(2454), + [5660] = {.count = 1, .reusable = true}, SHIFT(2456), + [5662] = {.count = 1, .reusable = true}, SHIFT(2457), + [5664] = {.count = 1, .reusable = true}, SHIFT(2458), + [5666] = {.count = 1, .reusable = true}, SHIFT(2459), + [5668] = {.count = 1, .reusable = true}, SHIFT(2089), + [5670] = {.count = 1, .reusable = true}, SHIFT(2090), + [5672] = {.count = 1, .reusable = true}, SHIFT(2091), + [5674] = {.count = 1, .reusable = true}, SHIFT(2092), + [5676] = {.count = 1, .reusable = true}, SHIFT(2460), + [5678] = {.count = 1, .reusable = false}, SHIFT(2462), + [5680] = {.count = 1, .reusable = true}, SHIFT(2463), + [5682] = {.count = 1, .reusable = true}, SHIFT(2464), + [5684] = {.count = 1, .reusable = false}, SHIFT(2466), + [5686] = {.count = 1, .reusable = true}, SHIFT(2466), + [5688] = {.count = 1, .reusable = true}, SHIFT(2465), + [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 = false}, SHIFT(2468), + [5698] = {.count = 1, .reusable = true}, SHIFT(2471), + [5700] = {.count = 1, .reusable = false}, SHIFT(2473), + [5702] = {.count = 1, .reusable = true}, SHIFT(2473), + [5704] = {.count = 1, .reusable = true}, SHIFT(2472), + [5706] = {.count = 1, .reusable = true}, SHIFT(2474), + [5708] = {.count = 1, .reusable = false}, SHIFT(2476), + [5710] = {.count = 1, .reusable = true}, SHIFT(2476), + [5712] = {.count = 1, .reusable = true}, SHIFT(2475), + [5714] = {.count = 1, .reusable = true}, SHIFT(2477), + [5716] = {.count = 1, .reusable = true}, SHIFT(2478), + [5718] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2084), + [5721] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2085), + [5724] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2086), + [5727] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2087), + [5730] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2088), + [5733] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2089), + [5736] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2090), + [5739] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2091), + [5742] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2092), + [5745] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2093), + [5748] = {.count = 1, .reusable = true}, SHIFT(2479), + [5750] = {.count = 1, .reusable = true}, SHIFT(2100), + [5752] = {.count = 1, .reusable = true}, SHIFT(2101), + [5754] = {.count = 1, .reusable = true}, SHIFT(2102), + [5756] = {.count = 1, .reusable = true}, SHIFT(2103), + [5758] = {.count = 1, .reusable = false}, SHIFT(2481), + [5760] = {.count = 1, .reusable = true}, SHIFT(2482), + [5762] = {.count = 1, .reusable = true}, SHIFT(2483), + [5764] = {.count = 1, .reusable = false}, SHIFT(2485), + [5766] = {.count = 1, .reusable = true}, SHIFT(2485), + [5768] = {.count = 1, .reusable = true}, SHIFT(2484), + [5770] = {.count = 1, .reusable = true}, SHIFT(2486), + [5772] = {.count = 1, .reusable = true}, SHIFT(2487), + [5774] = {.count = 1, .reusable = false}, SHIFT(2488), + [5776] = {.count = 1, .reusable = false}, SHIFT(2487), + [5778] = {.count = 1, .reusable = true}, SHIFT(2490), + [5780] = {.count = 1, .reusable = false}, SHIFT(2492), + [5782] = {.count = 1, .reusable = true}, SHIFT(2492), + [5784] = {.count = 1, .reusable = true}, SHIFT(2491), + [5786] = {.count = 1, .reusable = true}, SHIFT(2493), + [5788] = {.count = 1, .reusable = false}, SHIFT(2495), + [5790] = {.count = 1, .reusable = true}, SHIFT(2495), + [5792] = {.count = 1, .reusable = true}, SHIFT(2494), + [5794] = {.count = 1, .reusable = true}, SHIFT(2496), + [5796] = {.count = 1, .reusable = true}, SHIFT(2497), + [5798] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2096), + [5801] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2097), + [5804] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2098), + [5807] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2099), + [5810] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2100), + [5813] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2101), + [5816] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2102), + [5819] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2103), + [5822] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2104), + [5825] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2106), + [5828] = {.count = 1, .reusable = true}, SHIFT(2498), + [5830] = {.count = 1, .reusable = false}, SHIFT(2499), + [5832] = {.count = 1, .reusable = true}, SHIFT(2500), + [5834] = {.count = 1, .reusable = true}, SHIFT(2502), + [5836] = {.count = 1, .reusable = true}, SHIFT(2503), + [5838] = {.count = 1, .reusable = true}, SHIFT(2504), + [5840] = {.count = 1, .reusable = true}, SHIFT(2505), + [5842] = {.count = 1, .reusable = false}, SHIFT(2507), + [5844] = {.count = 1, .reusable = true}, SHIFT(2507), + [5846] = {.count = 1, .reusable = true}, SHIFT(2506), + [5848] = {.count = 1, .reusable = true}, SHIFT(2508), + [5850] = {.count = 1, .reusable = false}, SHIFT(2510), + [5852] = {.count = 1, .reusable = true}, SHIFT(2510), + [5854] = {.count = 1, .reusable = true}, SHIFT(2509), + [5856] = {.count = 1, .reusable = false}, SHIFT(2512), + [5858] = {.count = 1, .reusable = true}, SHIFT(2512), + [5860] = {.count = 1, .reusable = true}, SHIFT(2511), + [5862] = {.count = 1, .reusable = true}, SHIFT(2513), + [5864] = {.count = 1, .reusable = true}, SHIFT(2514), + [5866] = {.count = 1, .reusable = true}, SHIFT(2515), + [5868] = {.count = 1, .reusable = true}, SHIFT(2517), + [5870] = {.count = 1, .reusable = true}, SHIFT(2518), + [5872] = {.count = 1, .reusable = true}, SHIFT(2519), + [5874] = {.count = 1, .reusable = false}, SHIFT(2521), + [5876] = {.count = 1, .reusable = true}, SHIFT(2523), + [5878] = {.count = 1, .reusable = true}, SHIFT(2524), + [5880] = {.count = 1, .reusable = false}, SHIFT(2525), + [5882] = {.count = 1, .reusable = false}, SHIFT(2523), + [5884] = {.count = 1, .reusable = true}, SHIFT(2526), + [5886] = {.count = 1, .reusable = true}, SHIFT(2527), + [5888] = {.count = 1, .reusable = true}, SHIFT(2528), + [5890] = {.count = 1, .reusable = false}, SHIFT(2529), + [5892] = {.count = 1, .reusable = false}, SHIFT(2527), + [5894] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2129), + [5897] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2131), + [5900] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2132), + [5903] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2130), + [5906] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2133), + [5909] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1803), + [5912] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1804), + [5915] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2134), + [5918] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1806), + [5921] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1807), + [5924] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1808), + [5927] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1809), + [5930] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), + [5932] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [5934] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [5936] = {.count = 1, .reusable = false}, SHIFT(2538), + [5938] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), + [5940] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), + [5942] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), + [5944] = {.count = 1, .reusable = false}, SHIFT(2539), + [5946] = {.count = 1, .reusable = false}, SHIFT(2540), + [5948] = {.count = 1, .reusable = true}, SHIFT(2541), + [5950] = {.count = 1, .reusable = false}, SHIFT(2546), + [5952] = {.count = 1, .reusable = true}, SHIFT(2547), + [5954] = {.count = 1, .reusable = true}, SHIFT(2551), + [5956] = {.count = 1, .reusable = true}, SHIFT(2552), + [5958] = {.count = 1, .reusable = true}, SHIFT(2553), + [5960] = {.count = 1, .reusable = true}, SHIFT(2554), + [5962] = {.count = 1, .reusable = true}, SHIFT(2555), + [5964] = {.count = 1, .reusable = true}, SHIFT(2556), + [5966] = {.count = 1, .reusable = true}, SHIFT(2557), + [5968] = {.count = 1, .reusable = true}, SHIFT(2558), + [5970] = {.count = 1, .reusable = false}, SHIFT(2560), + [5972] = {.count = 1, .reusable = true}, SHIFT(2561), + [5974] = {.count = 1, .reusable = true}, SHIFT(2562), + [5976] = {.count = 1, .reusable = false}, SHIFT(2564), + [5978] = {.count = 1, .reusable = true}, SHIFT(2564), + [5980] = {.count = 1, .reusable = true}, SHIFT(2563), + [5982] = {.count = 1, .reusable = true}, SHIFT(2565), + [5984] = {.count = 1, .reusable = true}, SHIFT(2566), + [5986] = {.count = 1, .reusable = false}, SHIFT(2567), + [5988] = {.count = 1, .reusable = false}, SHIFT(2566), + [5990] = {.count = 1, .reusable = true}, SHIFT(2569), + [5992] = {.count = 1, .reusable = false}, SHIFT(2571), + [5994] = {.count = 1, .reusable = true}, SHIFT(2571), + [5996] = {.count = 1, .reusable = true}, SHIFT(2570), + [5998] = {.count = 1, .reusable = true}, SHIFT(2572), + [6000] = {.count = 1, .reusable = false}, SHIFT(2574), + [6002] = {.count = 1, .reusable = true}, SHIFT(2574), + [6004] = {.count = 1, .reusable = true}, SHIFT(2573), + [6006] = {.count = 1, .reusable = true}, SHIFT(2575), + [6008] = {.count = 1, .reusable = true}, SHIFT(2576), + [6010] = {.count = 1, .reusable = false}, SHIFT(2578), + [6012] = {.count = 1, .reusable = true}, SHIFT(2578), + [6014] = {.count = 1, .reusable = true}, SHIFT(2579), + [6016] = {.count = 1, .reusable = true}, SHIFT(2580), + [6018] = {.count = 1, .reusable = false}, SHIFT(2581), + [6020] = {.count = 1, .reusable = true}, SHIFT(2582), + [6022] = {.count = 1, .reusable = true}, SHIFT(2583), + [6024] = {.count = 1, .reusable = true}, SHIFT(2584), + [6026] = {.count = 1, .reusable = true}, SHIFT(2585), + [6028] = {.count = 1, .reusable = true}, SHIFT(2586), + [6030] = {.count = 1, .reusable = true}, SHIFT(2587), + [6032] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2293), + [6035] = {.count = 1, .reusable = true}, SHIFT(2589), + [6037] = {.count = 1, .reusable = false}, SHIFT(2590), + [6039] = {.count = 1, .reusable = true}, SHIFT(2591), + [6041] = {.count = 1, .reusable = true}, SHIFT(2593), + [6043] = {.count = 1, .reusable = true}, SHIFT(2594), + [6045] = {.count = 1, .reusable = true}, SHIFT(2595), + [6047] = {.count = 1, .reusable = true}, SHIFT(2596), + [6049] = {.count = 1, .reusable = false}, SHIFT(2598), + [6051] = {.count = 1, .reusable = true}, SHIFT(2598), + [6053] = {.count = 1, .reusable = true}, SHIFT(2597), + [6055] = {.count = 1, .reusable = true}, SHIFT(2599), + [6057] = {.count = 1, .reusable = false}, SHIFT(2601), + [6059] = {.count = 1, .reusable = true}, SHIFT(2601), + [6061] = {.count = 1, .reusable = true}, SHIFT(2600), + [6063] = {.count = 1, .reusable = false}, SHIFT(2603), + [6065] = {.count = 1, .reusable = true}, SHIFT(2603), + [6067] = {.count = 1, .reusable = true}, SHIFT(2602), + [6069] = {.count = 1, .reusable = true}, SHIFT(2604), + [6071] = {.count = 1, .reusable = true}, SHIFT(2605), + [6073] = {.count = 1, .reusable = true}, SHIFT(2606), + [6075] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2312), + [6078] = {.count = 1, .reusable = true}, SHIFT(2607), + [6080] = {.count = 1, .reusable = false}, SHIFT(2608), + [6082] = {.count = 1, .reusable = true}, SHIFT(2609), + [6084] = {.count = 1, .reusable = true}, SHIFT(2611), + [6086] = {.count = 1, .reusable = true}, SHIFT(2612), + [6088] = {.count = 1, .reusable = true}, SHIFT(2613), + [6090] = {.count = 1, .reusable = true}, SHIFT(2614), + [6092] = {.count = 1, .reusable = false}, SHIFT(2616), + [6094] = {.count = 1, .reusable = true}, SHIFT(2616), + [6096] = {.count = 1, .reusable = true}, SHIFT(2615), + [6098] = {.count = 1, .reusable = true}, SHIFT(2617), + [6100] = {.count = 1, .reusable = false}, SHIFT(2619), + [6102] = {.count = 1, .reusable = true}, SHIFT(2619), + [6104] = {.count = 1, .reusable = true}, SHIFT(2618), + [6106] = {.count = 1, .reusable = false}, SHIFT(2621), + [6108] = {.count = 1, .reusable = true}, SHIFT(2621), + [6110] = {.count = 1, .reusable = true}, SHIFT(2620), + [6112] = {.count = 1, .reusable = true}, SHIFT(2622), + [6114] = {.count = 1, .reusable = true}, SHIFT(2623), + [6116] = {.count = 1, .reusable = true}, SHIFT(2624), + [6118] = {.count = 1, .reusable = true}, SHIFT(2625), + [6120] = {.count = 1, .reusable = true}, SHIFT(2626), + [6122] = {.count = 1, .reusable = true}, SHIFT(2627), + [6124] = {.count = 1, .reusable = false}, SHIFT(2628), + [6126] = {.count = 1, .reusable = true}, SHIFT(2628), + [6128] = {.count = 1, .reusable = false}, SHIFT(2629), + [6130] = {.count = 1, .reusable = true}, SHIFT(2630), + [6132] = {.count = 1, .reusable = true}, SHIFT(2632), + [6134] = {.count = 1, .reusable = true}, SHIFT(2633), + [6136] = {.count = 1, .reusable = true}, SHIFT(2634), + [6138] = {.count = 1, .reusable = true}, SHIFT(2635), + [6140] = {.count = 1, .reusable = true}, SHIFT(2636), + [6142] = {.count = 1, .reusable = true}, SHIFT(2637), + [6144] = {.count = 1, .reusable = false}, SHIFT(2638), + [6146] = {.count = 1, .reusable = true}, SHIFT(2638), + [6148] = {.count = 1, .reusable = true}, SHIFT(2639), + [6150] = {.count = 1, .reusable = false}, SHIFT(2640), + [6152] = {.count = 1, .reusable = true}, SHIFT(2640), + [6154] = {.count = 1, .reusable = true}, SHIFT(2641), + [6156] = {.count = 1, .reusable = false}, SHIFT(2643), + [6158] = {.count = 1, .reusable = true}, SHIFT(2644), + [6160] = {.count = 1, .reusable = true}, SHIFT(2645), + [6162] = {.count = 1, .reusable = false}, SHIFT(2647), + [6164] = {.count = 1, .reusable = true}, SHIFT(2647), + [6166] = {.count = 1, .reusable = true}, SHIFT(2646), + [6168] = {.count = 1, .reusable = true}, SHIFT(2648), + [6170] = {.count = 1, .reusable = true}, SHIFT(2649), + [6172] = {.count = 1, .reusable = false}, SHIFT(2650), + [6174] = {.count = 1, .reusable = false}, SHIFT(2649), + [6176] = {.count = 1, .reusable = true}, SHIFT(2652), + [6178] = {.count = 1, .reusable = false}, SHIFT(2654), + [6180] = {.count = 1, .reusable = true}, SHIFT(2654), + [6182] = {.count = 1, .reusable = true}, SHIFT(2653), + [6184] = {.count = 1, .reusable = true}, SHIFT(2655), + [6186] = {.count = 1, .reusable = false}, SHIFT(2657), + [6188] = {.count = 1, .reusable = true}, SHIFT(2657), + [6190] = {.count = 1, .reusable = true}, SHIFT(2656), + [6192] = {.count = 1, .reusable = true}, SHIFT(2658), + [6194] = {.count = 1, .reusable = true}, SHIFT(2659), + [6196] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6, .alias_sequence_id = 1), + [6198] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [6200] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [6202] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6), + [6204] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6), + [6206] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6), + [6208] = {.count = 1, .reusable = false}, SHIFT(2660), + [6210] = {.count = 1, .reusable = true}, SHIFT(2661), + [6212] = {.count = 1, .reusable = false}, SHIFT(2664), + [6214] = {.count = 1, .reusable = true}, SHIFT(2665), + [6216] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2433), + [6219] = {.count = 1, .reusable = true}, SHIFT(2668), + [6221] = {.count = 1, .reusable = false}, SHIFT(2669), + [6223] = {.count = 1, .reusable = true}, SHIFT(2670), + [6225] = {.count = 1, .reusable = true}, SHIFT(2672), + [6227] = {.count = 1, .reusable = true}, SHIFT(2673), + [6229] = {.count = 1, .reusable = true}, SHIFT(2674), + [6231] = {.count = 1, .reusable = true}, SHIFT(2675), + [6233] = {.count = 1, .reusable = false}, SHIFT(2677), + [6235] = {.count = 1, .reusable = true}, SHIFT(2677), + [6237] = {.count = 1, .reusable = true}, SHIFT(2676), + [6239] = {.count = 1, .reusable = true}, SHIFT(2678), + [6241] = {.count = 1, .reusable = false}, SHIFT(2680), + [6243] = {.count = 1, .reusable = true}, SHIFT(2680), + [6245] = {.count = 1, .reusable = true}, SHIFT(2679), + [6247] = {.count = 1, .reusable = false}, SHIFT(2682), + [6249] = {.count = 1, .reusable = true}, SHIFT(2682), + [6251] = {.count = 1, .reusable = true}, SHIFT(2681), + [6253] = {.count = 1, .reusable = true}, SHIFT(2683), + [6255] = {.count = 1, .reusable = true}, SHIFT(2684), + [6257] = {.count = 1, .reusable = true}, SHIFT(2685), + [6259] = {.count = 1, .reusable = true}, SHIFT(2686), + [6261] = {.count = 1, .reusable = true}, SHIFT(2687), + [6263] = {.count = 1, .reusable = true}, SHIFT(2688), + [6265] = {.count = 1, .reusable = false}, SHIFT(2690), + [6267] = {.count = 1, .reusable = true}, SHIFT(2692), + [6269] = {.count = 1, .reusable = true}, SHIFT(2693), + [6271] = {.count = 1, .reusable = false}, SHIFT(2694), + [6273] = {.count = 1, .reusable = false}, SHIFT(2692), + [6275] = {.count = 1, .reusable = true}, SHIFT(2695), + [6277] = {.count = 1, .reusable = true}, SHIFT(2696), + [6279] = {.count = 1, .reusable = true}, SHIFT(2697), + [6281] = {.count = 1, .reusable = false}, SHIFT(2698), + [6283] = {.count = 1, .reusable = false}, SHIFT(2696), + [6285] = {.count = 1, .reusable = true}, SHIFT(2706), + [6287] = {.count = 1, .reusable = true}, SHIFT(2707), + [6289] = {.count = 1, .reusable = true}, SHIFT(2708), + [6291] = {.count = 1, .reusable = true}, SHIFT(2709), + [6293] = {.count = 1, .reusable = false}, SHIFT(2710), + [6295] = {.count = 1, .reusable = true}, SHIFT(2710), + [6297] = {.count = 1, .reusable = false}, SHIFT(2711), + [6299] = {.count = 1, .reusable = true}, SHIFT(2712), + [6301] = {.count = 1, .reusable = true}, SHIFT(2714), + [6303] = {.count = 1, .reusable = true}, SHIFT(2715), + [6305] = {.count = 1, .reusable = true}, SHIFT(2716), + [6307] = {.count = 1, .reusable = true}, SHIFT(2717), + [6309] = {.count = 1, .reusable = true}, SHIFT(2718), + [6311] = {.count = 1, .reusable = true}, SHIFT(2719), + [6313] = {.count = 1, .reusable = false}, SHIFT(2720), + [6315] = {.count = 1, .reusable = true}, SHIFT(2720), + [6317] = {.count = 1, .reusable = true}, SHIFT(2721), + [6319] = {.count = 1, .reusable = false}, SHIFT(2722), + [6321] = {.count = 1, .reusable = true}, SHIFT(2722), + [6323] = {.count = 1, .reusable = true}, SHIFT(2723), + [6325] = {.count = 1, .reusable = true}, SHIFT(2724), + [6327] = {.count = 1, .reusable = true}, SHIFT(2725), + [6329] = {.count = 1, .reusable = false}, SHIFT(2726), + [6331] = {.count = 1, .reusable = true}, SHIFT(2726), + [6333] = {.count = 1, .reusable = false}, SHIFT(2727), + [6335] = {.count = 1, .reusable = true}, SHIFT(2728), + [6337] = {.count = 1, .reusable = true}, SHIFT(2730), + [6339] = {.count = 1, .reusable = true}, SHIFT(2731), + [6341] = {.count = 1, .reusable = true}, SHIFT(2732), + [6343] = {.count = 1, .reusable = true}, SHIFT(2733), + [6345] = {.count = 1, .reusable = true}, SHIFT(2734), + [6347] = {.count = 1, .reusable = true}, SHIFT(2735), + [6349] = {.count = 1, .reusable = false}, SHIFT(2736), + [6351] = {.count = 1, .reusable = true}, SHIFT(2736), + [6353] = {.count = 1, .reusable = true}, SHIFT(2737), + [6355] = {.count = 1, .reusable = false}, SHIFT(2738), + [6357] = {.count = 1, .reusable = true}, SHIFT(2738), + [6359] = {.count = 1, .reusable = true}, SHIFT(2739), + [6361] = {.count = 1, .reusable = true}, SHIFT(2740), + [6363] = {.count = 1, .reusable = true}, SHIFT(2741), + [6365] = {.count = 1, .reusable = true}, SHIFT(2742), + [6367] = {.count = 1, .reusable = false}, SHIFT(2743), + [6369] = {.count = 1, .reusable = true}, SHIFT(2743), + [6371] = {.count = 1, .reusable = true}, SHIFT(2744), + [6373] = {.count = 1, .reusable = false}, SHIFT(2745), + [6375] = {.count = 1, .reusable = true}, SHIFT(2745), + [6377] = {.count = 1, .reusable = true}, SHIFT(2746), + [6379] = {.count = 1, .reusable = false}, SHIFT(2747), + [6381] = {.count = 1, .reusable = true}, SHIFT(2747), + [6383] = {.count = 1, .reusable = true}, SHIFT(2748), + [6385] = {.count = 1, .reusable = true}, SHIFT(2749), + [6387] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2519), + [6390] = {.count = 1, .reusable = true}, SHIFT(2750), + [6392] = {.count = 1, .reusable = false}, SHIFT(2751), + [6394] = {.count = 1, .reusable = true}, SHIFT(2752), + [6396] = {.count = 1, .reusable = true}, SHIFT(2754), + [6398] = {.count = 1, .reusable = true}, SHIFT(2755), + [6400] = {.count = 1, .reusable = true}, SHIFT(2756), + [6402] = {.count = 1, .reusable = true}, SHIFT(2757), + [6404] = {.count = 1, .reusable = false}, SHIFT(2759), + [6406] = {.count = 1, .reusable = true}, SHIFT(2759), + [6408] = {.count = 1, .reusable = true}, SHIFT(2758), + [6410] = {.count = 1, .reusable = true}, SHIFT(2760), + [6412] = {.count = 1, .reusable = false}, SHIFT(2762), + [6414] = {.count = 1, .reusable = true}, SHIFT(2762), + [6416] = {.count = 1, .reusable = true}, SHIFT(2761), + [6418] = {.count = 1, .reusable = false}, SHIFT(2764), + [6420] = {.count = 1, .reusable = true}, SHIFT(2764), + [6422] = {.count = 1, .reusable = true}, SHIFT(2763), + [6424] = {.count = 1, .reusable = true}, SHIFT(2765), + [6426] = {.count = 1, .reusable = true}, SHIFT(2766), + [6428] = {.count = 1, .reusable = true}, SHIFT(2767), + [6430] = {.count = 1, .reusable = false}, SHIFT(2768), + [6432] = {.count = 1, .reusable = false}, SHIFT(2769), + [6434] = {.count = 1, .reusable = true}, SHIFT(2770), + [6436] = {.count = 1, .reusable = true}, SHIFT(2771), + [6438] = {.count = 1, .reusable = true}, SHIFT(2772), + [6440] = {.count = 1, .reusable = false}, SHIFT(2773), + [6442] = {.count = 1, .reusable = true}, SHIFT(2773), + [6444] = {.count = 1, .reusable = false}, SHIFT(2774), + [6446] = {.count = 1, .reusable = true}, SHIFT(2775), + [6448] = {.count = 1, .reusable = true}, SHIFT(2777), + [6450] = {.count = 1, .reusable = true}, SHIFT(2778), + [6452] = {.count = 1, .reusable = true}, SHIFT(2779), + [6454] = {.count = 1, .reusable = true}, SHIFT(2780), + [6456] = {.count = 1, .reusable = true}, SHIFT(2781), + [6458] = {.count = 1, .reusable = true}, SHIFT(2782), + [6460] = {.count = 1, .reusable = false}, SHIFT(2783), + [6462] = {.count = 1, .reusable = true}, SHIFT(2783), + [6464] = {.count = 1, .reusable = true}, SHIFT(2784), + [6466] = {.count = 1, .reusable = false}, SHIFT(2785), + [6468] = {.count = 1, .reusable = true}, SHIFT(2785), + [6470] = {.count = 1, .reusable = true}, SHIFT(2786), + [6472] = {.count = 1, .reusable = false}, SHIFT(2788), + [6474] = {.count = 1, .reusable = true}, SHIFT(2789), + [6476] = {.count = 1, .reusable = true}, SHIFT(2790), + [6478] = {.count = 1, .reusable = false}, SHIFT(2792), + [6480] = {.count = 1, .reusable = true}, SHIFT(2792), + [6482] = {.count = 1, .reusable = true}, SHIFT(2791), + [6484] = {.count = 1, .reusable = true}, SHIFT(2793), + [6486] = {.count = 1, .reusable = true}, SHIFT(2794), + [6488] = {.count = 1, .reusable = false}, SHIFT(2795), + [6490] = {.count = 1, .reusable = false}, SHIFT(2794), + [6492] = {.count = 1, .reusable = true}, SHIFT(2797), + [6494] = {.count = 1, .reusable = false}, SHIFT(2799), + [6496] = {.count = 1, .reusable = true}, SHIFT(2799), + [6498] = {.count = 1, .reusable = true}, SHIFT(2798), + [6500] = {.count = 1, .reusable = true}, SHIFT(2800), + [6502] = {.count = 1, .reusable = false}, SHIFT(2802), + [6504] = {.count = 1, .reusable = true}, SHIFT(2802), + [6506] = {.count = 1, .reusable = true}, SHIFT(2801), + [6508] = {.count = 1, .reusable = true}, SHIFT(2803), + [6510] = {.count = 1, .reusable = true}, SHIFT(2804), + [6512] = {.count = 1, .reusable = true}, SHIFT(2805), + [6514] = {.count = 1, .reusable = true}, SHIFT(2806), + [6516] = {.count = 1, .reusable = true}, SHIFT(2807), + [6518] = {.count = 1, .reusable = true}, SHIFT(2808), + [6520] = {.count = 1, .reusable = false}, SHIFT(2809), + [6522] = {.count = 1, .reusable = true}, SHIFT(2809), + [6524] = {.count = 1, .reusable = true}, SHIFT(2810), + [6526] = {.count = 1, .reusable = false}, SHIFT(2811), + [6528] = {.count = 1, .reusable = true}, SHIFT(2811), + [6530] = {.count = 1, .reusable = true}, SHIFT(2812), + [6532] = {.count = 1, .reusable = false}, SHIFT(2813), + [6534] = {.count = 1, .reusable = true}, SHIFT(2813), + [6536] = {.count = 1, .reusable = true}, SHIFT(2814), + [6538] = {.count = 1, .reusable = true}, SHIFT(2815), + [6540] = {.count = 1, .reusable = true}, SHIFT(2816), + [6542] = {.count = 1, .reusable = true}, SHIFT(2817), + [6544] = {.count = 1, .reusable = true}, SHIFT(2818), + [6546] = {.count = 1, .reusable = true}, SHIFT(2819), + [6548] = {.count = 1, .reusable = false}, SHIFT(2820), + [6550] = {.count = 1, .reusable = true}, SHIFT(2820), + [6552] = {.count = 1, .reusable = true}, SHIFT(2821), + [6554] = {.count = 1, .reusable = false}, SHIFT(2822), + [6556] = {.count = 1, .reusable = true}, SHIFT(2822), + [6558] = {.count = 1, .reusable = true}, SHIFT(2823), + [6560] = {.count = 1, .reusable = false}, SHIFT(2824), + [6562] = {.count = 1, .reusable = true}, SHIFT(2824), + [6564] = {.count = 1, .reusable = true}, SHIFT(2825), + [6566] = {.count = 1, .reusable = true}, SHIFT(2826), + [6568] = {.count = 1, .reusable = true}, SHIFT(2827), + [6570] = {.count = 1, .reusable = true}, SHIFT(2828), + [6572] = {.count = 1, .reusable = true}, SHIFT(2829), + [6574] = {.count = 1, .reusable = true}, SHIFT(2830), + [6576] = {.count = 1, .reusable = true}, SHIFT(2831), + [6578] = {.count = 1, .reusable = true}, SHIFT(2832), + [6580] = {.count = 1, .reusable = false}, SHIFT(2833), + [6582] = {.count = 1, .reusable = true}, SHIFT(2833), + [6584] = {.count = 1, .reusable = false}, SHIFT(2834), + [6586] = {.count = 1, .reusable = true}, SHIFT(2835), + [6588] = {.count = 1, .reusable = true}, SHIFT(2837), + [6590] = {.count = 1, .reusable = true}, SHIFT(2838), + [6592] = {.count = 1, .reusable = true}, SHIFT(2839), + [6594] = {.count = 1, .reusable = true}, SHIFT(2840), + [6596] = {.count = 1, .reusable = true}, SHIFT(2841), + [6598] = {.count = 1, .reusable = true}, SHIFT(2842), + [6600] = {.count = 1, .reusable = false}, SHIFT(2843), + [6602] = {.count = 1, .reusable = true}, SHIFT(2843), + [6604] = {.count = 1, .reusable = true}, SHIFT(2844), + [6606] = {.count = 1, .reusable = false}, SHIFT(2845), + [6608] = {.count = 1, .reusable = true}, SHIFT(2845), + [6610] = {.count = 1, .reusable = true}, SHIFT(2846), + [6612] = {.count = 1, .reusable = true}, SHIFT(2847), + [6614] = {.count = 1, .reusable = true}, SHIFT(2848), + [6616] = {.count = 1, .reusable = true}, SHIFT(2849), + [6618] = {.count = 1, .reusable = false}, SHIFT(2850), + [6620] = {.count = 1, .reusable = true}, SHIFT(2850), + [6622] = {.count = 1, .reusable = true}, SHIFT(2851), + [6624] = {.count = 1, .reusable = false}, SHIFT(2852), + [6626] = {.count = 1, .reusable = true}, SHIFT(2852), + [6628] = {.count = 1, .reusable = true}, SHIFT(2853), + [6630] = {.count = 1, .reusable = false}, SHIFT(2854), + [6632] = {.count = 1, .reusable = true}, SHIFT(2854), + [6634] = {.count = 1, .reusable = true}, SHIFT(2855), + [6636] = {.count = 1, .reusable = true}, SHIFT(2856), + [6638] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2688), + [6641] = {.count = 1, .reusable = true}, SHIFT(2857), + [6643] = {.count = 1, .reusable = false}, SHIFT(2858), + [6645] = {.count = 1, .reusable = true}, SHIFT(2859), + [6647] = {.count = 1, .reusable = true}, SHIFT(2861), + [6649] = {.count = 1, .reusable = true}, SHIFT(2862), + [6651] = {.count = 1, .reusable = true}, SHIFT(2863), + [6653] = {.count = 1, .reusable = true}, SHIFT(2864), + [6655] = {.count = 1, .reusable = false}, SHIFT(2866), + [6657] = {.count = 1, .reusable = true}, SHIFT(2866), + [6659] = {.count = 1, .reusable = true}, SHIFT(2865), + [6661] = {.count = 1, .reusable = true}, SHIFT(2867), + [6663] = {.count = 1, .reusable = false}, SHIFT(2869), + [6665] = {.count = 1, .reusable = true}, SHIFT(2869), + [6667] = {.count = 1, .reusable = true}, SHIFT(2868), + [6669] = {.count = 1, .reusable = false}, SHIFT(2871), + [6671] = {.count = 1, .reusable = true}, SHIFT(2871), + [6673] = {.count = 1, .reusable = true}, SHIFT(2870), + [6675] = {.count = 1, .reusable = true}, SHIFT(2872), + [6677] = {.count = 1, .reusable = true}, SHIFT(2873), + [6679] = {.count = 1, .reusable = true}, SHIFT(2874), + [6681] = {.count = 1, .reusable = true}, SHIFT(2875), + [6683] = {.count = 1, .reusable = true}, SHIFT(2876), + [6685] = {.count = 1, .reusable = true}, SHIFT(2877), + [6687] = {.count = 1, .reusable = true}, SHIFT(2878), + [6689] = {.count = 1, .reusable = true}, SHIFT(2879), + [6691] = {.count = 1, .reusable = true}, SHIFT(2880), + [6693] = {.count = 1, .reusable = true}, SHIFT(2881), + [6695] = {.count = 1, .reusable = true}, SHIFT(2882), + [6697] = {.count = 1, .reusable = true}, SHIFT(2883), + [6699] = {.count = 1, .reusable = true}, SHIFT(2884), + [6701] = {.count = 1, .reusable = false}, SHIFT(2885), + [6703] = {.count = 1, .reusable = true}, SHIFT(2885), + [6705] = {.count = 1, .reusable = true}, SHIFT(2886), + [6707] = {.count = 1, .reusable = false}, SHIFT(2887), + [6709] = {.count = 1, .reusable = true}, SHIFT(2887), + [6711] = {.count = 1, .reusable = true}, SHIFT(2888), + [6713] = {.count = 1, .reusable = false}, SHIFT(2889), + [6715] = {.count = 1, .reusable = true}, SHIFT(2889), + [6717] = {.count = 1, .reusable = true}, SHIFT(2890), + [6719] = {.count = 1, .reusable = true}, SHIFT(2891), + [6721] = {.count = 1, .reusable = true}, SHIFT(2892), + [6723] = {.count = 1, .reusable = true}, SHIFT(2893), + [6725] = {.count = 1, .reusable = true}, SHIFT(2894), + [6727] = {.count = 1, .reusable = true}, SHIFT(2895), + [6729] = {.count = 1, .reusable = true}, SHIFT(2896), + [6731] = {.count = 1, .reusable = true}, SHIFT(2897), + [6733] = {.count = 1, .reusable = false}, SHIFT(2898), + [6735] = {.count = 1, .reusable = true}, SHIFT(2898), + [6737] = {.count = 1, .reusable = false}, SHIFT(2899), + [6739] = {.count = 1, .reusable = true}, SHIFT(2900), + [6741] = {.count = 1, .reusable = true}, SHIFT(2902), + [6743] = {.count = 1, .reusable = true}, SHIFT(2903), + [6745] = {.count = 1, .reusable = true}, SHIFT(2904), + [6747] = {.count = 1, .reusable = true}, SHIFT(2905), + [6749] = {.count = 1, .reusable = true}, SHIFT(2906), + [6751] = {.count = 1, .reusable = true}, SHIFT(2907), + [6753] = {.count = 1, .reusable = false}, SHIFT(2908), + [6755] = {.count = 1, .reusable = true}, SHIFT(2908), + [6757] = {.count = 1, .reusable = true}, SHIFT(2909), + [6759] = {.count = 1, .reusable = false}, SHIFT(2910), + [6761] = {.count = 1, .reusable = true}, SHIFT(2910), + [6763] = {.count = 1, .reusable = true}, SHIFT(2911), + [6765] = {.count = 1, .reusable = true}, SHIFT(2912), + [6767] = {.count = 1, .reusable = true}, SHIFT(2913), + [6769] = {.count = 1, .reusable = true}, SHIFT(2914), + [6771] = {.count = 1, .reusable = true}, SHIFT(2915), + [6773] = {.count = 1, .reusable = true}, SHIFT(2916), + [6775] = {.count = 1, .reusable = true}, SHIFT(2917), + [6777] = {.count = 1, .reusable = false}, SHIFT(2918), + [6779] = {.count = 1, .reusable = true}, SHIFT(2918), + [6781] = {.count = 1, .reusable = true}, SHIFT(2919), + [6783] = {.count = 1, .reusable = false}, SHIFT(2920), + [6785] = {.count = 1, .reusable = true}, SHIFT(2920), + [6787] = {.count = 1, .reusable = true}, SHIFT(2921), + [6789] = {.count = 1, .reusable = false}, SHIFT(2922), + [6791] = {.count = 1, .reusable = true}, SHIFT(2922), + [6793] = {.count = 1, .reusable = true}, SHIFT(2923), + [6795] = {.count = 1, .reusable = true}, SHIFT(2924), + [6797] = {.count = 1, .reusable = true}, SHIFT(2925), + [6799] = {.count = 1, .reusable = true}, SHIFT(2926), + [6801] = {.count = 1, .reusable = true}, SHIFT(2927), }; void *tree_sitter_bash_external_scanner_create(); diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 845e387..d99655f 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -63,7 +63,6 @@ typedef union { struct { uint8_t count; bool reusable : 1; - bool depends_on_lookahead : 1; }; } TSParseActionEntry; @@ -81,6 +80,8 @@ typedef struct TSLanguage { const TSSymbol *alias_sequences; uint16_t max_alias_sequence_length; bool (*lex_fn)(TSLexer *, TSStateId); + bool (*keyword_lex_fn)(TSLexer *, TSStateId); + TSSymbol keyword_capture_token; struct { const bool *states; const TSSymbol *symbol_map;